Searched refs:Compare (Results 1 - 25 of 237) sorted by path

12345678910

/haiku/headers/os/bluetooth/
H A DLinkKeyUtils.h17 static bool Compare(linkkey_t* lk1, linkkey_t* lk2) function in class:Bluetooth::LinkKeyUtils
H A DbdaddrUtils.h39 static bool Compare(const bdaddr_t& ba1, const bdaddr_t& ba2) function in class:Bluetooth::bdaddrUtils
/haiku/headers/os/locale/
H A DCollator.h60 int Compare(const char* s1, const char* s2)
83 return Compare(s1, s2) == 0;
90 return Compare(s1, s2) > 0;
97 return Compare(s1, s2) >= 0;
H A DLocale.h67 return fCollator.Compare(s1, s2);
74 return fCollator.Compare(s1->String(), s2->String());
/haiku/headers/os/package/
H A DPackageVersion.h50 int Compare(const BPackageVersion& other) const;
73 return Compare(other) == 0;
80 return Compare(other) != 0;
87 return Compare(other) < 0;
94 return Compare(other) > 0;
101 return Compare(other) <= 0;
108 return Compare(other) >= 0;
/haiku/headers/private/debugger/controllers/
H A DThreadHandler.h159 bool Compare(thread_id key, ThreadHandler* value) const function in struct:ThreadHandlerHashDefinition
/haiku/headers/private/debugger/util/
H A DWorker.h184 bool Compare(const JobKey& key, Job* value) const function in struct:Worker::JobHashDefinition
/haiku/headers/private/kernel/util/
H A DHeap.h69 template<typename Element, typename Key, typename Compare, typename GetLink>
70 #define HEAP_CLASS_NAME Heap<Element, Key, Compare, GetLink>
73 typename Compare = HeapLesserCompare<Key>,
100 static Compare sCompare;
350 Compare HEAP_CLASS_NAME::sCompare;
H A DMinMaxHeap.h64 template<typename Element, typename Key, typename Compare, typename GetLink>
65 #define MIN_MAX_HEAP_CLASS_NAME MinMaxHeap<Element, Key, Compare, GetLink>
68 typename Compare = MinMaxHeapCompare<Key>,
105 static Compare sCompare;
496 Compare MIN_MAX_HEAP_CLASS_NAME::sCompare;
H A DMultiHashTable.h117 if (HashTable::fDefinition.Compare(key, slot))
H A DSplayTree.h30 static int Compare(const KeyType& key, const NodeType* node);
77 int c = Definition::Compare(key, fRoot);
104 if (Definition::Compare(key, fRoot) != 0)
194 return Definition::Compare(key, fRoot) == 0 ? fRoot : NULL;
216 if (Definition::Compare(key, node) > 0) {
236 int compare = Definition::Compare(key, node);
291 int c = Definition::Compare(key, t);
297 if (Definition::Compare(key, left) < 0) {
318 if (Definition::Compare(key, right) > 0) {
/haiku/headers/private/media/
H A DMetaFormat.h29 static int Compare(const meta_format *a, const meta_format *b);
/haiku/headers/private/package/
H A DHashableString.h61 return Compare(other) != 0 || fHashCode != other.fHashCode;
/haiku/headers/private/package/hpkg/
H A DStrings.h68 bool Compare(const char* key, const CachedString* value) const function in struct:BPackageKit::BHPKG::BPrivate::CachedStringHashDefinition
/haiku/headers/private/shared/
H A DHashMap.h57 bool Compare(const KeyType& key, const ValueType* value) const function in struct:BPrivate::HashMapTableDefinition
H A DHashSet.h54 bool Compare(const KeyType& key, const ValueType* value) const function in struct:BPrivate::HashSetTableDefinition
/haiku/headers/private/support/
H A DUuid.h27 int Compare(const BUuid& other) const;
51 return Compare(other) == 0;
58 return Compare(other) != 0;
65 return Compare(other) < 0;
72 return Compare(other) > 0;
79 return Compare(other) <= 0;
86 return Compare(other) >= 0;
/haiku/src/add-ons/kernel/file_systems/exfat/
H A DInode.h203 static int Compare(KeyType key, const NodeType* node) function in struct:InodesInoTreeDefinition
231 static int Compare(KeyType key, const NodeType* node) function in struct:InodesClusterTreeDefinition
H A DVolume.h54 static int Compare(KeyType key, const NodeType* node) function in struct:NodeTreeDefinition
79 static int Compare(KeyType key, const NodeType* node) function in struct:InoTreeDefinition
/haiku/src/add-ons/kernel/file_systems/packagefs/indices/
H A DAttributeIndex.cpp90 int Compare(const Key& a, const Value* b) const function in struct:AttributeIndex::TreeDefinition
104 int Compare(const Value* a, const Value* b) const function in struct:AttributeIndex::TreeDefinition
H A DIndex.h116 bool Compare(const StringKey& key, const Index* value) const function in struct:IndexHashDefinition
/haiku/src/add-ons/kernel/file_systems/packagefs/nodes/
H A DNode.h161 bool Compare(const StringKey& key, const Node* value) const function in struct:NodeNameHashDefinition
187 bool Compare(ino_t key, const Node* value) const function in struct:NodeIDHashDefinition
H A DNodeListener.h115 bool Compare(Node* key, const NodeListener* value) const function in struct:NodeListenerHashDefinition
/haiku/src/add-ons/kernel/file_systems/packagefs/package/
H A DCachedDataReader.h103 bool Compare(off_t key, const CacheLineLocker* value) const function in struct:CachedDataReader::LockerHashDefinition
/haiku/src/add-ons/kernel/file_systems/packagefs/resolvables/
H A DDependency.cpp82 && resolvableVersion->Compare(fVersionOperator, *fVersion);
99 && fVersion->Compare(*resolvableVersion) >= 0;

Completed in 541 milliseconds

12345678910