HomeSort by relevance Sort by last modified time
    Searched refs:isDeletedValue (Results 1 - 25 of 26) sorted by null

1 2

  /external/webkit/JavaScriptCore/wtf/
HashTraits.h 48 static bool isDeletedValue(T value) { return value == static_cast<T>(-1); }
62 static bool isDeletedValue(T value) { return value == -std::numeric_limits<T>::infinity(); }
74 static bool isDeletedValue(T value) { return value == std::numeric_limits<T>::max() - 1; }
81 static bool isDeletedValue(P* value) { return value == reinterpret_cast<P*>(-1); }
87 static bool isDeletedValue(const RefPtr<P>& value) { return value.isHashTableDeletedValue(); }
104 static bool isDeletedValue(const TraitType& value) { return FirstTraits::isDeletedValue(value.first); }
HashTable.h 339 static bool isDeletedBucket(const ValueType& value) { return KeyTraits::isDeletedValue(Extractor::extract(value)); }
    [all...]
  /external/webkit/WebCore/platform/
KURLHash.h 56 static bool isDeletedValue(const WebCore::KURL& slot) { return slot.string().isHashTableDeletedValue(); }
  /external/webkit/WebCore/platform/graphics/
IntSizeHash.h 42 static bool isDeletedValue(const IntSize& value) { return value.width() == -1 && value.height() == -1; }
FontCache.cpp 125 static bool isDeletedValue(const FontPlatformDataCacheKey& value)
246 static bool isDeletedValue(const FontPlatformData& value)
  /external/webkit/WebCore/platform/text/
AtomicStringHash.h 59 static bool isDeletedValue(const WebCore::AtomicString& slot) { return slot.isHashTableDeletedValue(); }
StringHash.h 261 static bool isDeletedValue(const WebCore::String& slot) { return slot.isHashTableDeletedValue(); }
  /external/webkit/JavaScriptCore/profiler/
CallIdentifier.h 89 static bool isDeletedValue(const JSC::CallIdentifier& value)
  /external/webkit/WebCore/platform/network/
ProtectionSpaceHash.h 64 static bool isDeletedValue(const WebCore::ProtectionSpace& slot) { return slot.isHashTableDeletedValue(); }
  /external/webkit/WebKit/win/
WebKitCOMAPI.cpp 46 static bool isDeletedValue(const CLSID& value) { return value == CLSID_NULL; }
  /external/webkit/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();
  /external/webkit/JavaScriptCore/runtime/
StructureTransitionTable.h 67 static bool isDeletedValue(const TraitType& value) { return FirstTraits::isDeletedValue(value.first); }
JSValue.h 262 static bool isDeletedValue(EncodedJSValue value) { return value == JSValue::encode(JSValue(JSValue::HashTableDeletedValue)); }
269 static bool isDeletedValue(EncodedJSValue value) { return value == JSValue::encode(JSValue(JSValue::HashTableDeletedValue)); }
  /external/webkit/WebCore/accessibility/win/
AXObjectCacheWin.cpp 116 } while (objID == 0 || HashTraits<AXID>::isDeletedValue(objID) || m_idsInUse.contains(objID));
  /external/webkit/WebCore/accessibility/
AXObjectCache.cpp 154 ASSERT(!HashTraits<AXID>::isDeletedValue(axID));
315 } while (!objID || HashTraits<AXID>::isDeletedValue(objID) || m_idsInUse.contains(objID));
348 ASSERT(!HashTraits<AXID>::isDeletedValue(objID));
  /external/webkit/WebCore/dom/
QualifiedName.h 171 static bool isDeletedValue(const WebCore::QualifiedName& slot) { return slot.localName().isHashTableDeletedValue(); }
StyledElement.cpp 56 static bool isDeletedValue(const MappedAttributeKey& value) { return value.type == eLastEntry; }
Document.h 180 static bool isDeletedValue(const FormElementKey& value) { return value.isHashTableDeletedValue(); }
    [all...]
  /external/webkit/WebCore/svg/
SVGAnimatedTemplate.h 96 static bool isDeletedValue(const SVGAnimatedTypeWrapperKey& value)
  /external/webkit/WebCore/platform/win/
COMPtr.h 204 static bool isDeletedValue(const COMPtr<P>& value) { return value == reinterpret_cast<P*>(-1); }
  /external/webkit/WebCore/bindings/js/
JSSVGPODTypeWrapper.h 355 static bool isDeletedValue(const CacheInfo& value)
  /external/webkit/WebCore/bindings/v8/
V8SVGPODTypeWrapper.h 336 static bool isDeletedValue(const CacheInfo& value)
npruntime.cpp 127 static bool isDeletedValue(const StringKey& value)
  /external/webkit/WebCore/platform/graphics/wince/
FontPlatformData.cpp 171 static bool isDeletedValue(const FixedSizeFontDataKey& value)
  /external/webkit/JavaScriptCore/bytecompiler/
BytecodeGenerator.cpp     [all...]

Completed in 1258 milliseconds

1 2