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

  /external/chromium_org/third_party/WebKit/Source/wtf/
HashTraits.h 150 static bool isEmptyValue(const OwnPtr<P>& value) { return !value; }
171 static bool isEmptyValue(const RefPtr<P>& value) { return !value; }
197 static bool isEmptyValue(const String&);
201 // which selects either the emptyValue function or the isEmptyValue function to check for empty values.
204 template<typename T> static bool isEmptyValue(const T& value) { return Traits::isEmptyValue(value); }
207 template<typename T> static bool isEmptyValue(const T& value) { return value == Traits::emptyValue(); }
211 return HashTraitsEmptyValueChecker<Traits, Traits::hasIsEmptyValueFunction>::isEmptyValue(value);
HashMap.h 241 static bool isEmptyValue(const typename KeyValuePairHashTraits<KeyTraits, MappedTraits>::TraitType& value)
LinkedHashSet.h 310 static bool isEmptyValue(const Node& node) { return !node.m_next; }
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTextAreaElement.h 83 virtual bool isEmptyValue() const OVERRIDE { return value().isEmpty(); }
HTMLTextFormControlElement.h 125 virtual bool isEmptyValue() const = 0;
HTMLInputElement.h 344 virtual bool isEmptyValue() const OVERRIDE FINAL { return innerEditorValue().isEmpty(); }
HTMLTextFormControlElement.cpp 140 && isEmptyValue()
  /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 119 static bool isEmptyValue(const SmallStringKey& key) { return key.isHashTableEmptyValue(); }
  /external/chromium_org/third_party/WebKit/Source/platform/heap/
HeapTest.cpp 186 static bool isEmptyValue(const WebCore::PairWithWeakHandling& value) { return !value.first; }
    [all...]

Completed in 331 milliseconds