OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:constructDeletedValue
(Results
1 - 18
of
18
) sorted by null
/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); }
IntRectHash.h
53
static void
constructDeletedValue
(WebCore::IntRect& slot) { new (&slot) WebCore::IntRect(-1, -1, -1, -1); }
IntSizeHash.h
39
static void
constructDeletedValue
(WebCore::IntSize& slot) { new (&slot) WebCore::IntSize(-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/wtf/
HashTraits.h
47
static void
constructDeletedValue
(T& slot) { slot = static_cast<T>(-1); }
61
static void
constructDeletedValue
(T& slot) { slot = -std::numeric_limits<T>::infinity(); }
73
static void
constructDeletedValue
(T& slot) { slot = std::numeric_limits<T>::max() - 1; }
80
static void
constructDeletedValue
(P*& slot) { slot = reinterpret_cast<P*>(-1); }
86
static void
constructDeletedValue
(T& slot) { new (&slot) T(HashTableDeletedValue); }
105
static void
constructDeletedValue
(TraitType& slot) { FirstTraits::
constructDeletedValue
(slot.first); }
/external/webkit/Source/JavaScriptCore/profiler/
CallIdentifier.h
88
static void
constructDeletedValue
(JSC::CallIdentifier& slot)
/external/webkit/Source/JavaScriptCore/runtime/
RegExpKey.h
106
static void
constructDeletedValue
(JSC::RegExpKey& slot) { slot.flagsValue = JSC::DeletedValueFlags; }
StructureTransitionTable.h
68
static void
constructDeletedValue
(TraitType& slot) { FirstTraits::
constructDeletedValue
(slot.first); }
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/WebCore/platform/graphics/chromium/
LayerTilerChromium.h
149
static void
constructDeletedValue
(TileMapKey& slot) { slot = std::make_pair(-2, -2); }
/external/webkit/Source/WebCore/bindings/v8/
npruntime.cpp
124
static void
constructDeletedValue
(StringKey& slot)
/external/webkit/Source/WebCore/dom/
Document.h
193
static void
constructDeletedValue
(FormElementKey& slot) { new (&slot) FormElementKey(WTF::HashTableDeletedValue); }
[
all
...]
StyledElement.cpp
59
static void
constructDeletedValue
(MappedAttributeKey& slot) { slot.type = eLastEntry; }
/external/webkit/Source/WebCore/platform/win/
COMPtr.h
226
static void
constructDeletedValue
(COMPtr<P>& slot) { new (&slot) COMPtr<P>(HashTableDeletedValue); }
/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 344 milliseconds