Searched refs:propertyName (Results 1 - 25 of 205) sorted by relevance

123456789

/macosx-10.9.5/WebCore-7537.78.1/bindings/js/
H A DJSDOMMimeTypeArrayCustom.cpp31 bool JSDOMMimeTypeArray::canGetItemsForName(ExecState*, DOMMimeTypeArray* mimeTypeArray, PropertyName propertyName) argument
33 return mimeTypeArray->canGetItemsForName(propertyNameToAtomicString(propertyName));
36 JSValue JSDOMMimeTypeArray::nameGetter(ExecState* exec, JSValue slotBase, PropertyName propertyName) argument
39 return toJS(exec, thisObj->globalObject(), thisObj->impl()->namedItem(propertyNameToAtomicString(propertyName)));
H A DJSDOMPluginArrayCustom.cpp31 bool JSDOMPluginArray::canGetItemsForName(ExecState*, DOMPluginArray* pluginArray, PropertyName propertyName) argument
33 return pluginArray->canGetItemsForName(propertyNameToAtomicString(propertyName));
36 JSValue JSDOMPluginArray::nameGetter(ExecState* exec, JSValue slotBase, PropertyName propertyName) argument
39 return toJS(exec, thisObj->globalObject(), thisObj->impl()->namedItem(propertyNameToAtomicString(propertyName)));
H A DJSDOMPluginCustom.cpp30 bool JSDOMPlugin::canGetItemsForName(ExecState*, DOMPlugin* plugin, PropertyName propertyName) argument
32 return plugin->canGetItemsForName(propertyNameToAtomicString(propertyName));
35 JSValue JSDOMPlugin::nameGetter(ExecState* exec, JSValue slotBase, PropertyName propertyName) argument
38 return toJS(exec, thisObj->globalObject(), thisObj->impl()->namedItem(propertyNameToAtomicString(propertyName)));
H A DJSNamedNodeMapCustom.cpp38 bool JSNamedNodeMap::canGetItemsForName(ExecState*, NamedNodeMap* impl, PropertyName propertyName) argument
40 return impl->getNamedItem(propertyNameToAtomicString(propertyName));
43 JSValue JSNamedNodeMap::nameGetter(ExecState* exec, JSValue slotBase, PropertyName propertyName) argument
46 return toJS(exec, thisObj->globalObject(), thisObj->impl()->getNamedItem(propertyNameToAtomicString(propertyName)));
H A DJSRTCStatsResponseCustom.cpp37 bool JSRTCStatsResponse::canGetItemsForName(ExecState*, RTCStatsResponse* impl, PropertyName propertyName) argument
39 return impl->namedItem(propertyNameToString(propertyName));
42 JSValue JSRTCStatsResponse::nameGetter(ExecState* exec, JSValue slotBase, PropertyName propertyName) argument
45 return toJS(exec, thisObj->globalObject(), thisObj->impl()->namedItem(propertyNameToString(propertyName)));
H A DDictionary.h52 bool get(const char* propertyName, Result&) const;
54 bool get(const String& propertyName, Result&) const;
57 PassRefPtr<EventListener> getEventListener(const char* propertyName, T* target) const;
59 PassRefPtr<EventListener> getEventListener(const String& propertyName, T* target) const;
65 bool getWithUndefinedOrNullCheck(const String& propertyName, String& value) const;
75 bool Dictionary::get(const char* propertyName, Result& result) const argument
80 return m_dictionary.get(propertyName, result);
84 bool Dictionary::get(const String& propertyName, Result& result) const argument
86 return get(propertyName.utf8().data(), result);
90 PassRefPtr<EventListener> Dictionary::getEventListener(const char* propertyName, argument
107 getEventListener(const String& propertyName, T* target) const argument
[all...]
H A DJSHTMLAppletElementCustom.cpp36 bool JSHTMLAppletElement::getOwnPropertySlotDelegate(ExecState* exec, PropertyName propertyName, PropertySlot& slot) argument
38 return pluginElementCustomGetOwnPropertySlot<JSHTMLAppletElement, Base>(exec, propertyName, slot, this);
41 bool JSHTMLAppletElement::getOwnPropertyDescriptorDelegate(ExecState* exec, PropertyName propertyName, PropertyDescriptor& descriptor) argument
43 return pluginElementCustomGetOwnPropertyDescriptor<JSHTMLAppletElement, Base>(exec, propertyName, descriptor, this);
46 bool JSHTMLAppletElement::putDelegate(ExecState* exec, PropertyName propertyName, JSValue value, PutPropertySlot& slot) argument
48 return runtimeObjectCustomPut(exec, propertyName, value, this, slot);
H A DJSHTMLEmbedElementCustom.cpp36 bool JSHTMLEmbedElement::getOwnPropertySlotDelegate(ExecState* exec, PropertyName propertyName, PropertySlot& slot) argument
38 return pluginElementCustomGetOwnPropertySlot<JSHTMLEmbedElement, Base>(exec, propertyName, slot, this);
41 bool JSHTMLEmbedElement::getOwnPropertyDescriptorDelegate(ExecState* exec, PropertyName propertyName, PropertyDescriptor& descriptor) argument
43 return pluginElementCustomGetOwnPropertyDescriptor<JSHTMLEmbedElement, Base>(exec, propertyName, descriptor, this);
46 bool JSHTMLEmbedElement::putDelegate(ExecState* exec, PropertyName propertyName, JSValue value, PutPropertySlot& slot) argument
48 return runtimeObjectCustomPut(exec, propertyName, value, this, slot);
H A DJSHTMLObjectElementCustom.cpp36 bool JSHTMLObjectElement::getOwnPropertySlotDelegate(ExecState* exec, PropertyName propertyName, PropertySlot& slot) argument
38 return pluginElementCustomGetOwnPropertySlot<JSHTMLObjectElement, Base>(exec, propertyName, slot, this);
41 bool JSHTMLObjectElement::getOwnPropertyDescriptorDelegate(ExecState* exec, PropertyName propertyName, PropertyDescriptor& descriptor) argument
43 return pluginElementCustomGetOwnPropertyDescriptor<JSHTMLObjectElement, Base>(exec, propertyName, descriptor, this);
46 bool JSHTMLObjectElement::putDelegate(ExecState* exec, PropertyName propertyName, JSValue value, PutPropertySlot& slot) argument
48 return runtimeObjectCustomPut(exec, propertyName, value, this, slot);
H A DJSStyleSheetListCustom.cpp38 bool JSStyleSheetList::canGetItemsForName(ExecState*, StyleSheetList* styleSheetList, PropertyName propertyName) argument
40 return styleSheetList->getNamedItem(propertyNameToString(propertyName));
43 JSValue JSStyleSheetList::nameGetter(ExecState* exec, JSValue slotBase, PropertyName propertyName) argument
46 HTMLStyleElement* element = thisObj->impl()->getNamedItem(propertyNameToString(propertyName));
H A DJSLocationCustom.cpp33 static JSValue nonCachingStaticReplaceFunctionGetter(ExecState* exec, JSValue, PropertyName propertyName) argument
35 return JSFunction::create(exec, exec->lexicalGlobalObject(), 1, propertyName.publicName(), jsLocationPrototypeFunctionReplace);
38 static JSValue nonCachingStaticReloadFunctionGetter(ExecState* exec, JSValue, PropertyName propertyName) argument
40 return JSFunction::create(exec, exec->lexicalGlobalObject(), 0, propertyName.publicName(), jsLocationPrototypeFunctionReload);
43 static JSValue nonCachingStaticAssignFunctionGetter(ExecState* exec, JSValue, PropertyName propertyName) argument
45 return JSFunction::create(exec, exec->lexicalGlobalObject(), 1, propertyName.publicName(), jsLocationPrototypeFunctionAssign);
48 bool JSLocation::getOwnPropertySlotDelegate(ExecState* exec, PropertyName propertyName, PropertySlot& slot) argument
66 const HashEntry* entry = JSLocationPrototype::s_info.propHashTable(exec)->entry(exec, propertyName);
89 bool JSLocation::getOwnPropertyDescriptorDelegate(ExecState* exec, PropertyName propertyName, PropertyDescriptor& descriptor) argument
102 const HashEntry* entry = JSLocationPrototype::s_info.propHashTable(exec)->entry(exec, propertyName);
128 putDelegate(ExecState* exec, PropertyName propertyName, JSValue value, PutPropertySlot& slot) argument
155 deleteProperty(JSCell* cell, ExecState* exec, PropertyName propertyName) argument
164 deletePropertyByIndex(JSCell* cell, ExecState* exec, unsigned propertyName) argument
182 defineOwnProperty(JSObject* object, ExecState* exec, PropertyName propertyName, PropertyDescriptor& descriptor, bool throwException) argument
288 putDelegate(ExecState* exec, PropertyName propertyName, JSValue, PutPropertySlot&) argument
293 defineOwnProperty(JSObject* object, ExecState* exec, PropertyName propertyName, PropertyDescriptor& descriptor, bool throwException) argument
[all...]
H A DJSHTMLFormElementCustom.cpp40 bool JSHTMLFormElement::canGetItemsForName(ExecState*, HTMLFormElement* form, PropertyName propertyName) argument
43 form->getNamedElements(propertyNameToAtomicString(propertyName), namedItems);
47 JSValue JSHTMLFormElement::nameGetter(ExecState* exec, JSValue slotBase, PropertyName propertyName) argument
53 form->getNamedElements(propertyNameToAtomicString(propertyName), namedItems);
H A DJSHTMLFrameSetElementCustom.cpp44 bool JSHTMLFrameSetElement::canGetItemsForName(ExecState*, HTMLFrameSetElement* frameSet, PropertyName propertyName) argument
46 Node* frame = frameSet->children()->namedItem(propertyNameToAtomicString(propertyName));
50 JSValue JSHTMLFrameSetElement::nameGetter(ExecState* exec, JSValue slotBase, PropertyName propertyName) argument
53 Node* frameElement = element->children()->namedItem(propertyNameToAtomicString(propertyName));
H A DJSNodeListCustom.cpp49 bool JSNodeList::canGetItemsForName(ExecState*, NodeList* impl, PropertyName propertyName) argument
51 return impl->namedItem(propertyNameToAtomicString(propertyName));
54 JSValue JSNodeList::nameGetter(ExecState* exec, JSValue slotBase, PropertyName propertyName) argument
57 return toJS(exec, thisObj->globalObject(), thisObj->impl()->namedItem(propertyNameToAtomicString(propertyName)));
H A DJSStorageCustom.cpp37 bool JSStorage::canGetItemsForName(ExecState* exec, Storage* impl, PropertyName propertyName) argument
40 bool result = impl->contains(propertyNameToString(propertyName), ec);
45 JSValue JSStorage::nameGetter(ExecState* exec, JSValue slotBase, PropertyName propertyName) argument
50 if (prototype.isObject() && asObject(prototype)->hasProperty(exec, propertyName))
51 return asObject(prototype)->get(exec, propertyName);
54 JSValue result = jsStringOrNull(exec, thisObj->impl()->getItem(propertyNameToString(propertyName), ec));
59 bool JSStorage::deleteProperty(JSCell* cell, ExecState* exec, PropertyName propertyName) argument
66 if (getStaticValueSlot<JSStorage, Base>(exec, s_info.propHashTable(exec), thisObject, propertyName, slot))
70 if (prototype.isObject() && asObject(prototype)->hasProperty(exec, propertyName))
74 thisObject->m_impl->removeItem(propertyNameToString(propertyName), e
79 deletePropertyByIndex(JSCell* cell, ExecState* exec, unsigned propertyName) argument
102 putDelegate(ExecState* exec, PropertyName propertyName, JSValue value, PutPropertySlot&) argument
[all...]
H A DJSDOMStringMapCustom.cpp38 bool JSDOMStringMap::canGetItemsForName(ExecState*, DOMStringMap* impl, PropertyName propertyName) argument
40 return impl->contains(propertyNameToAtomicString(propertyName));
43 JSValue JSDOMStringMap::nameGetter(ExecState* exec, JSValue slotBase, PropertyName propertyName) argument
46 return jsStringWithCache(exec, thisObj->impl()->item(propertyNameToAtomicString(propertyName)));
61 bool JSDOMStringMap::deleteProperty(JSCell* cell, ExecState* exec, PropertyName propertyName) argument
64 AtomicString stringName = propertyNameToAtomicString(propertyName);
78 bool JSDOMStringMap::putDelegate(ExecState* exec, PropertyName propertyName, JSValue value, PutPropertySlot&) argument
84 impl()->setItem(propertyNameToString(propertyName), stringValue, ec);
/macosx-10.9.5/WebCore-7537.78.1/inspector/
H A DInspectorState.h62 bool getBoolean(const String& propertyName);
63 String getString(const String& propertyName);
64 long getLong(const String& propertyName);
65 double getDouble(const String& propertyName);
66 PassRefPtr<InspectorObject> getObject(const String& propertyName);
68 void setBoolean(const String& propertyName, bool value) { setValue(propertyName, InspectorBasicValue::create(value)); } argument
69 void setString(const String& propertyName, const String& value) { setValue(propertyName, InspectorString::create(value)); } argument
70 void setLong(const String& propertyName, lon argument
71 setDouble(const String& propertyName, double value) argument
72 setObject(const String& propertyName, PassRefPtr<InspectorObject> value) argument
[all...]
H A DInspectorState.cpp57 void InspectorState::setValue(const String& propertyName, PassRefPtr<InspectorValue> value) argument
59 m_properties->setValue(propertyName, value);
63 void InspectorState::remove(const String& propertyName) argument
65 m_properties->remove(propertyName);
69 bool InspectorState::getBoolean(const String& propertyName) argument
71 InspectorObject::iterator it = m_properties->find(propertyName);
78 String InspectorState::getString(const String& propertyName) argument
80 InspectorObject::iterator it = m_properties->find(propertyName);
87 long InspectorState::getLong(const String& propertyName) argument
89 InspectorObject::iterator it = m_properties->find(propertyName);
96 getDouble(const String& propertyName) argument
105 getObject(const String& propertyName) argument
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/API/
H A DJSObjectRefPrivate.h40 @param propertyName A JSString containing the property's name.
47 JS_EXPORT bool JSObjectSetPrivateProperty(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef value);
54 @param propertyName A JSString containing the property's name.
57 JS_EXPORT JSValueRef JSObjectGetPrivateProperty(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName);
64 @param propertyName A JSString containing the property's name.
68 JS_EXPORT bool JSObjectDeletePrivateProperty(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName);
/macosx-10.9.5/WebCore-7537.78.1/css/
H A DCSSStyleDeclaration.idl33 [TreatReturnedNullStringAs=Null] DOMString getPropertyValue([Default=Undefined] optional DOMString propertyName);
34 [Custom] CSSValue getPropertyCSSValue([Default=Undefined] optional DOMString propertyName);
35 [TreatReturnedNullStringAs=Null, RaisesException] DOMString removeProperty([Default=Undefined] optional DOMString propertyName);
36 [TreatReturnedNullStringAs=Null] DOMString getPropertyPriority([Default=Undefined] optional DOMString propertyName);
37 [ObjCLegacyUnnamedParameters, RaisesException] void setProperty([Default=Undefined] optional DOMString propertyName,
46 [TreatReturnedNullStringAs=Null] DOMString getPropertyShorthand([Default=Undefined] optional DOMString propertyName);
47 boolean isPropertyImplicit([Default=Undefined] optional DOMString propertyName);
H A DCSSStyleDeclaration.h53 virtual PassRefPtr<CSSValue> getPropertyCSSValue(const String& propertyName) = 0;
54 virtual String getPropertyValue(const String& propertyName) = 0;
55 virtual String getPropertyPriority(const String& propertyName) = 0;
56 virtual String getPropertyShorthand(const String& propertyName) = 0;
57 virtual bool isPropertyImplicit(const String& propertyName) = 0;
58 virtual void setProperty(const String& propertyName, const String& value, const String& priority, ExceptionCode&) = 0;
59 virtual String removeProperty(const String& propertyName, ExceptionCode&) = 0;
/macosx-10.9.5/JavaScriptCore-7537.78.1/runtime/
H A DJSFunction.cpp217 bool JSFunction::getOwnPropertySlot(JSCell* cell, ExecState* exec, PropertyName propertyName, PropertySlot& slot) argument
221 return Base::getOwnPropertySlot(thisObject, exec, propertyName, slot);
223 if (propertyName == exec->propertyNames().prototype) {
225 PropertyOffset offset = thisObject->getDirectOffset(vm, propertyName);
237 if (propertyName == exec->propertyNames().arguments) {
239 bool result = Base::getOwnPropertySlot(thisObject, exec, propertyName, slot);
241 thisObject->putDirectAccessor(exec, propertyName, thisObject->globalObject()->throwTypeErrorGetterSetter(exec), DontDelete | DontEnum | Accessor);
242 result = Base::getOwnPropertySlot(thisObject, exec, propertyName, slot);
251 if (propertyName == exec->propertyNames().length) {
256 if (propertyName
278 getOwnPropertyDescriptor(JSObject* object, ExecState* exec, PropertyName propertyName, PropertyDescriptor& descriptor) argument
347 put(JSCell* cell, ExecState* exec, PropertyName propertyName, JSValue value, PutPropertySlot& slot) argument
381 deleteProperty(JSCell* cell, ExecState* exec, PropertyName propertyName) argument
395 defineOwnProperty(JSObject* object, ExecState* exec, PropertyName propertyName, PropertyDescriptor& descriptor, bool throwException) argument
[all...]
H A DRegExpMatchesArray.h70 static bool getOwnPropertySlot(JSCell* cell, ExecState* exec, PropertyName propertyName, PropertySlot& slot) argument
74 return JSArray::getOwnPropertySlot(thisObject, exec, propertyName, slot);
77 static bool getOwnPropertySlotByIndex(JSCell* cell, ExecState* exec, unsigned propertyName, PropertySlot& slot) argument
80 if (propertyName)
84 return JSArray::getOwnPropertySlotByIndex(thisObject, exec, propertyName, slot);
87 static bool getOwnPropertyDescriptor(JSObject* object, ExecState* exec, PropertyName propertyName, PropertyDescriptor& descriptor) argument
91 return JSArray::getOwnPropertyDescriptor(thisObject, exec, propertyName, descriptor);
94 static void put(JSCell* cell, ExecState* exec, PropertyName propertyName, JSValue v, PutPropertySlot& slot) argument
98 JSArray::put(thisObject, exec, propertyName, v, slot);
101 static void putByIndex(JSCell* cell, ExecState* exec, unsigned propertyName, JSValu argument
108 deleteProperty(JSCell* cell, ExecState* exec, PropertyName propertyName) argument
115 deletePropertyByIndex(JSCell* cell, ExecState* exec, unsigned propertyName) argument
129 defineOwnProperty(JSObject* object, ExecState* exec, PropertyName propertyName, PropertyDescriptor& descriptor, bool shouldThrow) argument
[all...]
/macosx-10.9.5/WebCore-7537.78.1/dom/
H A DTransitionEvent.cpp44 TransitionEvent::TransitionEvent(const AtomicString& type, const String& propertyName, double elapsedTime, const String& pseudoElement) argument
46 , m_propertyName(propertyName)
54 , m_propertyName(initializer.propertyName)
64 const String& TransitionEvent::propertyName() const function in class:WebCore::TransitionEvent
H A DWebKitTransitionEvent.cpp43 WebKitTransitionEvent::WebKitTransitionEvent(const AtomicString& type, const String& propertyName, double elapsedTime, const String& pseudoElement) argument
45 , m_propertyName(propertyName)
53 , m_propertyName(initializer.propertyName)
63 const String& WebKitTransitionEvent::propertyName() const function in class:WebCore::WebKitTransitionEvent

Completed in 214 milliseconds

123456789