HomeSort by relevance Sort by last modified time
    Searched defs:isEmptyValue (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/third_party/WebKit/Source/wtf/text/
StringHash.h 31 inline bool HashTraits<String>::isEmptyValue(const String& value)
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/
WidthCache.h 117 static bool isEmptyValue(const SmallStringKey& key) { return key.isHashTableEmptyValue(); }
  /external/chromium_org/third_party/WebKit/Source/wtf/
HashTraits.h 154 static bool isEmptyValue(const OwnPtr<P>& value) { return !value; }
175 static bool isEmptyValue(const RefPtr<P>& value) { return !value; }
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); }
211 template<typename T> static bool isEmptyValue(const T& value) { return value == Traits::emptyValue(); }
215 return HashTraitsEmptyValueChecker<Traits, Traits::hasIsEmptyValueFunction>::isEmptyValue(value);
HashMap.h 241 static bool isEmptyValue(const typename KeyValuePairHashTraits<KeyTraits, MappedTraits>::TraitType& value)
LinkedHashSet.h 307 static bool isEmptyValue(const Node& node) { return !node.m_next; }
  /external/chromium_org/third_party/WebKit/Source/platform/heap/
HeapTest.cpp 184 static bool isEmptyValue(const blink::PairWithWeakHandling& value) { return !value.first; }
    [all...]

Completed in 302 milliseconds