Home
last modified time | relevance | path

Searched refs:FirstID (Results 1 – 5 of 5) sorted by relevance

/llvm-project/clang/include/clang/AST/
H A DODRDiagsEmitter.h58 const ObjCInterfaceDecl *FirstID, const ObjCInterfaceDecl *SecondID,
63 bool diagnoseMismatch(const ObjCInterfaceDecl *FirstID, in diagnoseMismatch() argument
65 assert(FirstID->data().Definition != SecondID->data().Definition && in diagnoseMismatch()
67 return diagnoseMismatch(FirstID, SecondID, &SecondID->data()); in diagnoseMismatch()
/llvm-project/clang/lib/AST/
H A DODRDiagsEmitter.cpp1929 const ObjCInterfaceDecl *FirstID, const ObjCInterfaceDecl *SecondID, in diagnoseMismatch() argument
1933 if (FirstID == SecondID) in diagnoseMismatch()
1936 std::string FirstModule = getOwningModuleNameForDiagnostic(FirstID); in diagnoseMismatch()
1945 auto DiagError = [FirstID, &FirstModule, in diagnoseMismatch()
1949 << FirstID << FirstModule.empty() << FirstModule << Range in diagnoseMismatch()
1958 const struct ObjCInterfaceDecl::DefinitionData *FirstDD = &FirstID->data(); in diagnoseMismatch()
1970 ObjCInterfaceDecl *FirstSuperClass = FirstID->getSuperClass(); in diagnoseMismatch()
1972 const TypeSourceInfo *FirstSuperInfo = FirstID->getSuperClassTInfo(); in diagnoseMismatch()
1986 DiagError(FirstID->getLocation(), in diagnoseMismatch()
1987 GetSuperClassSourceRange(FirstSuperInfo, FirstID), in diagnoseMismatch()
[all …]
/llvm-project/clang/docs/
H A DLibASTMatchersTutorial.rst552 llvm::FoldingSetNodeID FirstID, SecondID;
553 First->Profile(FirstID, *Context, true);
555 return FirstID == SecondID;
/llvm-project/clang/lib/Serialization/
H A DASTReaderDecl.cpp86 GlobalDeclID FirstID;
90 RedeclarableResult(Decl *MergeWith, GlobalDeclID FirstID, bool IsKeyDecl)
91 : MergeWith(MergeWith), FirstID(FirstID), IsKeyDecl(IsKeyDecl) {}
94 GlobalDeclID getFirstID() const { return FirstID; }
192 GlobalDeclID FirstID; global() member in clang::ASTDeclReader::RedeclarableResult
196 RedeclarableResult(Decl * MergeWith,GlobalDeclID FirstID,bool IsKeyDecl) RedeclarableResult() argument
H A DASTReader.cpp10751 ObjCInterfaceDecl *FirstID = Merge.first; in VisitOMPFinalClause()
10753 if (DiagsEmitter.diagnoseMismatch(FirstID, InterfacePair.first, in VisitOMPFinalClause()
10185 ObjCInterfaceDecl *FirstID = Merge.first; diagnoseOdrViolations() local