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

  /external/clang/lib/Basic/
OpenMPKinds.cpp 165 bool clang::isAllowedClauseForDirective(OpenMPDirectiveKind DKind,
167 assert(DKind <= OMPD_unknown);
169 switch (DKind) {
249 bool clang::isOpenMPLoopDirective(OpenMPDirectiveKind DKind) {
250 return DKind == OMPD_simd || DKind == OMPD_for ||
251 DKind == OMPD_parallel_for; // TODO add next directives.
254 bool clang::isOpenMPWorksharingDirective(OpenMPDirectiveKind DKind) {
255 return DKind == OMPD_for || DKind == OMPD_sections || DKind == OMPD_section |
    [all...]
  /external/clang/include/clang/Basic/
OpenMPKinds.h 74 bool isAllowedClauseForDirective(OpenMPDirectiveKind DKind,
79 /// \param DKind Specified directive.
82 bool isOpenMPLoopDirective(OpenMPDirectiveKind DKind);
85 /// \param DKind Specified directive.
88 bool isOpenMPWorksharingDirective(OpenMPDirectiveKind DKind);
91 /// \param DKind Specified directive.
94 bool isOpenMPParallelDirective(OpenMPDirectiveKind DKind);
97 /// \param DKind Specified directive.
100 bool isOpenMPSimdDirective(OpenMPDirectiveKind DKind);
  /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...]
  /external/clang/include/clang/Parse/
Parser.h     [all...]
  /external/clang/include/clang/Sema/
Sema.h     [all...]

Completed in 211 milliseconds