Home
last modified time | relevance | path

Searched refs:CompoundStmtBits (Results 1 – 3 of 3) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DStmt.cpp367 CompoundStmtBits.NumStmts = Stmts.size(); in CompoundStmt()
369 CompoundStmtBits.LBraceLoc = LB; in CompoundStmt()
373 assert(CompoundStmtBits.NumStmts == Stmts.size() && in setStmts()
391 New->CompoundStmtBits.NumStmts = NumStmts; in CreateEmpty()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DStmt.h1006 CompoundStmtBitfields CompoundStmtBits; member
1418 CompoundStmtBits.NumStmts = 0; in CompoundStmt()
1419 CompoundStmtBits.LBraceLoc = Loc; in CompoundStmt()
1425 bool body_empty() const { return CompoundStmtBits.NumStmts == 0; } in body_empty()
1426 unsigned size() const { return CompoundStmtBits.NumStmts; } in size()
1502 SourceLocation getBeginLoc() const { return CompoundStmtBits.LBraceLoc; } in getBeginLoc()
1505 SourceLocation getLBracLoc() const { return CompoundStmtBits.LBraceLoc; } in getLBracLoc()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTReaderStmt.cpp159 S->CompoundStmtBits.LBraceLoc = readSourceLocation(); in VisitCompoundStmt()