Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseOpenMP.cpp3680 SmallVector<SourceLocation, 4> KLoc; in ParseOpenMPSingleExprWithArgClause() local
3684 KLoc.resize(NumberOfElements); in ParseOpenMPSingleExprWithArgClause()
3693 KLoc[Modifier1] = Tok.getLocation(); in ParseOpenMPSingleExprWithArgClause()
3705 KLoc[Modifier2] = Tok.getLocation(); in ParseOpenMPSingleExprWithArgClause()
3719 KLoc[ScheduleKind] = Tok.getLocation(); in ParseOpenMPSingleExprWithArgClause()
3731 KLoc.push_back(Tok.getLocation()); in ParseOpenMPSingleExprWithArgClause()
3747 KLoc.push_back(Tok.getLocation()); in ParseOpenMPSingleExprWithArgClause()
3760 KLoc.push_back(Tok.getLocation()); in ParseOpenMPSingleExprWithArgClause()
3766 KLoc.push_back(SourceLocation()); in ParseOpenMPSingleExprWithArgClause()
3771 KLoc.resize(NumberOfElements); in ParseOpenMPSingleExprWithArgClause()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DOpenMPClause.h1280 void setDefaultKindKwLoc(SourceLocation KLoc) { KindKwLoc = KLoc; } in setDefaultKindKwLoc() argument
1361 void setProcBindKindKwLoc(SourceLocation KLoc) { KindKwLoc = KLoc; } in setProcBindKindKwLoc() argument
1598 void setAtomicDefaultMemOrderKindKwLoc(SourceLocation KLoc) { in setAtomicDefaultMemOrderKindKwLoc() argument
1599 KindKwLoc = KLoc; in setAtomicDefaultMemOrderKindKwLoc()
1727 void setAtKindKwLoc(SourceLocation KLoc) { KindKwLoc = KLoc; } in setAtKindKwLoc() argument
1807 void setSeverityKindKwLoc(SourceLocation KLoc) { KindKwLoc = KLoc; } in setSeverityKindKwLoc() argument
2008 void setScheduleKindLoc(SourceLocation KLoc) { KindLoc = KLoc; } in setScheduleKindLoc() argument
2037 SourceLocation KLoc, SourceLocation CommaLoc, in OMPScheduleClause() argument
2044 KindLoc(KLoc), CommaLoc(CommaLoc), ChunkSize(ChunkSize) { in OMPScheduleClause()
7264 void setDistScheduleKindLoc(SourceLocation KLoc) { KindLoc = KLoc; } in setDistScheduleKindLoc() argument
[all …]
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DOpenMPClause.cpp1688 SourceLocation KLoc, SourceLocation StartLoc, in Create() argument
1690 return new (C) OMPBindClause(K, KLoc, StartLoc, LParenLoc, EndLoc); in Create()