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

  /external/webkit/Source/JavaScriptCore/wtf/
HashTraits.h 49 static void constructDeletedValue(T& slot) { slot = static_cast<T>(-1); }
63 static void constructDeletedValue(T& slot) { slot = -std::numeric_limits<T>::infinity(); }
75 static void constructDeletedValue(T& slot) { slot = std::numeric_limits<T>::max() - 1; }
82 static void constructDeletedValue(P*& slot) { slot = reinterpret_cast<P*>(-1); }
88 static void constructDeletedValue(T& slot) { new (&slot) T(HashTableDeletedValue); }
108 static void constructDeletedValue(TraitType& slot) { FirstTraits::constructDeletedValue(slot.first); }
HashTable.h 388 static void deleteBucket(ValueType& bucket) { bucket.~ValueType(); Traits::constructDeletedValue(bucket); }
470 Traits::constructDeletedValue(deletedValue);
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/text/
AtomicStringHash.h 54 static void constructDeletedValue(WTF::AtomicString& slot) { new (&slot) WTF::AtomicString(HashTableDeletedValue); }
  /external/webkit/Source/WebCore/platform/graphics/
IntPointHash.h 39 static void constructDeletedValue(WebCore::IntPoint& slot) { slot = WebCore::IntPoint(std::numeric_limits<int>::min(), 0); }
IntSizeHash.h 39 static void constructDeletedValue(WebCore::IntSize& slot) { new (&slot) WebCore::IntSize(-1, -1); }
IntRectHash.h 53 static void constructDeletedValue(WebCore::IntRect& slot) { new (&slot) WebCore::IntRect(-1, -1, -1, -1); }
FontCache.cpp 238 static void constructDeletedValue(FontPlatformData& slot)
  /external/webkit/Source/WebKit/win/
WebKitCOMAPI.cpp 45 static void constructDeletedValue(CLSID& slot) { slot = CLSID_NULL; }
  /external/webkit/Source/JavaScriptCore/runtime/
StructureTransitionTable.h 68 static void constructDeletedValue(TraitType& slot) { FirstTraits::constructDeletedValue(slot.first); }
RegExpKey.h 106 static void constructDeletedValue(JSC::RegExpKey& slot) { slot.flagsValue = JSC::DeletedValueFlags; }
JSValue.h 373 static void constructDeletedValue(EncodedJSValue& slot) { slot = JSValue::encode(JSValue(JSValue::HashTableDeletedValue)); }
380 static void constructDeletedValue(EncodedJSValue& slot) { slot = JSValue::encode(JSValue(JSValue::HashTableDeletedValue)); }
  /external/webkit/Source/JavaScriptCore/profiler/
CallIdentifier.h 88 static void constructDeletedValue(JSC::CallIdentifier& slot)
  /external/webkit/Source/WebCore/platform/graphics/chromium/
LayerTilerChromium.h 149 static void constructDeletedValue(TileMapKey& slot) { slot = std::make_pair(-2, -2); }
  /external/webkit/Source/WebCore/platform/win/
COMPtr.h 226 static void constructDeletedValue(COMPtr<P>& slot) { new (&slot) COMPtr<P>(HashTableDeletedValue); }
  /external/webkit/Source/WebCore/bindings/v8/
npruntime.cpp 124 static void constructDeletedValue(StringKey& slot)
  /external/webkit/Source/WebCore/dom/
StyledElement.cpp 59 static void constructDeletedValue(MappedAttributeKey& slot) { slot.type = eLastEntry; }
Document.h 194 static void constructDeletedValue(FormElementKey& slot) { new (&slot) FormElementKey(WTF::HashTableDeletedValue); }
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/wince/
FontPlatformData.cpp 169 static void constructDeletedValue(FixedSizeFontDataKey& slot)
  /external/webkit/Source/WebCore/platform/cf/
BinaryPropertyList.cpp 83 static void constructDeletedValue(IntegerArray& slot) { slot.markDeleted(); }

Completed in 637 milliseconds