Searched refs:FirstID (Results 1 – 6 of 6) sorted by relevance
/openbsd/gnu/llvm/clang/include/clang/AST/ |
H A D | ODRDiagsEmitter.h | 58 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()
|
/openbsd/gnu/llvm/clang/include/clang/Serialization/ |
H A D | ASTBitCodes.h | 2050 DeclID FirstID; member 2057 return X.FirstID < Y.FirstID; 2062 return X.FirstID > Y.FirstID; 2067 return X.FirstID <= Y.FirstID; 2072 return X.FirstID >= Y.FirstID;
|
/openbsd/gnu/llvm/clang/lib/AST/ |
H A D | ODRDiagsEmitter.cpp | 1922 if (FirstID == SecondID) in diagnoseMismatch() 1925 std::string FirstModule = getOwningModuleNameForDiagnostic(FirstID); in diagnoseMismatch() 1934 auto DiagError = [FirstID, &FirstModule, in diagnoseMismatch() 1938 << FirstID << FirstModule.empty() << FirstModule << Range in diagnoseMismatch() 1959 ObjCInterfaceDecl *FirstSuperClass = FirstID->getSuperClass(); in diagnoseMismatch() 1975 DiagError(FirstID->getLocation(), in diagnoseMismatch() 1976 GetSuperClassSourceRange(FirstSuperInfo, FirstID), in diagnoseMismatch() 1992 auto &FirstProtos = FirstID->getReferencedProtocols(); in diagnoseMismatch() 2012 PopulateHashes(FirstHashes, FirstID, FirstID->getDefinition()); in diagnoseMismatch() 2022 diagnoseSubMismatchUnexpected(DR, FirstID, FirstModule, SecondID, in diagnoseMismatch() [all …]
|
/openbsd/gnu/llvm/clang/docs/ |
H A D | LibASTMatchersTutorial.rst | 552 llvm::FoldingSetNodeID FirstID, SecondID; 553 First->Profile(FirstID, *Context, true); 555 return FirstID == SecondID;
|
/openbsd/gnu/llvm/clang/lib/Serialization/ |
H A D | ASTReaderDecl.cpp | 183 GlobalDeclID FirstID; member in clang::ASTDeclReader::RedeclarableResult 187 RedeclarableResult(Decl *MergeWith, GlobalDeclID FirstID, bool IsKeyDecl) in RedeclarableResult() argument 188 : MergeWith(MergeWith), FirstID(FirstID), IsKeyDecl(IsKeyDecl) {} in RedeclarableResult() 191 GlobalDeclID getFirstID() const { return FirstID; } in getFirstID()
|
H A D | ASTReader.cpp | 9772 ObjCInterfaceDecl *FirstID = Merge.first; in diagnoseOdrViolations() local 9774 if (DiagsEmitter.diagnoseMismatch(FirstID, InterfacePair.first, in diagnoseOdrViolations()
|