Searched refs:HasAssociatedStmt (Results 1 – 4 of 4) sorted by relevance
/external/llvm-project/clang/include/clang/AST/ |
D | StmtOpenMP.h | 86 bool HasAssociatedStmt, unsigned NumChildren, in createEmptyDirective() argument 89 C.Allocate(sizeof(T) + OMPChildren::size(NumClauses, HasAssociatedStmt, in createEmptyDirective() 94 HasAssociatedStmt, NumChildren); in createEmptyDirective() 102 bool HasAssociatedStmt = false, 105 C.Allocate(sizeof(T) + OMPChildren::size(NumClauses, HasAssociatedStmt, 110 HasAssociatedStmt, NumChildren);
|
D | OpenMPClause.h | 7924 bool HasAssociatedStmt = false; variable 7934 OMPChildren(unsigned NumClauses, unsigned NumChildren, bool HasAssociatedStmt) in OMPChildren() argument 7936 HasAssociatedStmt(HasAssociatedStmt) {} in OMPChildren() 7938 static size_t size(unsigned NumClauses, bool HasAssociatedStmt, 7945 bool HasAssociatedStmt = false, 7951 bool hasAssociatedStmt() const { return HasAssociatedStmt; } in hasAssociatedStmt() 7971 assert(HasAssociatedStmt && in getAssociatedStmt() 8029 assert(HasAssociatedStmt && in getRawStmt() 8046 if (!HasAssociatedStmt) in getAssociatedStmtAsRange()
|
/external/llvm-project/clang/lib/AST/ |
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()
|
/external/llvm-project/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 3252 bool HasAssociatedStmt = Record[ASTStmtReader::NumStmtFields + 2]; in ReadStmtFromStream() local 3254 !HasAssociatedStmt, Empty); in ReadStmtFromStream()
|