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

  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
diagnostic.h 227 #define diagnostic_kind_count(DC, DK) (DC)->diagnostic_count[(int) (DK)]
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
diagnostic.h 227 #define diagnostic_kind_count(DC, DK) (DC)->diagnostic_count[(int) (DK)]
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
diagnostic.h 227 #define diagnostic_kind_count(DC, DK) (DC)->diagnostic_count[(int) (DK)]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
diagnostic.h 171 #define diagnostic_kind_count(DC, DK) (DC)->diagnostic_count[(int) (DK)]
  /external/clang/include/clang/AST/
Decl.h 117 NamedDecl(Kind DK, DeclContext *DC, SourceLocation L, DeclarationName N)
118 : Decl(DK, DC, L), Name(N) { }
535 ValueDecl(Kind DK, DeclContext *DC, SourceLocation L,
537 : NamedDecl(DK, DC, L, N), DeclType(T) {}
607 DeclaratorDecl(Kind DK, DeclContext *DC, SourceLocation L,
610 : ValueDecl(DK, DC, L, N, T), DeclInfo(TInfo), InnerLocStart(StartL) {
817 VarDecl(Kind DK, DeclContext *DC, SourceLocation StartLoc,
821 : DeclaratorDecl(DK, DC, IdLoc, Id, T, TInfo, StartLoc), Init() {
    [all...]
DeclBase.h 303 Decl(Kind DK, DeclContext *DC, SourceLocation L)
305 Loc(L), DeclKind(DK), InvalidDecl(0),
308 IdentifierNamespace(getIdentifierNamespaceForKind(DK)),
311 if (StatisticsEnabled) add(DK);
314 Decl(Kind DK, EmptyShell Empty)
315 : NextInContextAndBits(), DeclKind(DK), InvalidDecl(0),
318 IdentifierNamespace(getIdentifierNamespaceForKind(DK)),
321 if (StatisticsEnabled) add(DK);
608 static unsigned getIdentifierNamespaceForKind(Kind DK);
    [all...]
DeclTemplate.h 206 TemplateDecl(Kind DK, DeclContext *DC, SourceLocation L,
208 : NamedDecl(DK, DC, L, Name), TemplatedDecl(0), TemplateParams(0) { }
212 TemplateDecl(Kind DK, DeclContext *DC, SourceLocation L,
214 : NamedDecl(DK, DC, L, Name), TemplatedDecl(0), TemplateParams(Params) { }
217 TemplateDecl(Kind DK, DeclContext *DC, SourceLocation L,
220 : NamedDecl(DK, DC, L, Name), TemplatedDecl(Decl),
578 RedeclarableTemplateDecl(Kind DK, DeclContext *DC, SourceLocation L,
581 : TemplateDecl(DK, DC, L, Name, Params, Decl), Common() { }
    [all...]
DeclObjC.h 445 ObjCContainerDecl(Kind DK, DeclContext *DC,
448 : NamedDecl(DK, DC, nameLoc, Id), DeclContext(DK), AtStart(atStartLoc) {}
    [all...]
DeclCXX.h     [all...]
  /external/clang/lib/Frontend/
ASTConsumers.cpp 301 Decl::Kind DK = I->getKind();
302 switch (DK) {
395 Out << "DeclKind: " << DK << '"' << *I << "\"\n";
  /external/clang/lib/AST/
DeclBase.cpp 591 Decl::Kind DK = D->getDeclKind();
592 switch(DK) {
602 if (DK >= first##NAME && DK <= last##NAME) \
610 Decl::Kind DK = D->getKind();
611 switch(DK) {
621 if (DK >= first##NAME && DK <= last##NAME) \
    [all...]
DeclTemplate.cpp 639 ClassTemplateSpecializationDecl(ASTContext &Context, Kind DK, TagKind TK,
646 : CXXRecordDecl(DK, TK, DC, StartLoc, IdLoc,
655 ClassTemplateSpecializationDecl::ClassTemplateSpecializationDecl(Kind DK)
656 : CXXRecordDecl(DK, TTK_Struct, 0, SourceLocation(), SourceLocation(), 0, 0),
    [all...]
Decl.cpp     [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
Encodings.properties 57 Cp277 EBCDIC-CP-DK,EBCDIC-CP-NO,IBM277,csIBM277 0x0019
  /external/clang/lib/Parse/
Parser.cpp 122 void Parser::SuggestParentheses(SourceLocation Loc, unsigned DK,
128 Diag(Loc, DK);
132 Diag(Loc, DK)
    [all...]
  /external/clang/lib/Sema/
SemaInit.cpp 629 unsigned DK = diag::warn_excess_initializers_in_char_array_initializer;
631 DK = diag::err_excess_initializers_in_char_array_initializer;
635 SemaRef.Diag(IList->getInit(Index)->getLocStart(), DK)
648 unsigned DK = diag::warn_excess_initializers;
650 DK = diag::err_excess_initializers;
654 DK = diag::err_excess_initializers;
658 SemaRef.Diag(IList->getInit(Index)->getLocStart(), DK)
    [all...]
SemaDecl.cpp     [all...]
SemaDeclCXX.cpp     [all...]
  /external/clang/include/clang/Parse/
Parser.h 713 void SuggestParentheses(SourceLocation Loc, unsigned DK,
    [all...]

Completed in 1713 milliseconds