Searched refs:HasAssociatedStmt (Results 1 – 4 of 4) sorted by relevance
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | StmtOpenMP.h | 327 bool HasAssociatedStmt, unsigned NumChildren, in createEmptyDirective() argument 330 C.Allocate(sizeof(T) + OMPChildren::size(NumClauses, HasAssociatedStmt, in createEmptyDirective() 335 HasAssociatedStmt, NumChildren); in createEmptyDirective() 343 bool HasAssociatedStmt = false, 346 C.Allocate(sizeof(T) + OMPChildren::size(NumClauses, HasAssociatedStmt, 351 HasAssociatedStmt, NumChildren);
|
H A D | OpenMPClause.h | 9016 bool HasAssociatedStmt = false; variable 9026 OMPChildren(unsigned NumClauses, unsigned NumChildren, bool HasAssociatedStmt) in OMPChildren() argument 9028 HasAssociatedStmt(HasAssociatedStmt) {} in OMPChildren() 9030 static size_t size(unsigned NumClauses, bool HasAssociatedStmt, 9037 bool HasAssociatedStmt = false, 9043 bool hasAssociatedStmt() const { return HasAssociatedStmt; } in hasAssociatedStmt() 9063 assert(HasAssociatedStmt && in getAssociatedStmt() 9119 assert(HasAssociatedStmt && in getRawStmt() 9136 if (!HasAssociatedStmt) in getAssociatedStmtAsRange()
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | StmtOpenMP.cpp | 19 size_t OMPChildren::size(unsigned NumClauses, bool HasAssociatedStmt, in size() argument 23 NumClauses, NumChildren + (HasAssociatedStmt ? 1 : 0)), in size() 53 bool HasAssociatedStmt, in CreateEmpty() argument 55 return new (Mem) OMPChildren(NumClauses, NumChildren, HasAssociatedStmt); in CreateEmpty()
|
/freebsd/contrib/llvm-project/clang/lib/Serialization/ |
H A D | ASTReaderStmt.cpp | 3601 bool HasAssociatedStmt = Record[ASTStmtReader::NumStmtFields + 2]; in ReadStmtFromStream() local 3603 !HasAssociatedStmt, Empty); in ReadStmtFromStream()
|