HomeSort by relevance Sort by last modified time
    Searched defs:DKind (Results 1 - 2 of 2) sorted by null

  /external/clang/lib/Parse/
ParseOpenMP.cpp 30 auto DKind =
34 if (DKind == OMPD_parallel) {
42 DKind = OMPD_parallel_for;
45 DKind = OMPD_parallel_sections;
48 return DKind;
62 auto DKind = ParseOpenMPDirectiveKind(*this);
64 switch (DKind) {
93 << getOpenMPDirectiveName(DKind);
121 auto DKind = ParseOpenMPDirectiveKind(*this);
126 switch (DKind) {
    [all...]
  /external/clang/lib/Sema/
SemaOpenMP.cpp 68 OpenMPDirectiveKind DKind;
73 : DKind(OMPD_unknown), CKind(OMPC_unknown), RefExpr(nullptr),
94 SharingMapTy(OpenMPDirectiveKind DKind, DeclarationNameInfo Name,
97 Directive(DKind), DirectiveName(std::move(Name)), CurScope(CurScope),
121 void push(OpenMPDirectiveKind DKind, const DeclarationNameInfo &DirName,
123 Stack.push_back(SharingMapTy(DKind, DirName, CurScope, Loc));
221 DVar.DKind = Iter->Directive;
257 if (isOpenMPParallelDirective(DVar.DKind)) {
267 if (DVar.DKind == OMPD_task) {
281 DVar.DKind = OMPD_task
    [all...]

Completed in 44 milliseconds