Home
last modified time | relevance | path

Searched refs:propertyMap (Results 1 – 2 of 2) sorted by relevance

/external/webkit/WebCore/svg/
DSVGDocumentExtensions.h88 HashMap<StringImpl*, ValueType>* propertyMap = baseValueMap<ValueType>()->get(element); in baseValue() local
89 if (propertyMap) in baseValue()
90 return propertyMap->get(propertyName.impl()); in baseValue()
98 HashMap<StringImpl*, ValueType>* propertyMap = baseValueMap<ValueType>()->get(element); in setBaseValue() local
99 if (!propertyMap) { in setBaseValue()
100 propertyMap = new HashMap<StringImpl*, ValueType>(); in setBaseValue()
101 baseValueMap<ValueType>()->set(element, propertyMap); in setBaseValue()
104 propertyMap->set(propertyName.impl(), newValue); in setBaseValue()
110 HashMap<StringImpl*, ValueType>* propertyMap = baseValueMap<ValueType>()->get(element); in removeBaseValue() local
111 if (!propertyMap) in removeBaseValue()
[all …]
/external/webkit/JavaScriptCore/
DChangeLog23149 (JSC::StructureID::propertyMap):
23895 (JSC::JSObject::put): Update to get the propertyMap of the StructureID.
23899 (JSC::JSObject::getPropertyAttributes): Update to get the propertyMap of the StructureID
23904 (JSC::JSObject::getDirect): Update to get the propertyMap of the StructureID.
23907 (JSC::JSObject::hasCustomProperties): Update to get the propertyMap of the StructureID.
23911 … (JSC::JSObject::getOwnPropertySlotForWrite): Update to get the propertyMap of the StructureID.
23949 (JSC::StructureID::propertyMap): Added.