Home
last modified time | relevance | path

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

/haiku/src/kits/tracker/
H A DIconCache.cpp1570 SharedCacheEntry::Hash(const TypeAndSignature& typeAndSignature) in Hash() argument
1572 size_t hash = SeededHashString(typeAndSignature.type, 0); in Hash()
1573 if (typeAndSignature.signature != NULL in Hash()
1574 && *typeAndSignature.signature != '\0') in Hash()
1575 hash = SeededHashString(typeAndSignature.signature, hash); in Hash()
1589 SharedCacheEntry::operator==(const TypeAndSignature& typeAndSignature) const in operator ==()
1591 return fFileType == typeAndSignature.type in operator ==()
1592 && fAppSignature == typeAndSignature.signature; in operator ==()
H A DIconCache.h250 static size_t Hash(const TypeAndSignature& typeAndSignature);
254 bool operator==(const TypeAndSignature& typeAndSignature) const;