Searched defs:FirstDecl (Results 1 - 6 of 6) sorted by relevance

/external/clang/include/clang/AST/
H A DDeclBase.h962 /// FirstDecl - The first declaration stored within this declaration
964 mutable Decl *FirstDecl; member in class:clang::DeclContext
983 ExternalVisibleStorage(false), LookupPtr(0, false), FirstDecl(0),
1520 return D && (D->NextInContextAndBits.getPointer() || D == FirstDecl ||
/external/clang/lib/Parse/
H A DParseDecl.cpp1465 Decl *FirstDecl = ParseDeclarationAfterDeclaratorAndAttributes(D); local
1467 ParseLexedAttributeList(LateParsedAttrs, FirstDecl, true, false);
1468 D.complete(FirstDecl);
1469 if (FirstDecl)
1470 DeclsInGroup.push_back(FirstDecl);
/external/clang/lib/Serialization/
H A DASTReaderDecl.cpp1532 T *FirstDecl = cast_or_null<T>(Reader.GetDecl(FirstDeclID)); local
1533 if (FirstDecl != D) {
1538 D->RedeclLink = Redeclarable<T>::PreviousDeclLink(FirstDecl);
H A DASTReader.cpp1140 const DeclID *FirstDecl = F->FileSortedDecls + Record[8]; local
1144 FileDeclIDs[FID] = FileDeclsInfo(F, llvm::makeArrayRef(FirstDecl,
/external/clang/lib/Sema/
H A DSemaDecl.cpp248 if (NamedDecl *FirstDecl = Correction.getCorrectionDecl())
249 Diag(FirstDecl->getLocation(), diag::note_previous_decl)
668 NamedDecl *FirstDecl = Corrected.getCorrectionDecl(); local
670 = FirstDecl? FirstDecl->getUnderlyingDecl() : 0;
704 if (FirstDecl) {
705 Result.addDecl(FirstDecl);
706 Diag(FirstDecl->getLocation(), diag::note_previous_decl)
822 NamedDecl *FirstDecl = (*Result.begin())->getUnderlyingDecl(); local
823 if (TypeDecl *Type = dyn_cast<TypeDecl>(FirstDecl)) {
[all...]
H A DSemaExpr.cpp202 const FunctionDecl *FirstDecl = Current->getCanonicalDecl(); local
203 SourceLocation DeclBegin = FirstDecl->getSourceRange().getBegin();

Completed in 474 milliseconds