Home
last modified time | relevance | path

Searched refs:EmptyDeclaration (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/clang/include/clang/Tooling/Syntax/
H A DNodes.h368 class EmptyDeclaration final : public Declaration {
370 EmptyDeclaration() : Declaration(NodeKind::EmptyDeclaration) {} in EmptyDeclaration() function
H A DNodes.td241 def EmptyDeclaration : External<Declaration> {}
/llvm-project-15.0.7/clang/lib/Tooling/Syntax/
H A DSynthesis.cpp147 case syntax::NodeKind::EmptyDeclaration: in allocateTree()
148 return new (A.getAllocator()) syntax::EmptyDeclaration; in allocateTree()
H A DBuildTree.cpp1528 new (allocator()) syntax::EmptyDeclaration, S); in WalkUpFromEmptyDecl()
/llvm-project-15.0.7/clang/unittests/Tooling/Syntax/
H A DBuildTreeTest.cpp3893 TEST_P(BuildSyntaxTreeTest, EmptyDeclaration) { in TEST_P() argument