Home
last modified time | relevance | path

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

/openbsd/src/gnu/llvm/clang/lib/Parse/
DParseOpenMP.cpp3782 SmallVector<SourceLocation, 4> KLoc; in ParseOpenMPSingleExprWithArgClause() local
3786 KLoc.resize(NumberOfElements); in ParseOpenMPSingleExprWithArgClause()
3795 KLoc[Modifier1] = Tok.getLocation(); in ParseOpenMPSingleExprWithArgClause()
3807 KLoc[Modifier2] = Tok.getLocation(); in ParseOpenMPSingleExprWithArgClause()
3821 KLoc[ScheduleKind] = Tok.getLocation(); in ParseOpenMPSingleExprWithArgClause()
3833 KLoc.push_back(Tok.getLocation()); in ParseOpenMPSingleExprWithArgClause()
3848 KLoc.push_back(Tok.getLocation()); in ParseOpenMPSingleExprWithArgClause()
3861 KLoc.push_back(Tok.getLocation()); in ParseOpenMPSingleExprWithArgClause()
3867 KLoc.push_back(SourceLocation()); in ParseOpenMPSingleExprWithArgClause()
3872 KLoc.resize(NumberOfElements); in ParseOpenMPSingleExprWithArgClause()
[all …]
/openbsd/src/gnu/llvm/clang/include/clang/AST/
DOpenMPClause.h1028 void setDefaultKindKwLoc(SourceLocation KLoc) { KindKwLoc = KLoc; } in setDefaultKindKwLoc() argument
1109 void setProcBindKindKwLoc(SourceLocation KLoc) { KindKwLoc = KLoc; } in setProcBindKindKwLoc() argument
1346 void setAtomicDefaultMemOrderKindKwLoc(SourceLocation KLoc) { in setAtomicDefaultMemOrderKindKwLoc() argument
1347 KindKwLoc = KLoc; in setAtomicDefaultMemOrderKindKwLoc()
1432 void setAtKindKwLoc(SourceLocation KLoc) { KindKwLoc = KLoc; } in setAtKindKwLoc() argument
1511 void setSeverityKindKwLoc(SourceLocation KLoc) { KindKwLoc = KLoc; } in setSeverityKindKwLoc() argument
1711 void setScheduleKindLoc(SourceLocation KLoc) { KindLoc = KLoc; } in setScheduleKindLoc() argument
1740 SourceLocation KLoc, SourceLocation CommaLoc, in OMPScheduleClause() argument
1747 KindLoc(KLoc), CommaLoc(CommaLoc), ChunkSize(ChunkSize) { in OMPScheduleClause()
6542 void setDistScheduleKindLoc(SourceLocation KLoc) { KindLoc = KLoc; } in setDistScheduleKindLoc() argument
[all …]
/openbsd/src/gnu/llvm/clang/lib/AST/
DOpenMPClause.cpp1664 SourceLocation KLoc, SourceLocation StartLoc, in Create() argument
1666 return new (C) OMPBindClause(K, KLoc, StartLoc, LParenLoc, EndLoc); in Create()