Home
last modified time | relevance | path

Searched refs:propertyName (Results 1 – 25 of 162) sorted by relevance

1234567

/external/webkit/JavaScriptCore/runtime/
DJSObject.h92 JSValue get(ExecState*, const Identifier& propertyName) const;
93 JSValue get(ExecState*, unsigned propertyName) const;
95 bool getPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot&);
96 bool getPropertySlot(ExecState*, unsigned propertyName, PropertySlot&);
98 virtual bool getOwnPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot&);
99 virtual bool getOwnPropertySlot(ExecState*, unsigned propertyName, PropertySlot&);
101 … virtual void put(ExecState*, const Identifier& propertyName, JSValue value, PutPropertySlot&);
102 virtual void put(ExecState*, unsigned propertyName, JSValue value);
104 …virtual void putWithAttributes(ExecState*, const Identifier& propertyName, JSValue value, unsigned…
105 …virtual void putWithAttributes(ExecState*, const Identifier& propertyName, JSValue value, unsigned…
[all …]
DJSObject.cpp87 bool JSObject::getOwnPropertySlot(ExecState* exec, unsigned propertyName, PropertySlot& slot) in getOwnPropertySlot() argument
89 return getOwnPropertySlot(exec, Identifier::from(exec, propertyName), slot); in getOwnPropertySlot()
98 void JSObject::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot&… in put() argument
103 if (propertyName == exec->propertyNames().underscoreProto) { in put()
127 putDirectInternal(exec->globalData(), propertyName, value, 0, true, slot); in put()
134 …if ((m_structure->get(propertyName, attributes, specificValue) != WTF::notFound) && attributes & R… in put()
138 if (JSValue gs = obj->getDirect(propertyName)) { in put()
164 putDirectInternal(exec->globalData(), propertyName, value, 0, true, slot); in put()
168 void JSObject::put(ExecState* exec, unsigned propertyName, JSValue value) in put() argument
171 put(exec, Identifier::from(exec, propertyName), value, slot); in put()
[all …]
DRegExpMatchesArray.h33 …virtual bool getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slo… in getOwnPropertySlot() argument
37 return JSArray::getOwnPropertySlot(exec, propertyName, slot); in getOwnPropertySlot()
40 virtual bool getOwnPropertySlot(ExecState* exec, unsigned propertyName, PropertySlot& slot) in getOwnPropertySlot() argument
44 return JSArray::getOwnPropertySlot(exec, propertyName, slot); in getOwnPropertySlot()
47 …virtual void put(ExecState* exec, const Identifier& propertyName, JSValue v, PutPropertySlot& slot) in put() argument
51 JSArray::put(exec, propertyName, v, slot); in put()
54 virtual void put(ExecState* exec, unsigned propertyName, JSValue v) in put() argument
58 JSArray::put(exec, propertyName, v); in put()
61 virtual bool deleteProperty(ExecState* exec, const Identifier& propertyName) in deleteProperty() argument
65 return JSArray::deleteProperty(exec, propertyName); in deleteProperty()
[all …]
DJSByteArray.cpp52 bool JSByteArray::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot&… in getOwnPropertySlot() argument
55 unsigned index = propertyName.toUInt32(&ok, false); in getOwnPropertySlot()
60 return JSObject::getOwnPropertySlot(exec, propertyName, slot); in getOwnPropertySlot()
63 bool JSByteArray::getOwnPropertySlot(ExecState* exec, unsigned propertyName, PropertySlot& slot) in getOwnPropertySlot() argument
65 if (canAccessIndex(propertyName)) { in getOwnPropertySlot()
66 slot.setValue(getIndex(exec, propertyName)); in getOwnPropertySlot()
69 return JSObject::getOwnPropertySlot(exec, Identifier::from(exec, propertyName), slot); in getOwnPropertySlot()
72 void JSByteArray::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySl… in put() argument
75 unsigned index = propertyName.toUInt32(&ok, false); in put()
80 JSObject::put(exec, propertyName, value, slot); in put()
[all …]
DStringObject.cpp50 bool StringObject::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot… in getOwnPropertySlot() argument
52 if (internalValue()->getStringPropertySlot(exec, propertyName, slot)) in getOwnPropertySlot()
54 return JSObject::getOwnPropertySlot(exec, propertyName, slot); in getOwnPropertySlot()
57 bool StringObject::getOwnPropertySlot(ExecState* exec, unsigned propertyName, PropertySlot& slot) in getOwnPropertySlot() argument
59 if (internalValue()->getStringPropertySlot(exec, propertyName, slot)) in getOwnPropertySlot()
61 return JSObject::getOwnPropertySlot(exec, Identifier::from(exec, propertyName), slot); in getOwnPropertySlot()
64 void StringObject::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertyS… in put() argument
66 if (propertyName == exec->propertyNames().length) in put()
68 JSObject::put(exec, propertyName, value, slot); in put()
71 bool StringObject::deleteProperty(ExecState* exec, const Identifier& propertyName) in deleteProperty() argument
[all …]
DLookup.h165 …ExecState*, const HashEntry*, JSObject* thisObject, const Identifier& propertyName, PropertySlot&);
174 …te* exec, const HashTable* table, ThisImp* thisObj, const Identifier& propertyName, PropertySlot& … in getStaticPropertySlot() argument
176 const HashEntry* entry = table->entry(exec, propertyName); in getStaticPropertySlot()
179 return thisObj->ParentImp::getOwnPropertySlot(exec, propertyName, slot); in getStaticPropertySlot()
182 setUpStaticFunctionSlot(exec, entry, thisObj, propertyName, slot); in getStaticPropertySlot()
195 …e* exec, const HashTable* table, JSObject* thisObj, const Identifier& propertyName, PropertySlot& … in getStaticFunctionSlot() argument
197 … if (static_cast<ParentImp*>(thisObj)->ParentImp::getOwnPropertySlot(exec, propertyName, slot)) in getStaticFunctionSlot()
200 const HashEntry* entry = table->entry(exec, propertyName); in getStaticFunctionSlot()
204 setUpStaticFunctionSlot(exec, entry, thisObj, propertyName, slot); in getStaticFunctionSlot()
213 …te* exec, const HashTable* table, ThisImp* thisObj, const Identifier& propertyName, PropertySlot& … in getStaticValueSlot() argument
[all …]
DJSFunction.cpp132 bool JSFunction::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& … in getOwnPropertySlot() argument
135 return Base::getOwnPropertySlot(exec, propertyName, slot); in getOwnPropertySlot()
137 if (propertyName == exec->propertyNames().prototype) { in getOwnPropertySlot()
138 JSValue* location = getDirectLocation(propertyName); in getOwnPropertySlot()
144 location = getDirectLocation(propertyName); in getOwnPropertySlot()
150 if (propertyName == exec->propertyNames().arguments) { in getOwnPropertySlot()
155 if (propertyName == exec->propertyNames().length) { in getOwnPropertySlot()
160 if (propertyName == exec->propertyNames().caller) { in getOwnPropertySlot()
165 return Base::getOwnPropertySlot(exec, propertyName, slot); in getOwnPropertySlot()
168 void JSFunction::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlo… in put() argument
[all …]
DJSActivation.cpp71 bool JSActivation::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot… in getOwnPropertySlot() argument
73 if (symbolTableGet(propertyName, slot)) in getOwnPropertySlot()
76 if (JSValue* location = getDirectLocation(propertyName)) { in getOwnPropertySlot()
82 if (propertyName == exec->propertyNames().arguments) { in getOwnPropertySlot()
94 void JSActivation::put(ExecState*, const Identifier& propertyName, JSValue value, PutPropertySlot& … in put() argument
98 if (symbolTablePut(propertyName, value)) in put()
105 putDirect(propertyName, value, 0, true, slot); in put()
109 void JSActivation::putWithAttributes(ExecState* exec, const Identifier& propertyName, JSValue value… in putWithAttributes() argument
113 if (symbolTablePutWithAttributes(propertyName, value, attributes)) in putWithAttributes()
121 JSObject::putWithAttributes(exec, propertyName, value, attributes, true, slot); in putWithAttributes()
[all …]
DStructure.h65 …RefPtr<Structure> addPropertyTransition(Structure*, const Identifier& propertyName, unsigned attri…
66 …ddPropertyTransitionToExistingStructure(Structure*, const Identifier& propertyName, unsigned attri…
67 …Ptr<Structure> removePropertyTransition(Structure*, const Identifier& propertyName, size_t& offset…
82 …size_t addPropertyWithoutTransition(const Identifier& propertyName, unsigned attributes, JSCell* s…
83 size_t removePropertyWithoutTransition(const Identifier& propertyName);
101 size_t get(const Identifier& propertyName);
103 size_t get(const Identifier& propertyName, unsigned& attributes, JSCell*& specificValue) in get() argument
105 ASSERT(!propertyName.isNull()); in get()
106 return get(propertyName._ustring.rep(), attributes, specificValue); in get()
117 void despecifyDictionaryFunction(const Identifier& propertyName);
[all …]
/external/webkit/WebCore/bindings/js/
DJSCSSStyleDeclarationCustom.cpp48 static bool hasCSSPropertyNamePrefix(const Identifier& propertyName, const char* prefix) in hasCSSPropertyNamePrefix() argument
54 ASSERT(propertyName.size()); in hasCSSPropertyNamePrefix()
57 if (toASCIILower(propertyName.data()[0]) != prefix[0]) in hasCSSPropertyNamePrefix()
60 unsigned length = propertyName.size(); in hasCSSPropertyNamePrefix()
63 return isASCIIUpper(propertyName.data()[i]); in hasCSSPropertyNamePrefix()
64 if (propertyName.data()[i] != prefix[i]) in hasCSSPropertyNamePrefix()
70 static String cssPropertyName(const Identifier& propertyName, bool* hadPixelOrPosPrefix = 0) in cssPropertyName() argument
75 unsigned length = propertyName.size(); in cssPropertyName()
84 if (hasCSSPropertyNamePrefix(propertyName, "css")) in cssPropertyName()
86 else if (hasCSSPropertyNamePrefix(propertyName, "pixel")) { in cssPropertyName()
[all …]
DJSDOMWindowShell.cpp86 bool JSDOMWindowShell::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, Property… in getOwnPropertySlot() argument
88 return m_window->getOwnPropertySlot(exec, propertyName, slot); in getOwnPropertySlot()
91 void JSDOMWindowShell::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPrope… in put() argument
93 m_window->put(exec, propertyName, value, slot); in put()
96 void JSDOMWindowShell::putWithAttributes(ExecState* exec, const Identifier& propertyName, JSValue v… in putWithAttributes() argument
98 m_window->putWithAttributes(exec, propertyName, value, attributes); in putWithAttributes()
101 bool JSDOMWindowShell::deleteProperty(ExecState* exec, const Identifier& propertyName) in deleteProperty() argument
103 return m_window->deleteProperty(exec, propertyName); in deleteProperty()
111 bool JSDOMWindowShell::getPropertyAttributes(JSC::ExecState* exec, const Identifier& propertyName, … in getPropertyAttributes() argument
113 return m_window->getPropertyAttributes(exec, propertyName, attributes); in getPropertyAttributes()
[all …]
DJSLocationCustom.cpp40 …CachingStaticReplaceFunctionGetter(ExecState* exec, const Identifier& propertyName, const Property… in nonCachingStaticReplaceFunctionGetter() argument
42 …r(exec, exec->lexicalGlobalObject()->prototypeFunctionStructure(), 1, propertyName, jsLocationProt… in nonCachingStaticReplaceFunctionGetter()
45 static JSValue nonCachingStaticReloadFunctionGetter(ExecState* exec, const Identifier& propertyName in nonCachingStaticReloadFunctionGetter() argument
47 …r(exec, exec->lexicalGlobalObject()->prototypeFunctionStructure(), 0, propertyName, jsLocationProt… in nonCachingStaticReloadFunctionGetter()
50 static JSValue nonCachingStaticAssignFunctionGetter(ExecState* exec, const Identifier& propertyName in nonCachingStaticAssignFunctionGetter() argument
52 …r(exec, exec->lexicalGlobalObject()->prototypeFunctionStructure(), 1, propertyName, jsLocationProt… in nonCachingStaticAssignFunctionGetter()
55 bool JSLocation::getOwnPropertySlotDelegate(ExecState* exec, const Identifier& propertyName, Proper… in getOwnPropertySlotDelegate() argument
73 …onst HashEntry* entry = JSLocationPrototype::s_info.propHashTable(exec)->entry(exec, propertyName); in getOwnPropertySlotDelegate()
96 bool JSLocation::putDelegate(ExecState* exec, const Identifier& propertyName, JSValue value, PutPro… in putDelegate() argument
102 …if (propertyName == exec->propertyNames().toString || propertyName == exec->propertyNames().valueO… in putDelegate()
[all …]
DJSStorageCustom.cpp39 bool JSStorage::canGetItemsForName(ExecState*, Storage* impl, const Identifier& propertyName) in canGetItemsForName() argument
41 return impl->contains(propertyName); in canGetItemsForName()
44 JSValue JSStorage::nameGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot& … in nameGetter() argument
47 return jsStringOrNull(exec, thisObj->impl()->getItem(propertyName)); in nameGetter()
50 bool JSStorage::deleteProperty(ExecState* exec, const Identifier& propertyName) in deleteProperty() argument
56 …if (getStaticValueSlot<JSStorage, Base>(exec, s_info.propHashTable(exec), this, propertyName, slot… in deleteProperty()
60 if (prototype.isObject() && asObject(prototype)->hasProperty(exec, propertyName)) in deleteProperty()
63 m_impl->removeItem(propertyName); in deleteProperty()
76 bool JSStorage::putDelegate(ExecState* exec, const Identifier& propertyName, JSValue value, PutProp… in putDelegate() argument
82 …if (getStaticValueSlot<JSStorage, Base>(exec, s_info.propHashTable(exec), this, propertyName, slot… in putDelegate()
[all …]
DJSHistoryCustom.cpp40 static JSValue nonCachingStaticBackFunctionGetter(ExecState* exec, const Identifier& propertyName, … in nonCachingStaticBackFunctionGetter() argument
42 …r(exec, exec->lexicalGlobalObject()->prototypeFunctionStructure(), 0, propertyName, jsHistoryProto… in nonCachingStaticBackFunctionGetter()
45 …CachingStaticForwardFunctionGetter(ExecState* exec, const Identifier& propertyName, const Property… in nonCachingStaticForwardFunctionGetter() argument
47 …r(exec, exec->lexicalGlobalObject()->prototypeFunctionStructure(), 0, propertyName, jsHistoryProto… in nonCachingStaticForwardFunctionGetter()
50 static JSValue nonCachingStaticGoFunctionGetter(ExecState* exec, const Identifier& propertyName, co… in nonCachingStaticGoFunctionGetter() argument
52 …r(exec, exec->lexicalGlobalObject()->prototypeFunctionStructure(), 1, propertyName, jsHistoryProto… in nonCachingStaticGoFunctionGetter()
55 bool JSHistory::getOwnPropertySlotDelegate(ExecState* exec, const Identifier& propertyName, Propert… in getOwnPropertySlotDelegate() argument
67 …const HashEntry* entry = JSHistoryPrototype::s_info.propHashTable(exec)->entry(exec, propertyName); in getOwnPropertySlotDelegate()
84 if (propertyName == exec->propertyNames().toString) { in getOwnPropertySlotDelegate()
103 bool JSHistory::deleteProperty(ExecState* exec, const Identifier& propertyName) in deleteProperty() argument
[all …]
DJSHTMLAppletElementCustom.cpp36 …lement::getOwnPropertySlotDelegate(ExecState* exec, const Identifier& propertyName, PropertySlot& … in getOwnPropertySlotDelegate() argument
38 return runtimeObjectCustomGetOwnPropertySlot(exec, propertyName, slot, this); in getOwnPropertySlotDelegate()
41 bool JSHTMLAppletElement::putDelegate(ExecState* exec, const Identifier& propertyName, JSValue valu… in putDelegate() argument
43 return runtimeObjectCustomPut(exec, propertyName, value, impl(), slot); in putDelegate()
51 …MLAppletElement::canGetItemsForName(ExecState*, HTMLAppletElement*, const Identifier& propertyName) in canGetItemsForName() argument
53 return propertyName == "__apple_runtime_object"; in canGetItemsForName()
56 JSValue JSHTMLAppletElement::nameGetter(ExecState* exec, const Identifier& propertyName, const Prop… in nameGetter() argument
58 return runtimeObjectGetter(exec, propertyName, slot); in nameGetter()
DJSHTMLEmbedElementCustom.cpp36 bool JSHTMLEmbedElement::getOwnPropertySlotDelegate(ExecState* exec, const Identifier& propertyName in getOwnPropertySlotDelegate() argument
38 return runtimeObjectCustomGetOwnPropertySlot(exec, propertyName, slot, this); in getOwnPropertySlotDelegate()
41 bool JSHTMLEmbedElement::putDelegate(ExecState* exec, const Identifier& propertyName, JSValue value… in putDelegate() argument
43 return runtimeObjectCustomPut(exec, propertyName, value, impl(), slot); in putDelegate()
51 …HTMLEmbedElement::canGetItemsForName(ExecState*, HTMLEmbedElement*, const Identifier& propertyName) in canGetItemsForName() argument
53 return propertyName == "__apple_runtime_object"; in canGetItemsForName()
56 JSValue JSHTMLEmbedElement::nameGetter(ExecState* exec, const Identifier& propertyName, const Prope… in nameGetter() argument
58 return runtimeObjectGetter(exec, propertyName, slot); in nameGetter()
DJSHTMLObjectElementCustom.cpp36 …lement::getOwnPropertySlotDelegate(ExecState* exec, const Identifier& propertyName, PropertySlot& … in getOwnPropertySlotDelegate() argument
38 return runtimeObjectCustomGetOwnPropertySlot(exec, propertyName, slot, this); in getOwnPropertySlotDelegate()
41 bool JSHTMLObjectElement::putDelegate(ExecState* exec, const Identifier& propertyName, JSValue valu… in putDelegate() argument
43 return runtimeObjectCustomPut(exec, propertyName, value, impl(), slot); in putDelegate()
51 …MLObjectElement::canGetItemsForName(ExecState*, HTMLObjectElement*, const Identifier& propertyName) in canGetItemsForName() argument
53 return propertyName == "__apple_runtime_object"; in canGetItemsForName()
56 JSValue JSHTMLObjectElement::nameGetter(ExecState* exec, const Identifier& propertyName, const Prop… in nameGetter() argument
58 return runtimeObjectGetter(exec, propertyName, slot); in nameGetter()
DJSDOMWindowShell.h69 …virtual bool getOwnPropertySlot(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::Propert…
70 …virtual void put(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::JSValue, JSC::PutPrope…
71 …virtual void putWithAttributes(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::JSValue,…
72 virtual bool deleteProperty(JSC::ExecState*, const JSC::Identifier& propertyName);
74 …virtual bool getPropertyAttributes(JSC::ExecState*, const JSC::Identifier& propertyName, unsigned&…
75 …virtual void defineGetter(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::JSObject* get…
76 …virtual void defineSetter(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::JSObject* set…
77 virtual JSC::JSValue lookupGetter(JSC::ExecState*, const JSC::Identifier& propertyName);
78 virtual JSC::JSValue lookupSetter(JSC::ExecState*, const JSC::Identifier& propertyName);
/external/webkit/JavaScriptCore/debugger/
DDebuggerActivation.cpp54 bool DebuggerActivation::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, Proper… in getOwnPropertySlot() argument
56 return m_activation->getOwnPropertySlot(exec, propertyName, slot); in getOwnPropertySlot()
59 void DebuggerActivation::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPro… in put() argument
61 m_activation->put(exec, propertyName, value, slot); in put()
64 void DebuggerActivation::putWithAttributes(ExecState* exec, const Identifier& propertyName, JSValue… in putWithAttributes() argument
66 m_activation->putWithAttributes(exec, propertyName, value, attributes); in putWithAttributes()
69 bool DebuggerActivation::deleteProperty(ExecState* exec, const Identifier& propertyName) in deleteProperty() argument
71 return m_activation->deleteProperty(exec, propertyName); in deleteProperty()
79 bool DebuggerActivation::getPropertyAttributes(JSC::ExecState* exec, const Identifier& propertyName in getPropertyAttributes() argument
81 return m_activation->getPropertyAttributes(exec, propertyName, attributes); in getPropertyAttributes()
[all …]
DDebuggerActivation.h41 virtual bool getOwnPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot&);
42 virtual void put(ExecState*, const Identifier& propertyName, JSValue, PutPropertySlot&);
43 …virtual void putWithAttributes(ExecState*, const Identifier& propertyName, JSValue, unsigned attri…
44 virtual bool deleteProperty(ExecState*, const Identifier& propertyName);
46 …virtual bool getPropertyAttributes(ExecState*, const Identifier& propertyName, unsigned& attribute…
47 … virtual void defineGetter(ExecState*, const Identifier& propertyName, JSObject* getterFunction);
48 … virtual void defineSetter(ExecState*, const Identifier& propertyName, JSObject* setterFunction);
49 virtual JSValue lookupGetter(ExecState*, const Identifier& propertyName);
50 virtual JSValue lookupSetter(ExecState*, const Identifier& propertyName);
/external/webkit/WebCore/css/
DCSSStyleDeclaration.cpp40 PassRefPtr<CSSValue> CSSStyleDeclaration::getPropertyCSSValue(const String& propertyName) in getPropertyCSSValue() argument
42 int propID = cssPropertyID(propertyName); in getPropertyCSSValue()
48 String CSSStyleDeclaration::getPropertyValue(const String &propertyName) in getPropertyValue() argument
50 int propID = cssPropertyID(propertyName); in getPropertyValue()
56 String CSSStyleDeclaration::getPropertyPriority(const String& propertyName) in getPropertyPriority() argument
58 int propID = cssPropertyID(propertyName); in getPropertyPriority()
64 String CSSStyleDeclaration::getPropertyShorthand(const String& propertyName) in getPropertyShorthand() argument
66 int propID = cssPropertyID(propertyName); in getPropertyShorthand()
75 bool CSSStyleDeclaration::isPropertyImplicit(const String& propertyName) in isPropertyImplicit() argument
77 int propID = cssPropertyID(propertyName); in isPropertyImplicit()
[all …]
/external/webkit/WebCore/bindings/v8/custom/
DV8CSSStyleDeclarationCustom.cpp58 static bool hasCSSPropertyNamePrefix(const String& propertyName, const char* prefix) in hasCSSPropertyNamePrefix() argument
64 ASSERT(propertyName.length()); in hasCSSPropertyNamePrefix()
67 if (WTF::toASCIILower(propertyName[0]) != prefix[0]) in hasCSSPropertyNamePrefix()
70 unsigned length = propertyName.length(); in hasCSSPropertyNamePrefix()
73 return WTF::isASCIIUpper(propertyName[i]); in hasCSSPropertyNamePrefix()
74 if (propertyName[i] != prefix[i]) in hasCSSPropertyNamePrefix()
100 String propertyName = toWebCoreString(v8PropertyName); in cssPropertyInfo() local
103 CSSPropertyInfo* propInfo = map.get(propertyName); in cssPropertyInfo()
105 unsigned length = propertyName.length(); in cssPropertyInfo()
115 if (hasCSSPropertyNamePrefix(propertyName, "css")) in cssPropertyInfo()
[all …]
/external/webkit/WebCore/inspector/front-end/
DInjectedScript.js77 InjectedScript.applyStyleText = function(styleId, styleText, propertyName) argument
94 if (style.getPropertyShorthand(propertyName)) {
95 var longhandProperties = InjectedScript._getLonghandProperties(style, propertyName);
99 style.removeProperty(propertyName);
138 InjectedScript.toggleStyleEnabled = function(styleId, propertyName, disabled) argument
152 style.__disabledPropertyValues[propertyName] = style.getPropertyValue(propertyName);
153 style.__disabledPropertyPriorities[propertyName] = style.getPropertyPriority(propertyName);
155 if (style.getPropertyShorthand(propertyName)) {
156 var longhandProperties = InjectedScript._getLonghandProperties(style, propertyName);
162 style.__disabledProperties[propertyName] = true;
[all …]
/external/webkit/WebCore/bridge/
Druntime_object.cpp71 JSValue RuntimeObjectImp::fallbackObjectGetter(ExecState* exec, const Identifier& propertyName, con… in fallbackObjectGetter() argument
82 JSValue result = aClass->fallbackObject(exec, instance.get(), propertyName); in fallbackObjectGetter()
89 JSValue RuntimeObjectImp::fieldGetter(ExecState* exec, const Identifier& propertyName, const Proper… in fieldGetter() argument
100 Field* aField = aClass->fieldNamed(propertyName, instance.get()); in fieldGetter()
108 JSValue RuntimeObjectImp::methodGetter(ExecState* exec, const Identifier& propertyName, const Prope… in methodGetter() argument
119 MethodList methodList = aClass->methodsNamed(propertyName, instance.get()); in methodGetter()
120 JSValue result = new (exec) RuntimeMethod(exec, propertyName, methodList); in methodGetter()
127 bool RuntimeObjectImp::getOwnPropertySlot(ExecState *exec, const Identifier& propertyName, Property… in getOwnPropertySlot() argument
140 Field *aField = aClass->fieldNamed(propertyName, instance.get()); in getOwnPropertySlot()
148 MethodList methodList = aClass->methodsNamed(propertyName, instance.get()); in getOwnPropertySlot()
[all …]
/external/webkit/JavaScriptCore/API/
DJSCallbackObjectFunctions.h109 bool JSCallbackObject<Base>::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, Pr… in getOwnPropertySlot() argument
119 propertyNameRef = OpaqueJSString::create(propertyName.ustring()); in getOwnPropertySlot()
127 propertyNameRef = OpaqueJSString::create(propertyName.ustring()); in getOwnPropertySlot()
146 if (staticValues->contains(propertyName.ustring().rep())) { in getOwnPropertySlot()
153 if (staticFunctions->contains(propertyName.ustring().rep())) { in getOwnPropertySlot()
160 return Base::getOwnPropertySlot(exec, propertyName, slot); in getOwnPropertySlot()
164 bool JSCallbackObject<Base>::getOwnPropertySlot(ExecState* exec, unsigned propertyName, PropertySlo… in getOwnPropertySlot() argument
166 return getOwnPropertySlot(exec, Identifier::from(exec, propertyName), slot); in getOwnPropertySlot()
170 void JSCallbackObject<Base>::put(ExecState* exec, const Identifier& propertyName, JSValue value, Pu… in put() argument
180 propertyNameRef = OpaqueJSString::create(propertyName.ustring()); in put()
[all …]

1234567