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

  /external/webkit/Source/JavaScriptCore/wtf/text/
AtomicStringHash.h 55 static bool isDeletedValue(const WTF::AtomicString& slot) { return slot.isHashTableDeletedValue(); }
  /external/webkit/Source/WebCore/platform/graphics/
IntPointHash.h 40 static bool isDeletedValue(const WebCore::IntPoint& slot) { return slot == WebCore::IntPoint(std::numeric_limits<int>::min(), 0); }
IntRectHash.h 54 static bool isDeletedValue(const WebCore::IntRect& value) { return value.x() == -1 && value.y() == -1 && value.width() == -1 && value.height() == -1; }
IntSizeHash.h 40 static bool isDeletedValue(const WebCore::IntSize& value) { return value.width() == -1 && value.height() == -1; }
FontCache.cpp 242 static bool isDeletedValue(const FontPlatformData& value)
  /external/webkit/Source/WebKit/win/
WebKitCOMAPI.cpp 46 static bool isDeletedValue(const CLSID& value) { return value == CLSID_NULL; }
  /external/webkit/Source/JavaScriptCore/wtf/
HashTraits.h 50 static bool isDeletedValue(T value) { return value == static_cast<T>(-1); }
64 static bool isDeletedValue(T value) { return value == -std::numeric_limits<T>::infinity(); }
76 static bool isDeletedValue(T value) { return value == std::numeric_limits<T>::max() - 1; }
83 static bool isDeletedValue(P* value) { return value == reinterpret_cast<P*>(-1); }
89 static bool isDeletedValue(const T& value) { return value.isHashTableDeletedValue(); }
109 static bool isDeletedValue(const TraitType& value) { return FirstTraits::isDeletedValue(value.first); }
  /external/webkit/Source/JavaScriptCore/profiler/
CallIdentifier.h 92 static bool isDeletedValue(const JSC::CallIdentifier& value)
  /external/webkit/Source/JavaScriptCore/runtime/
RegExpKey.h 107 static bool isDeletedValue(const JSC::RegExpKey& value) { return value.flagsValue == JSC::DeletedValueFlags; }
StructureTransitionTable.h 69 static bool isDeletedValue(const TraitType& value) { return FirstTraits::isDeletedValue(value.first); }
JSValue.h 374 static bool isDeletedValue(EncodedJSValue value) { return value == JSValue::encode(JSValue(JSValue::HashTableDeletedValue)); }
381 static bool isDeletedValue(EncodedJSValue value) { return value == JSValue::encode(JSValue(JSValue::HashTableDeletedValue)); }
  /external/webkit/Source/WebCore/platform/graphics/chromium/
LayerTilerChromium.h 150 static bool isDeletedValue(TileMapKey value) { return value.first == -2 && value.second == -2; }
  /external/webkit/Source/WebCore/bindings/v8/
npruntime.cpp 129 static bool isDeletedValue(const StringKey& value)
  /external/webkit/Source/WebCore/dom/
Document.h 195 static bool isDeletedValue(const FormElementKey& value) { return value.isHashTableDeletedValue(); }
    [all...]
StyledElement.cpp 60 static bool isDeletedValue(const MappedAttributeKey& value) { return value.type == eLastEntry; }
  /external/webkit/Source/WebCore/platform/win/
COMPtr.h 227 static bool isDeletedValue(const COMPtr<P>& value) { return value.isHashTableDeletedValue(); }
  /external/webkit/Source/WebCore/platform/graphics/wince/
FontPlatformData.cpp 173 static bool isDeletedValue(const FixedSizeFontDataKey& value)
  /external/webkit/Source/WebCore/platform/cf/
BinaryPropertyList.cpp 62 bool isDeletedValue() const { return m_size == deletedValueSize(); }
64 const int* integers() const { ASSERT(!isDeletedValue()); return m_integers; }
65 size_t size() const { ASSERT(!isDeletedValue()); return m_size; }
84 static bool isDeletedValue(const IntegerArray& array) { return array.isDeletedValue(); }
100 if (a.isDeletedValue() || b.isDeletedValue())
101 return a.isDeletedValue() == b.isDeletedValue();

Completed in 553 milliseconds