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

  /src/external/apache2/llvm/dist/clang/lib/AST/
Stmt.cpp 367 CompoundStmtBits.NumStmts = Stmts.size();
369 CompoundStmtBits.LBraceLoc = LB;
373 assert(CompoundStmtBits.NumStmts == Stmts.size() &&
374 "NumStmts doesn't fit in bits of CompoundStmtBits.NumStmts!");
391 New->CompoundStmtBits.NumStmts = NumStmts;
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Stmt.h 1006 CompoundStmtBitfields CompoundStmtBits;
1403 /// The location of the closing "}". LBraceLoc is stored in CompoundStmtBits.
1418 CompoundStmtBits.NumStmts = 0;
1419 CompoundStmtBits.LBraceLoc = Loc;
1425 bool body_empty() const { return CompoundStmtBits.NumStmts == 0; }
1426 unsigned size() const { return CompoundStmtBits.NumStmts; }
1502 SourceLocation getBeginLoc() const { return CompoundStmtBits.LBraceLoc; }
1505 SourceLocation getLBracLoc() const { return CompoundStmtBits.LBraceLoc; }
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderStmt.cpp 159 S->CompoundStmtBits.LBraceLoc = readSourceLocation();

Completed in 130 milliseconds