HomeSort by: relevance | last modified time | path
    Searched refs:FirstDecl (Results 1 - 8 of 8) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/AST/
DeclBase.cpp 1363 ExternalLast->NextInContextAndBits.setPointer(FirstDecl);
1364 FirstDecl = ExternalFirst;
1404 return decl_iterator(FirstDecl);
1411 return !FirstDecl;
1471 if (D == FirstDecl) {
1473 FirstDecl = LastDecl = nullptr;
1475 FirstDecl = D->NextInContextAndBits.getPointer();
1477 for (Decl *I = FirstDecl; true; I = I->NextInContextAndBits.getPointer()) {
1521 if (FirstDecl) {
1525 FirstDecl = LastDecl = D
    [all...]
Decl.cpp 4575 return field_iterator(decl_iterator(FirstDecl));
4614 std::tie(FirstDecl, LastDecl) = BuildDeclChain(Decls,
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
LoopRotationUtils.cpp 530 auto *FirstDecl =
533 cloneAndAdaptNoAliasScopes(NoAliasDeclScopes, FirstDecl, LastInst,
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReader.cpp 1542 const DeclID *FirstDecl = F->FileSortedDecls + Record[6];
1544 FileDeclIDs[FID] = FileDeclsInfo(F, llvm::makeArrayRef(FirstDecl,
9894 Decl *FirstDecl = nullptr, *SecondDecl = nullptr;
9899 // SecondDiffType will not be Other and FirstDecl and SecondDecl will be
9914 DR.FirstDecl = FirstIt == FirstHashes.end() ? nullptr : FirstIt->first;
9919 DR.FirstDecl ? DifferenceSelector(DR.FirstDecl) : EndOfClass;
9938 if (DR.FirstDecl) {
9939 Diag(DR.FirstDecl->getLocation(), diag::note_first_module_difference)
9940 << FirstRecord << DR.FirstDecl->getSourceRange()
    [all...]
ASTReaderDecl.cpp 2485 auto *FirstDecl = cast_or_null<T>(Reader.GetDecl(FirstDeclID));
2486 if (FirstDecl != D) {
2491 D->RedeclLink = Redeclarable<T>::PreviousDeclLink(FirstDecl);
2492 D->First = FirstDecl->getCanonicalDecl();
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
DeclBase.h 1832 /// FirstDecl - The first declaration stored within this declaration
1834 mutable Decl *FirstDecl = nullptr;
2120 decl_iterator noload_decls_begin() const { return decl_iterator(FirstDecl); }
2451 return D && (D->NextInContextAndBits.getPointer() || D == FirstDecl ||
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaDecl.cpp 959 NamedDecl *FirstDecl = Corrected.getFoundDecl();
995 if (FirstDecl)
996 Result.addDecl(FirstDecl);
1128 NamedDecl *FirstDecl = (*Result.begin())->getUnderlyingDecl();
1129 if (TypeDecl *Type = dyn_cast<TypeDecl>(FirstDecl)) {
1138 ObjCInterfaceDecl *Class = dyn_cast<ObjCInterfaceDecl>(FirstDecl);
1142 dyn_cast<ObjCCompatibleAliasDecl>(FirstDecl))
1160 if (isa<ConceptDecl>(FirstDecl))
1162 TemplateName(cast<TemplateDecl>(FirstDecl)));
1165 if (isa<TemplateDecl>(FirstDecl) && !isa<FunctionTemplateDecl>(FirstDecl) &
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Parse/
ParseDecl.cpp 2085 Decl *FirstDecl = ParseDeclarationAfterDeclaratorAndAttributes(
2088 ParseLexedAttributeList(LateParsedAttrs, FirstDecl, true, false);
2089 D.complete(FirstDecl);
2090 if (FirstDecl)
2091 DeclsInGroup.push_back(FirstDecl);

Completed in 83 milliseconds