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

123456789

/macosx-10.10/WebCore-7600.1.25/bindings/js/
H A DJSNamedNodeMapCustom.cpp38 bool JSNamedNodeMap::canGetItemsForName(ExecState*, NamedNodeMap* impl, PropertyName propertyName) argument
40 return impl->getNamedItem(propertyNameToAtomicString(propertyName));
43 EncodedJSValue JSNamedNodeMap::nameGetter(ExecState* exec, JSObject* slotBase, EncodedJSValue, PropertyName propertyName) argument
46 return JSValue::encode(toJS(exec, thisObj->globalObject(), thisObj->impl().getNamedItem(propertyNameToAtomicString(propertyName))));
H A DJSDOMMimeTypeArrayCustom.cpp32 bool JSDOMMimeTypeArray::canGetItemsForName(ExecState*, DOMMimeTypeArray* mimeTypeArray, PropertyName propertyName) argument
34 return mimeTypeArray->canGetItemsForName(propertyNameToAtomicString(propertyName));
37 EncodedJSValue JSDOMMimeTypeArray::nameGetter(ExecState* exec, JSObject* slotBase, EncodedJSValue, PropertyName propertyName) argument
42 return JSValue::encode(toJS(exec, thisObj->globalObject(), thisObj->impl().namedItem(propertyNameToAtomicString(propertyName))));
H A DJSDOMPluginArrayCustom.cpp32 bool JSDOMPluginArray::canGetItemsForName(ExecState*, DOMPluginArray* pluginArray, PropertyName propertyName) argument
34 return pluginArray->canGetItemsForName(propertyNameToAtomicString(propertyName));
37 EncodedJSValue JSDOMPluginArray::nameGetter(ExecState* exec, JSObject* slotBase, EncodedJSValue, PropertyName propertyName) argument
40 return JSValue::encode(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 EncodedJSValue JSDOMPlugin::nameGetter(ExecState* exec, JSObject* slotBase, EncodedJSValue, PropertyName propertyName) argument
38 return JSValue::encode(toJS(exec, thisObj->globalObject(), thisObj->impl().namedItem(propertyNameToAtomicString(propertyName))));
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::putDelegate(ExecState* exec, PropertyName propertyName, JSValue value, PutPropertySlot& slot) argument
43 return pluginElementCustomPut(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::putDelegate(ExecState* exec, PropertyName propertyName, JSValue value, PutPropertySlot& slot) argument
43 return pluginElementCustomPut(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::putDelegate(ExecState* exec, PropertyName propertyName, JSValue value, PutPropertySlot& slot) argument
43 return pluginElementCustomPut(exec, propertyName, value, this, slot);
H A DJSRTCStatsResponseCustom.cpp39 bool JSRTCStatsResponse::canGetItemsForName(ExecState*, RTCStatsResponse* response, PropertyName propertyName) argument
41 return response->canGetItemsForName(propertyNameToAtomicString(propertyName));
44 EncodedJSValue JSRTCStatsResponse::nameGetter(ExecState* exec, JSObject* slotBase, EncodedJSValue, PropertyName propertyName) argument
47 return JSValue::encode(toJS(exec, thisObj->globalObject(), thisObj->impl().namedItem(propertyNameToAtomicString(propertyName))));
H A DJSStyleSheetListCustom.cpp38 bool JSStyleSheetList::canGetItemsForName(ExecState*, StyleSheetList* styleSheetList, PropertyName propertyName) argument
40 return styleSheetList->getNamedItem(propertyNameToString(propertyName));
43 EncodedJSValue JSStyleSheetList::nameGetter(ExecState* exec, JSObject* slotBase, EncodedJSValue, PropertyName propertyName) argument
46 HTMLStyleElement* element = thisObj->impl().getNamedItem(propertyNameToString(propertyName));
H A DJSUserMessageHandlersNamespaceCustom.cpp38 bool JSUserMessageHandlersNamespace::getOwnPropertySlotDelegate(ExecState* exec, PropertyName propertyName, PropertySlot& slot) argument
40 if (UserMessageHandler* handler = impl().handler(propertyNameToAtomicString(propertyName), globalObject()->world())) {
H A DDictionary.h51 bool get(const char* propertyName, Result&) const;
53 bool get(const String& propertyName, Result&) const;
56 PassRefPtr<EventListener> getEventListener(const char* propertyName, T* target) const;
58 PassRefPtr<EventListener> getEventListener(const String& propertyName, T* target) const;
64 bool getWithUndefinedOrNullCheck(const String& propertyName, String& value) const;
74 bool Dictionary::get(const char* propertyName, Result& result) const argument
79 return m_dictionary.get(propertyName, result);
83 bool Dictionary::get(const String& propertyName, Result& result) const argument
85 return get(propertyName.utf8().data(), result);
89 PassRefPtr<EventListener> Dictionary::getEventListener(const char* propertyName, argument
106 getEventListener(const String& propertyName, T* target) const argument
[all...]
H A DJSLocationCustom.cpp33 bool JSLocation::getOwnPropertySlotDelegate(ExecState* exec, PropertyName propertyName, PropertySlot& slot) argument
52 if (propertyName == exec->propertyNames().replace) {
56 if (propertyName == exec->propertyNames().reload) {
60 if (propertyName == exec->propertyNames().assign) {
74 bool JSLocation::putDelegate(ExecState* exec, PropertyName propertyName, JSValue value, PutPropertySlot& slot) argument
80 if (propertyName == exec->propertyNames().toString || propertyName == exec->propertyNames().valueOf)
85 const HashTableValue* entry = JSLocation::info()->propHashTable(exec)->entry(exec, propertyName);
88 JSObject::put(this, exec, propertyName, value, slot);
95 if (propertyName !
101 deleteProperty(JSCell* cell, ExecState* exec, PropertyName propertyName) argument
110 deletePropertyByIndex(JSCell* cell, ExecState* exec, unsigned propertyName) argument
128 defineOwnProperty(JSObject* object, ExecState* exec, PropertyName propertyName, const PropertyDescriptor& descriptor, bool throwException) argument
234 putDelegate(ExecState* exec, PropertyName propertyName, JSValue, PutPropertySlot&) argument
239 defineOwnProperty(JSObject* object, ExecState* exec, PropertyName propertyName, const PropertyDescriptor& descriptor, bool throwException) argument
[all...]
H A DJSHTMLFormElementCustom.cpp40 bool JSHTMLFormElement::canGetItemsForName(ExecState*, HTMLFormElement* form, PropertyName propertyName) argument
42 return form->hasNamedElement(propertyNameToAtomicString(propertyName));
45 EncodedJSValue JSHTMLFormElement::nameGetter(ExecState* exec, JSObject* slotBase, EncodedJSValue, PropertyName propertyName) argument
51 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 EncodedJSValue JSHTMLFrameSetElement::nameGetter(ExecState* exec, JSObject* slotBase, EncodedJSValue, PropertyName propertyName) argument
53 Node* frameElement = element.children()->namedItem(propertyNameToAtomicString(propertyName));
H A DJSStorageCustom.cpp38 bool JSStorage::canGetItemsForName(ExecState* exec, Storage* impl, PropertyName propertyName) argument
41 bool result = impl->contains(propertyNameToString(propertyName), ec);
46 EncodedJSValue JSStorage::nameGetter(ExecState* exec, JSObject* slotBase, EncodedJSValue, PropertyName propertyName) argument
51 if (prototype.isObject() && asObject(prototype)->getPropertySlot(exec, propertyName, slot))
52 return JSValue::encode(slot.getValue(exec, propertyName));
55 JSValue result = jsStringOrNull(exec, thisObject->impl().getItem(propertyNameToString(propertyName), ec));
60 bool JSStorage::deleteProperty(JSCell* cell, ExecState* exec, PropertyName propertyName) argument
67 if (getStaticValueSlot<JSStorage, Base>(exec, *s_info.propHashTable(exec), thisObject, propertyName, slot))
71 if (prototype.isObject() && asObject(prototype)->getPropertySlot(exec, propertyName, slot))
75 thisObject->m_impl->removeItem(propertyNameToString(propertyName), e
80 deletePropertyByIndex(JSCell* cell, ExecState* exec, unsigned propertyName) argument
103 putDelegate(ExecState* exec, PropertyName propertyName, JSValue value, PutPropertySlot&) argument
[all...]
H A DJSHTMLFormControlsCollectionCustom.cpp41 static JSValue getNamedItems(ExecState* exec, JSHTMLFormControlsCollection* collection, PropertyName propertyName) argument
44 const AtomicString& name = propertyNameToAtomicString(propertyName);
56 bool JSHTMLFormControlsCollection::canGetItemsForName(ExecState*, HTMLFormControlsCollection* collection, PropertyName propertyName) argument
58 return collection->hasNamedItem(propertyNameToAtomicString(propertyName));
61 EncodedJSValue JSHTMLFormControlsCollection::nameGetter(ExecState* exec, JSObject* slotBase, EncodedJSValue, PropertyName propertyName) argument
64 return JSValue::encode(getNamedItems(exec, thisObj, propertyName));
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Models/
H A DCSSKeywordCompletions.js34 WebInspector.CSSKeywordCompletions.forProperty = function(propertyName)
37 var isNotPrefixed = propertyName.charAt(0) !== "-";
39 if (propertyName in WebInspector.CSSKeywordCompletions._propertyKeywordMap)
40 acceptedKeywords = acceptedKeywords.concat(WebInspector.CSSKeywordCompletions._propertyKeywordMap[propertyName]);
41 else if (isNotPrefixed && ("-webkit-" + propertyName) in WebInspector.CSSKeywordCompletions._propertyKeywordMap)
42 acceptedKeywords = acceptedKeywords.concat(WebInspector.CSSKeywordCompletions._propertyKeywordMap["-webkit-" + propertyName]);
44 if (propertyName in WebInspector.CSSKeywordCompletions._colorAwareProperties)
46 else if (isNotPrefixed && ("-webkit-" + propertyName) in WebInspector.CSSKeywordCompletions._colorAwareProperties)
50 if (propertyName in WebInspector.CSSKeywordCompletions.InheritedProperties)
52 else if (isNotPrefixed && ("-webkit-" + propertyName) i
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/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.10/WebCore-7600.1.25/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.10/WebCore-7600.1.25/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
H A DTransitionEvent.idl30 [InitializedByEventConstructor] readonly attribute DOMString propertyName;
H A DWebKitTransitionEvent.idl29 [InitializedByEventConstructor] readonly attribute DOMString propertyName;
/macosx-10.10/JavaScriptCore-7600.1.17/runtime/
H A DRegExpMatchesArray.h70 static bool getOwnPropertySlot(JSObject* object, ExecState* exec, PropertyName propertyName, PropertySlot& slot) argument
74 return JSArray::getOwnPropertySlot(thisObject, exec, propertyName, slot);
77 static bool getOwnPropertySlotByIndex(JSObject* object, ExecState* exec, unsigned propertyName, PropertySlot& slot) argument
80 if (propertyName)
84 return JSArray::getOwnPropertySlotByIndex(thisObject, exec, propertyName, slot);
87 static void put(JSCell* cell, ExecState* exec, PropertyName propertyName, JSValue v, PutPropertySlot& slot) argument
91 JSArray::put(thisObject, exec, propertyName, v, slot);
94 static void putByIndex(JSCell* cell, ExecState* exec, unsigned propertyName, JSValue v, bool shouldThrow) argument
98 JSArray::putByIndex(thisObject, exec, propertyName, v, shouldThrow);
101 static bool deleteProperty(JSCell* cell, ExecState* exec, PropertyName propertyName) argument
108 deletePropertyByIndex(JSCell* cell, ExecState* exec, unsigned propertyName) argument
122 defineOwnProperty(JSObject* object, ExecState* exec, PropertyName propertyName, const PropertyDescriptor& descriptor, bool shouldThrow) argument
[all...]

Completed in 197 milliseconds

123456789