Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DExpr.h7101 ArraySectionType ASType = OMPArraySection; variable
7113 : Expr(ArraySectionExprClass, Type, VK, OK), ASType(OMPArraySection), in ArraySectionExpr()
7127 : Expr(ArraySectionExprClass, Type, VK, OK), ASType(OpenACCArraySection), in ArraySectionExpr()
7146 bool isOMPArraySection() const { return ASType == OMPArraySection; } in isOMPArraySection()
7147 bool isOpenACCArraySection() const { return ASType == OpenACCArraySection; } in isOpenACCArraySection()
7165 assert(ASType != OpenACCArraySection && in getStride()
7171 assert(ASType != OpenACCArraySection && in getStride()
7183 assert(ASType != OpenACCArraySection && in getColonLocSecond()
7196 &SubExprs[ASType == OMPArraySection ? END_EXPR : OPENACC_END_EXPR]); in children()
7202 &SubExprs[ASType == OMPArraySection ? END_EXPR : OPENACC_END_EXPR]); in children()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriterStmt.cpp900 Record.writeEnum(E->ASType); in VisitArraySectionExpr()
H A DASTReaderStmt.cpp966 E->ASType = Record.readEnum<ArraySectionExpr::ArraySectionType>(); in VisitArraySectionExpr()