Home
last modified time | relevance | path

Searched refs:Locators (Results 1 – 6 of 6) sorted by relevance

/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DOpenMPClause.cpp1551 ArrayRef<Expr *> Locators) { in Create() argument
1552 void *Mem = C.Allocate(totalSizeToAlloc<Expr *>(Locators.size() + 1)); in Create()
1554 OMPAffinityClause(StartLoc, LParenLoc, ColonLoc, EndLoc, Locators.size()); in Create()
1556 Clause->setVarRefs(Locators); in Create()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h2169 ArrayRef<Expr *> Locators) { in RebuildOMPAffinityClause() argument
2171 EndLoc, Modifier, Locators); in RebuildOMPAffinityClause()
10196 SmallVector<Expr *, 4> Locators; in TransformOMPAffinityClause() local
10197 Locators.reserve(C->varlist_size()); in TransformOMPAffinityClause()
10208 Locators.push_back(Locator.get()); in TransformOMPAffinityClause()
10212 ModifierRes.get(), Locators); in TransformOMPAffinityClause()
H A DSemaOpenMP.cpp21220 SourceLocation EndLoc, Expr *Modifier, ArrayRef<Expr *> Locators) { in ActOnOpenMPAffinityClause() argument
21222 for (Expr *RefExpr : Locators) { in ActOnOpenMPAffinityClause()
/freebsd-13.1/contrib/llvm-project/clang/lib/Serialization/
H A DASTReader.cpp12972 SmallVector<Expr *, 4> Locators; in VisitOMPAffinityClause() local
12973 Locators.reserve(NumOfLocators); in VisitOMPAffinityClause()
12975 Locators.push_back(Record.readSubExpr()); in VisitOMPAffinityClause()
12976 C->setVarRefs(Locators); in VisitOMPAffinityClause()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DOpenMPClause.h8295 ArrayRef<Expr *> Locators);
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h11327 ArrayRef<Expr *> Locators);