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

  /external/clang/lib/AST/
DeclBase.cpp 876 ExternalLast->NextDeclInContext = FirstDecl;
877 FirstDecl = ExternalFirst;
920 return decl_iterator(FirstDecl);
931 return decl_iterator(FirstDecl);
945 return !FirstDecl;
955 if (D == FirstDecl) {
957 FirstDecl = LastDecl = 0;
959 FirstDecl = D->NextDeclInContext;
961 for (Decl *I = FirstDecl; true; I = I->NextDeclInContext) {
996 if (FirstDecl) {
    [all...]
Decl.cpp     [all...]
  /external/clang/include/clang/AST/
DeclBase.h 833 /// FirstDecl - The first declaration stored within this declaration
835 mutable Decl *FirstDecl;
853 ExternalVisibleStorage(false), LookupPtr(0), FirstDecl(0),
    [all...]
  /external/clang/lib/Serialization/
ASTReaderDecl.cpp     [all...]
  /external/clang/lib/Sema/
SemaDecl.cpp 183 if (NamedDecl *FirstDecl = Correction.getCorrectionDecl())
184 Diag(FirstDecl->getLocation(), diag::note_previous_decl)
557 NamedDecl *FirstDecl = Corrected.getCorrectionDecl();
559 = FirstDecl? FirstDecl->getUnderlyingDecl() : 0;
589 if (FirstDecl) Result.addDecl(FirstDecl);
595 if (FirstDecl)
596 Diag(FirstDecl->getLocation(), diag::note_previous_decl)
708 NamedDecl *FirstDecl = (*Result.begin())->getUnderlyingDecl()
    [all...]
  /external/clang/lib/Parse/
ParseDecl.cpp     [all...]

Completed in 3019 milliseconds