Home
last modified time | relevance | path

Searched refs:CompoundStatement (Results 1 – 9 of 9) sorted by relevance

/llvm-project-15.0.7/clang/include/clang/Tooling/Syntax/
H A DNodes.h340 class CompoundStatement final : public Statement {
342 CompoundStatement() : Statement(NodeKind::CompoundStatement) {} in CompoundStatement() function
H A DNodes.td236 def CompoundStatement : External<Statement> {}
/llvm-project-15.0.7/clang/lib/Tooling/Syntax/
H A DMutations.cpp85 if (isa<CompoundStatement>(S->getParent())) { in removeStatement()
H A DNodes.cpp330 syntax::Leaf *syntax::CompoundStatement::getLbrace() { in getLbrace()
334 std::vector<syntax::Statement *> syntax::CompoundStatement::getStatements() { in getStatements()
343 syntax::Leaf *syntax::CompoundStatement::getRbrace() { in getRbrace()
H A DSynthesis.cpp143 case syntax::NodeKind::CompoundStatement: in allocateTree()
144 return new (A.getAllocator()) syntax::CompoundStatement; in allocateTree()
H A DBuildTree.cpp798 new (allocator()) syntax::CompoundStatement, S); in WalkUpFromCompoundStmt()
/llvm-project-15.0.7/clang-tools-extra/clangd/
H A DSemanticSelection.cpp62 if (const auto *Stmt = dyn_cast<syntax::CompoundStatement>(Node)) { in extractFoldingRange()
/llvm-project-15.0.7/clang/docs/
H A DLibASTMatchersTutorial.rst433 (CompoundStatement ...
/llvm-project-15.0.7/clang/unittests/ASTMatchers/
H A DASTMatchersNodeTest.cpp1161 TEST_P(ASTMatchersTest, CompoundStatement) { in TEST_P() argument