Home
last modified time | relevance | path

Searched refs:IsTargetSync (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DOpenMPKinds.h228 OMPInteropInfo(bool IsTarget = false, bool IsTargetSync = false)
229 : IsTarget(IsTarget), IsTargetSync(IsTargetSync) {} in IsTarget()
231 bool IsTargetSync; member
H A DAttr.td4330 if (I->IsTarget && I->IsTargetSync)
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseOpenMP.cpp3476 bool IsTargetSync = false; in ParseOMPInteropInfo() local
3482 !IsTargetSync; in ParseOMPInteropInfo()
3492 if (IsTargetSync) in ParseOMPInteropInfo()
3494 IsTargetSync = true; in ParseOMPInteropInfo()
3533 if (!HasError && !IsTarget && !IsTargetSync) { in ParseOMPInteropInfo()
3539 if (Tok.isNot(tok::colon) && (IsTarget || IsTargetSync)) in ParseOMPInteropInfo()
3548 InteropInfo.IsTargetSync = IsTargetSync; in ParseOMPInteropInfo()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DOpenMPClause.h7966 bool IsTargetSync = false; variable
7972 void setIsTargetSync(bool V) { IsTargetSync = V; } in setIsTargetSync()
7986 OMPInitClause(bool IsTarget, bool IsTargetSync, SourceLocation StartLoc, in OMPInitClause() argument
7991 VarLoc(VarLoc), IsTarget(IsTarget), IsTargetSync(IsTargetSync) {} in OMPInitClause()
8032 bool getIsTargetSync() const { return IsTargetSync; } in getIsTargetSync()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DOpenMPClause.cpp1655 InteropInfo.IsTarget, InteropInfo.IsTargetSync, StartLoc, LParenLoc, in Create()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp16631 bool IsTargetSync = false; in ActOnOpenMPInteropDirective() local
16633 if (IsTargetSync) in ActOnOpenMPInteropDirective()
16638 IsTargetSync = true; in ActOnOpenMPInteropDirective()
16643 if (DependClause && HasInitClause && !IsTargetSync) { in ActOnOpenMPInteropDirective()
H A DSemaTemplateInstantiateDecl.cpp543 AppendArgs.emplace_back(II.IsTarget, II.IsTargetSync); in instantiateOMPDeclareVariantAttr()