Searched refs:DK (Results 1 - 15 of 15) sorted by relevance

/external/clang/include/clang/AST/
H A DDecl.h114 NamedDecl(Kind DK, DeclContext *DC, SourceLocation L, DeclarationName N) argument
115 : Decl(DK, DC, L), Name(N) { }
533 ValueDecl(Kind DK, DeclContext *DC, SourceLocation L, argument
535 : NamedDecl(DK, DC, L, N), DeclType(T) {}
605 DeclaratorDecl(Kind DK, DeclContext *DC, SourceLocation L, argument
608 : ValueDecl(DK, DC, L, N, T), DeclInfo(TInfo), InnerLocStart(StartL) {
815 VarDecl(Kind DK, DeclContext *DC, SourceLocation StartLoc,
819 : DeclaratorDecl(DK, DC, IdLoc, Id, T, TInfo, StartLoc), Init() {
1244 ParmVarDecl(Kind DK, DeclContext *DC, SourceLocation StartLoc,
1248 : VarDecl(DK, D
[all...]
H A DDeclBase.h304 Decl(Kind DK, DeclContext *DC, SourceLocation L) argument
306 Loc(L), DeclKind(DK), InvalidDecl(0),
309 IdentifierNamespace(getIdentifierNamespaceForKind(DK)),
312 if (StatisticsEnabled) add(DK);
315 Decl(Kind DK, EmptyShell Empty) argument
316 : NextInContextAndBits(), DeclKind(DK), InvalidDecl(0),
319 IdentifierNamespace(getIdentifierNamespaceForKind(DK)),
322 if (StatisticsEnabled) add(DK);
609 static unsigned getIdentifierNamespaceForKind(Kind DK);
H A DDeclTemplate.h219 TemplateDecl(Kind DK, DeclContext *DC, SourceLocation L,
221 : NamedDecl(DK, DC, L, Name), TemplatedDecl(0), TemplateParams(0) { }
225 TemplateDecl(Kind DK, DeclContext *DC, SourceLocation L,
227 : NamedDecl(DK, DC, L, Name), TemplatedDecl(0), TemplateParams(Params) { }
230 TemplateDecl(Kind DK, DeclContext *DC, SourceLocation L,
233 : NamedDecl(DK, DC, L, Name), TemplatedDecl(Decl),
595 RedeclarableTemplateDecl(Kind DK, DeclContext *DC, SourceLocation L, argument
598 : TemplateDecl(DK, DC, L, Name, Params, Decl), Common() { }
1395 ClassTemplateSpecializationDecl(ASTContext &Context, Kind DK, TagKind TK,
1403 explicit ClassTemplateSpecializationDecl(Kind DK);
[all...]
H A DDeclObjC.h468 ObjCContainerDecl(Kind DK, DeclContext *DC, argument
471 : NamedDecl(DK, DC, nameLoc, Id), DeclContext(DK), AtStart(atStartLoc) {}
1419 ObjCImplDecl(Kind DK, DeclContext *DC, argument
1422 : ObjCContainerDecl(DK, DC,
H A DDeclCXX.h1524 CXXMethodDecl(Kind DK, CXXRecordDecl *RD, SourceLocation StartLoc, argument
1529 : FunctionDecl(DK, RD, StartLoc, NameInfo, T, TInfo,
/external/clang/lib/AST/
H A DDeclBase.cpp600 Decl::Kind DK = D->getDeclKind(); local
601 switch(DK) {
611 if (DK >= first##NAME && DK <= last##NAME) \
619 Decl::Kind DK = D->getKind(); local
620 switch(DK) {
630 if (DK >= first##NAME && DK <= last##NAME) \
H A DDeclTemplate.cpp693 ClassTemplateSpecializationDecl(ASTContext &Context, Kind DK, TagKind TK, argument
700 : CXXRecordDecl(DK, TK, DC, StartLoc, IdLoc,
709 ClassTemplateSpecializationDecl::ClassTemplateSpecializationDecl(Kind DK) argument
710 : CXXRecordDecl(DK, TTK_Struct, 0, SourceLocation(), SourceLocation(), 0, 0),
H A DDecl.cpp2720 RecordDecl::RecordDecl(Kind DK, TagKind TK, DeclContext *DC, argument
2723 : TagDecl(DK, TK, DC, IdLoc, Id, PrevDecl, StartLoc) {
/external/clang/lib/Frontend/
H A DASTConsumers.cpp371 Decl::Kind DK = I->getKind(); local
372 switch (DK) {
465 Out << "DeclKind: " << DK << '"' << *I << "\"\n";
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DEncodings.properties57 Cp277 EBCDIC-CP-DK,EBCDIC-CP-NO,IBM277,csIBM277 0x0019
/external/clang/lib/Parse/
H A DParser.cpp138 /// \param DK The kind of diagnostic to emit.
140 void Parser::SuggestParentheses(SourceLocation Loc, unsigned DK, argument
146 Diag(Loc, DK);
150 Diag(Loc, DK)
/external/clang/lib/Sema/
H A DSemaInit.cpp628 unsigned DK = diag::warn_excess_initializers_in_char_array_initializer; local
630 DK = diag::err_excess_initializers_in_char_array_initializer;
634 SemaRef.Diag(IList->getInit(Index)->getLocStart(), DK)
647 unsigned DK = diag::warn_excess_initializers; local
649 DK = diag::err_excess_initializers;
653 DK = diag::err_excess_initializers;
657 SemaRef.Diag(IList->getInit(Index)->getLocStart(), DK)
H A DSemaDecl.cpp3069 unsigned DK = diag::err_anonymous_record_bad_member; local
3071 DK = diag::err_anonymous_record_with_type;
3073 DK = diag::err_anonymous_record_with_function;
3075 DK = diag::err_anonymous_record_with_static;
3079 DK == diag::err_anonymous_record_with_type)
3083 Diag((*Mem)->getLocation(), DK)
H A DSemaDeclCXX.cpp9647 unsigned DK = diag::err_catch_incomplete; local
9651 DK = diag::err_catch_incomplete_ptr;
9656 DK = diag::err_catch_incomplete_ref;
9659 !BaseType->isDependentType() && RequireCompleteType(Loc, BaseType, DK))
/external/clang/include/clang/Parse/
H A DParser.h717 void SuggestParentheses(SourceLocation Loc, unsigned DK,

Completed in 280 milliseconds