Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DOpenMPClause.cpp1630 ArrayRef<Expr *> Locators) { in Create() argument
1631 void *Mem = C.Allocate(totalSizeToAlloc<Expr *>(Locators.size() + 1)); in Create()
1633 OMPAffinityClause(StartLoc, LParenLoc, ColonLoc, EndLoc, Locators.size()); in Create()
1635 Clause->setVarRefs(Locators); in Create()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h2271 ArrayRef<Expr *> Locators) { in RebuildOMPAffinityClause() argument
2273 EndLoc, Modifier, Locators); in RebuildOMPAffinityClause()
10787 SmallVector<Expr *, 4> Locators; in TransformOMPAffinityClause() local
10788 Locators.reserve(C->varlist_size()); in TransformOMPAffinityClause()
10799 Locators.push_back(Locator.get()); in TransformOMPAffinityClause()
10803 ModifierRes.get(), Locators); in TransformOMPAffinityClause()
H A DSemaOpenMP.cpp24261 SourceLocation EndLoc, Expr *Modifier, ArrayRef<Expr *> Locators) { in ActOnOpenMPAffinityClause() argument
24263 for (Expr *RefExpr : Locators) { in ActOnOpenMPAffinityClause()
/freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/
H A DASTReader.cpp11620 SmallVector<Expr *, 4> Locators; in VisitOMPAffinityClause() local
11621 Locators.reserve(NumOfLocators); in VisitOMPAffinityClause()
11623 Locators.push_back(Record.readSubExpr()); in VisitOMPAffinityClause()
11624 C->setVarRefs(Locators); in VisitOMPAffinityClause()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DOpenMPClause.h8649 ArrayRef<Expr *> Locators);
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h12581 ArrayRef<Expr *> Locators);