HomeSort by: relevance | last modified time | path
    Searched refs:DK (Results 1 - 25 of 28) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/llvm/include/llvm/Frontend/OpenMP/
OMPIRBuilder.h 67 /// createXXXX for the directive of kind DK.
72 omp::Directive DK;
168 /// \param DK The kind of directive that caused the barrier.
174 InsertPointTy createBarrier(const LocationDescription &Loc, omp::Directive DK,
540 /// \param DK The directive which caused the barrier
547 omp::Directive DK, bool ForceSimpleCall,
560 /// Return true if the last entry in the finalization stack is of kind \p DK
562 bool isLastFinalizationInfoCancellable(omp::Directive DK) {
565 FinalizationStack.back().DK == DK;
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
NonTrivialTypeVisitor.h 28 RetTy visitWithKind(QualType::DestructionKind DK, QualType FT,
30 switch (DK) {
DeclBase.h 380 Decl(Kind DK, DeclContext *DC, SourceLocation L)
382 DeclCtx(DC), Loc(L), DeclKind(DK), InvalidDecl(false), HasAttrs(false),
385 IdentifierNamespace(getIdentifierNamespaceForKind(DK)),
387 if (StatisticsEnabled) add(DK);
390 Decl(Kind DK, EmptyShell Empty)
391 : DeclKind(DK), InvalidDecl(false), HasAttrs(false), Implicit(false),
394 IdentifierNamespace(getIdentifierNamespaceForKind(DK)),
396 if (StatisticsEnabled) add(DK);
822 static unsigned getIdentifierNamespaceForKind(Kind DK);
Decl.h 235 NamedDecl(Kind DK, DeclContext *DC, SourceLocation L, DeclarationName N)
236 : Decl(DK, DC, L), Name(N) {}
654 ValueDecl(Kind DK, DeclContext *DC, SourceLocation L,
656 : NamedDecl(DK, DC, L, N), DeclType(T) {}
720 DeclaratorDecl(Kind DK, DeclContext *DC, SourceLocation L,
723 : ValueDecl(DK, DC, L, N, T), DeclInfo(TInfo), InnerLocStart(StartL) {}
1017 VarDecl(Kind DK, ASTContext &C, DeclContext *DC, SourceLocation StartLoc,
1640 ParmVarDecl(Kind DK, ASTContext &C, DeclContext *DC, SourceLocation StartLoc,
1643 : VarDecl(DK, C, DC, StartLoc, IdLoc, Id, T, TInfo, S) {
1962 FunctionDecl(Kind DK, ASTContext &C, DeclContext *DC, SourceLocation StartLoc
    [all...]
DeclTemplate.h 404 TemplateDecl(Kind DK, DeclContext *DC, SourceLocation L, DeclarationName Name,
409 TemplateDecl(Kind DK, DeclContext *DC, SourceLocation L, DeclarationName Name,
411 : TemplateDecl(DK, DC, L, Name, Params, nullptr) {}
848 RedeclarableTemplateDecl(Kind DK, ASTContext &C, DeclContext *DC,
851 : TemplateDecl(DK, DC, L, Name, Params, Decl), redeclarable_base(C) {}
1847 ClassTemplateSpecializationDecl(ASTContext &Context, Kind DK, TagKind TK,
1854 explicit ClassTemplateSpecializationDecl(ASTContext &C, Kind DK);
2716 VarTemplateSpecializationDecl(Kind DK, ASTContext &Context, DeclContext *DC,
2723 explicit VarTemplateSpecializationDecl(Kind DK, ASTContext &Context);
DeclOpenMP.h 203 OMPDeclareReductionDecl(Kind DK, DeclContext *DC, SourceLocation L,
DeclObjC.h 956 ObjCContainerDecl(Kind DK, DeclContext *DC, IdentifierInfo *Id,
2416 ObjCImplDecl(Kind DK, DeclContext *DC,
2420 : ObjCContainerDecl(DK, DC, Id, nameLoc, atStartLoc),
DeclCXX.h 1950 CXXMethodDecl(Kind DK, ASTContext &C, CXXRecordDecl *RD,
1956 : FunctionDecl(DK, C, RD, StartLoc, NameInfo, T, TInfo, SC, isInline,
OpenMPClause.h 1913 void setDependencyKind(OpenMPDependClauseKind DK) {
1915 *getTrailingObjects<OpenMPDependClauseKind>() = DK;
1947 /// \param DK Dependence kind.
1952 OpenMPDependClauseKind DK,
  /src/external/apache2/llvm/dist/clang/lib/AST/
DeclOpenMP.cpp 103 Kind DK, DeclContext *DC, SourceLocation L, DeclarationName Name,
105 : ValueDecl(DK, DC, L, Name, Ty), DeclContext(DK), Combiner(nullptr),
DeclTemplate.cpp 221 TemplateDecl::TemplateDecl(Kind DK, DeclContext *DC, SourceLocation L,
224 : NamedDecl(DK, DC, L, Name), TemplatedDecl(Decl), TemplateParams(Params) {}
889 ClassTemplateSpecializationDecl(ASTContext &Context, Kind DK, TagKind TK,
895 : CXXRecordDecl(DK, TK, Context, DC, StartLoc, IdLoc,
903 Kind DK)
904 : CXXRecordDecl(DK, TTK_Struct, C, nullptr, SourceLocation(),
1256 Kind DK, ASTContext &Context, DeclContext *DC, SourceLocation StartLoc,
1259 : VarDecl(DK, Context, DC, StartLoc, IdLoc,
1265 VarTemplateSpecializationDecl::VarTemplateSpecializationDecl(Kind DK,
1267 : VarDecl(DK, C, nullptr, SourceLocation(), SourceLocation(), nullptr
    [all...]
DeclBase.cpp 910 Decl::Kind DK = D->getDeclKind();
911 switch(DK) {
921 if (DK >= first##NAME && DK <= last##NAME) \
929 Decl::Kind DK = D->getKind();
930 switch(DK) {
940 if (DK >= first##NAME && DK <= last##NAME) \
Decl.cpp 2000 VarDecl::VarDecl(Kind DK, ASTContext &C, DeclContext *DC,
2004 : DeclaratorDecl(DK, DC, IdLoc, Id, T, TInfo, StartLoc),
2843 FunctionDecl::FunctionDecl(Kind DK, ASTContext &C, DeclContext *DC,
2850 : DeclaratorDecl(DK, DC, NameInfo.getLoc(), NameInfo.getName(), T, TInfo,
2852 DeclContext(DK), redeclarable_base(C), Body(), ODRHash(0),
4248 TagDecl::TagDecl(Kind DK, TagKind TK, const ASTContext &C, DeclContext *DC,
4251 : TypeDecl(DK, DC, L, Id, StartL), DeclContext(DK), redeclarable_base(C),
4253 assert((DK != Enum || TK == TTK_Enum) &&
4497 RecordDecl::RecordDecl(Kind DK, TagKind TK, const ASTContext &C
    [all...]
DeclObjC.cpp 68 ObjCContainerDecl::ObjCContainerDecl(Kind DK, DeclContext *DC,
71 : NamedDecl(DK, DC, nameLoc, Id), DeclContext(DK) {
OpenMPClause.cpp 383 OpenMPDependClauseKind DK, SourceLocation EndLoc) {
391 Clause->setDependencyKind(DK);
  /src/external/gpl3/gcc.old/dist/gcc/
diagnostic.h 437 #define diagnostic_kind_count(DC, DK) (DC)->diagnostic_count[(int) (DK)]
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGNonTrivialStruct.cpp 294 void visitWithKind(QualType::DestructionKind DK, QualType FT,
297 visitArray(DK, AT, FT.isVolatileQualified(), FD, CurStructOffset);
301 Super::visitWithKind(DK, FT, FD, CurStructOffset);
589 void visitWithKind(QualType::DestructionKind DK, QualType FT,
593 visitArray(DK, AT, FT.isVolatileQualified(), FD, CurStructOffset, Addrs);
597 Super::visitWithKind(DK, FT, FD, CurStructOffset, Addrs);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/ObjCARC/
ObjCARCContract.cpp 166 DependenceKind DK = Class == ARCInstKind::AutoreleaseRV
170 findSingleDependency(DK, Arg, Autorelease->getParent(), Autorelease, PA));
  /src/external/apache2/llvm/dist/clang/lib/Parse/
ParseOpenMP.cpp 63 OpenMPDirectiveKindExWrapper(OpenMPDirectiveKind DK) : Value(unsigned(DK)) {}
2057 OpenMPDirectiveKind DK = OMPD_unknown;
2060 DK = parseOpenMPDirectiveKind(*this);
2061 if (DK == OMPD_end_declare_variant)
2063 else if (DK == OMPD_begin_declare_variant)
2071 DK, Loc, DKLoc, /* SkipUntilOpenMPEnd */ true);
3408 auto DK = parseOpenMPDirectiveKind(*this);
3409 Arg.push_back(DK);
3410 if (DK != OMPD_unknown)
    [all...]
Parser.cpp 85 /// \param DK The kind of diagnostic to emit.
87 void Parser::SuggestParentheses(SourceLocation Loc, unsigned DK,
93 Diag(Loc, DK);
97 Diag(Loc, DK)
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
DiagnosticInfo.h 1030 static DiagnosticSeverity getDiagnosticSeverity(SourceMgr::DiagKind DK) {
1031 switch (DK) {
  /src/external/apache2/llvm/dist/llvm/lib/Frontend/OpenMP/
OMPIRBuilder.cpp 335 OpenMPIRBuilder::createBarrier(const LocationDescription &Loc, Directive DK,
339 return emitBarrierImpl(Loc, DK, ForceSimpleCall, CheckCancelFlag);
694 assert(FiniInfo.DK == OMPD_parallel &&
968 assert(FiniInfo.DK == OMPD_sections &&
2063 assert(Fi.DK == OMPD && "Unexpected Directive for Finalization call!");
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaInit.cpp 1221 unsigned DK =
1225 SemaRef.Diag(IList->getInit(Index)->getBeginLoc(), DK)
1228 unsigned DK = ExtraInitsIsError
1231 SemaRef.Diag(IList->getInit(Index)->getBeginLoc(), DK)
1240 unsigned DK = ExtraInitsIsError ? diag::err_excess_initializers
1242 SemaRef.Diag(IList->getInit(Index)->getBeginLoc(), DK)
SemaDecl.cpp 5136 unsigned DK = diag::err_anonymous_record_bad_member;
5138 DK = diag::err_anonymous_record_with_type;
5140 DK = diag::err_anonymous_record_with_function;
5142 DK = diag::err_anonymous_record_with_static;
5146 DK == diag::err_anonymous_record_with_type)
5150 Diag(Mem->getLocation(), DK) << Record->isUnion();
11936 void visitWithKind(QualType::DestructionKind DK, QualType QT,
11941 return Super::visitWithKind(DK, QT, FD, InNonTrivialUnion);
  /src/external/apache2/llvm/dist/clang/include/clang/Parse/
Parser.h 1174 void SuggestParentheses(SourceLocation Loc, unsigned DK,

Completed in 150 milliseconds

1 2