Home
last modified time | relevance | path

Searched refs:ObjCSummaryKey (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Analysis/
H A DRetainSummaryManager.h207 class ObjCSummaryKey {
211 ObjCSummaryKey(IdentifierInfo* ii, Selector s) in ObjCSummaryKey() function
214 ObjCSummaryKey(const ObjCInterfaceDecl *d, Selector s) in ObjCSummaryKey() function
217 ObjCSummaryKey(Selector s) in ObjCSummaryKey() function
247 template <> struct DenseMapInfo<ObjCSummaryKey> {
248 static inline ObjCSummaryKey getEmptyKey() {
249 return ObjCSummaryKey(DenseMapInfo<IdentifierInfo*>::getEmptyKey(),
253 static inline ObjCSummaryKey getTombstoneKey() {
254 return ObjCSummaryKey(DenseMapInfo<IdentifierInfo*>::getTombstoneKey(),
258 static unsigned getHashValue(const ObjCSummaryKey &V) {
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/lib/Analysis/
H A DRetainSummaryManager.cpp1171 CachedSummaries[ObjCSummaryKey(ID, S)] = Summ; in getMethodSummary()