HomeSort by: relevance | last modified time | path
    Searched defs:CompoundStmt (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/AST/
Stmt.cpp 203 else if (auto CS = dyn_cast_or_null<CompoundStmt>(S)) {
364 CompoundStmt::CompoundStmt(ArrayRef<Stmt *> Stmts, SourceLocation LB,
372 void CompoundStmt::setStmts(ArrayRef<Stmt *> Stmts) {
379 CompoundStmt *CompoundStmt::Create(const ASTContext &C, ArrayRef<Stmt *> Stmts,
382 C.Allocate(totalSizeToAlloc<Stmt *>(Stmts.size()), alignof(CompoundStmt));
383 return new (Mem) CompoundStmt(Stmts, LB, RB);
386 CompoundStmt *CompoundStmt::CreateEmpty(const ASTContext &C
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Stmt.h 126 friend class CompoundStmt;
1288 /// expressions. For example, CompoundStmt mixes statements, expressions
1397 /// CompoundStmt - This represents a group of statements like { stmt stmt }.
1398 class CompoundStmt final : public Stmt,
1399 private llvm::TrailingObjects<CompoundStmt, Stmt *> {
1406 CompoundStmt(ArrayRef<Stmt *> Stmts, SourceLocation LB, SourceLocation RB);
1407 explicit CompoundStmt(EmptyShell Empty) : Stmt(CompoundStmtClass, Empty) {}
1412 static CompoundStmt *Create(const ASTContext &C, ArrayRef<Stmt *> Stmts,
1416 explicit CompoundStmt(SourceLocation Loc)
1423 static CompoundStmt *CreateEmpty(const ASTContext &C, unsigned NumStmts)
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Parse/
Parser.h 1827 CompoundStmt, // Also allow '(' compound-statement ')'

Completed in 78 milliseconds