Searched defs:isEmptyValue (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DStringHash.h31 inline bool HashTraits<String>::isEmptyValue(const String& value) function in class:WTF::HashTraits
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
H A DWidthCache.h117 static bool isEmptyValue(const SmallStringKey& key) { return key.isHashTableEmptyValue(); } function in struct:blink::WidthCache::SmallStringKeyHashTraits
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DHashTraits.h154 static bool isEmptyValue(const OwnPtr<P>& value) { return !value; } function in struct:WTF::HashTraits
175 static bool isEmptyValue(const RefPtr<P>& value) { return !value; } function in struct:WTF::HashTraits
201 static bool isEmptyValue(const String&);
205 // which selects either the emptyValue function or the isEmptyValue function to check for empty values.
208 template<typename T> static bool isEmptyValue(const T& value) { return Traits::isEmptyValue(value); } function in struct:WTF::HashTraitsEmptyValueChecker
211 template<typename T> static bool isEmptyValue(const T& value) { return value == Traits::emptyValue(); } function in struct:WTF::HashTraitsEmptyValueChecker
215 return HashTraitsEmptyValueChecker<Traits, Traits::hasIsEmptyValueFunction>::isEmptyValue(value);
H A DHashMap.h241 static bool isEmptyValue(const typename KeyValuePairHashTraits<KeyTraits, MappedTraits>::TraitType& value) function in struct:WTF::HashMapValueTraits
H A DLinkedHashSet.h307 static bool isEmptyValue(const Node& node) { return !node.m_next; } function in struct:WTF::LinkedHashSetTraits
/external/chromium_org/third_party/WebKit/Source/platform/heap/
H A DHeapTest.cpp184 static bool isEmptyValue(const blink::PairWithWeakHandling& value) { return !value.first; } function in struct:WTF::HashTraits

Completed in 134 milliseconds