Searched refs:ASType (Results 1 – 3 of 3) sorted by relevance
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | Expr.h | 6933 ArraySectionType ASType = OMPArraySection; variable 6945 : Expr(ArraySectionExprClass, Type, VK, OK), ASType(OMPArraySection), in ArraySectionExpr() 6959 : Expr(ArraySectionExprClass, Type, VK, OK), ASType(OpenACCArraySection), in ArraySectionExpr() 6978 bool isOMPArraySection() const { return ASType == OMPArraySection; } in isOMPArraySection() 6979 bool isOpenACCArraySection() const { return ASType == OpenACCArraySection; } in isOpenACCArraySection() 6997 assert(ASType != OpenACCArraySection && in getStride() 7003 assert(ASType != OpenACCArraySection && in getStride() 7015 assert(ASType != OpenACCArraySection && in getColonLocSecond() 7028 &SubExprs[ASType == OMPArraySection ? END_EXPR : OPENACC_END_EXPR]); in children() 7034 &SubExprs[ASType == OMPArraySection ? END_EXPR : OPENACC_END_EXPR]); in children() [all …]
|
/freebsd/contrib/llvm-project/clang/lib/Serialization/ |
H A D | ASTWriterStmt.cpp | 884 Record.writeEnum(E->ASType); in VisitArraySectionExpr()
|
H A D | ASTReaderStmt.cpp | 958 E->ASType = Record.readEnum<ArraySectionExpr::ArraySectionType>(); in VisitArraySectionExpr()
|