Searched defs:propertyName (Results 1 - 25 of 166) sorted by relevance

1234567

/external/webkit/Source/WebCore/bindings/js/
H A DJSDOMMimeTypeArrayCustom.cpp31 bool JSDOMMimeTypeArray::canGetItemsForName(ExecState*, DOMMimeTypeArray* mimeTypeArray, const Identifier& propertyName) argument
33 return mimeTypeArray->canGetItemsForName(identifierToAtomicString(propertyName));
36 JSValue JSDOMMimeTypeArray::nameGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName) argument
39 return toJS(exec, thisObj->impl()->namedItem(identifierToAtomicString(propertyName)));
H A DJSDOMPluginArrayCustom.cpp31 bool JSDOMPluginArray::canGetItemsForName(ExecState*, DOMPluginArray* pluginArray, const Identifier& propertyName) argument
33 return pluginArray->canGetItemsForName(identifierToAtomicString(propertyName));
36 JSValue JSDOMPluginArray::nameGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName) argument
39 return toJS(exec, thisObj->impl()->namedItem(identifierToAtomicString(propertyName)));
H A DJSDOMPluginCustom.cpp30 bool JSDOMPlugin::canGetItemsForName(ExecState*, DOMPlugin* plugin, const Identifier& propertyName) argument
32 return plugin->canGetItemsForName(identifierToAtomicString(propertyName));
35 JSValue JSDOMPlugin::nameGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName) argument
38 return toJS(exec, thisObj->impl()->namedItem(identifierToAtomicString(propertyName)));
H A DJSDataGridColumnListCustom.cpp41 bool JSDataGridColumnList::canGetItemsForName(ExecState*, DataGridColumnList* impl, const Identifier& propertyName) argument
43 return impl->itemWithName(identifierToAtomicString(propertyName));
46 JSValue JSDataGridColumnList::nameGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName) argument
49 return toJS(exec, thisObj->globalObject(), thisObj->impl()->itemWithName(identifierToAtomicString(propertyName)));
H A DJSHTMLFormElementCustom.cpp40 bool JSHTMLFormElement::canGetItemsForName(ExecState*, HTMLFormElement* form, const Identifier& propertyName) argument
43 form->getNamedElements(identifierToAtomicString(propertyName), namedItems);
47 JSValue JSHTMLFormElement::nameGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName) argument
53 form->getNamedElements(identifierToAtomicString(propertyName), namedItems);
H A DJSHTMLFrameSetElementCustom.cpp44 bool JSHTMLFrameSetElement::canGetItemsForName(ExecState*, HTMLFrameSetElement* frameSet, const Identifier& propertyName) argument
46 Node* frame = frameSet->children()->namedItem(identifierToAtomicString(propertyName));
50 JSValue JSHTMLFrameSetElement::nameGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName) argument
55 Node* frame = element->children()->namedItem(identifierToAtomicString(propertyName));
H A DJSHTMLAppletElementCustom.cpp36 bool JSHTMLAppletElement::getOwnPropertySlotDelegate(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) argument
38 return runtimeObjectCustomGetOwnPropertySlot(exec, propertyName, slot, this);
41 bool JSHTMLAppletElement::getOwnPropertyDescriptorDelegate(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) argument
43 return runtimeObjectCustomGetOwnPropertyDescriptor(exec, propertyName, descriptor, this);
46 bool JSHTMLAppletElement::putDelegate(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot) argument
48 return runtimeObjectCustomPut(exec, propertyName, value, this, slot);
H A DJSHTMLEmbedElementCustom.cpp36 bool JSHTMLEmbedElement::getOwnPropertySlotDelegate(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) argument
38 return runtimeObjectCustomGetOwnPropertySlot(exec, propertyName, slot, this);
41 bool JSHTMLEmbedElement::getOwnPropertyDescriptorDelegate(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) argument
43 return runtimeObjectCustomGetOwnPropertyDescriptor(exec, propertyName, descriptor, this);
46 bool JSHTMLEmbedElement::putDelegate(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot) argument
48 return runtimeObjectCustomPut(exec, propertyName, value, this, slot);
H A DJSHTMLObjectElementCustom.cpp36 bool JSHTMLObjectElement::getOwnPropertySlotDelegate(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) argument
38 return runtimeObjectCustomGetOwnPropertySlot(exec, propertyName, slot, this);
41 bool JSHTMLObjectElement::getOwnPropertyDescriptorDelegate(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) argument
43 return runtimeObjectCustomGetOwnPropertyDescriptor(exec, propertyName, descriptor, this);
46 bool JSHTMLObjectElement::putDelegate(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot) argument
48 return runtimeObjectCustomPut(exec, propertyName, value, this, slot);
H A DJSStyleSheetListCustom.cpp50 bool JSStyleSheetList::canGetItemsForName(ExecState*, StyleSheetList* styleSheetList, const Identifier& propertyName) argument
52 return styleSheetList->getNamedItem(identifierToString(propertyName));
55 JSValue JSStyleSheetList::nameGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName) argument
58 HTMLStyleElement* element = thisObj->impl()->getNamedItem(identifierToString(propertyName));
H A DJSDOMStringMapCustom.cpp36 bool JSDOMStringMap::canGetItemsForName(ExecState*, DOMStringMap* impl, const Identifier& propertyName) argument
38 return impl->contains(identifierToAtomicString(propertyName));
41 JSValue JSDOMStringMap::nameGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName) argument
44 return jsString(exec, thisObj->impl()->item(identifierToAtomicString(propertyName)));
58 bool JSDOMStringMap::deleteProperty(ExecState* exec, const Identifier& propertyName) argument
64 if (getStaticValueSlot<JSDOMStringMap, Base>(exec, s_info.propHashTable(exec), this, propertyName, slot))
68 if (prototype.isObject() && asObject(prototype)->hasProperty(exec, propertyName))
72 m_impl->deleteItem(identifierToString(propertyName), ec);
78 bool JSDOMStringMap::putDelegate(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot&) argument
84 if (getStaticValueSlot<JSDOMStringMap, Base>(exec, s_info.propHashTable(exec), this, propertyName, slo
[all...]
H A DJSHTMLAllCollectionCustom.cpp44 static JSValue getNamedItems(ExecState* exec, JSHTMLAllCollection* collection, const Identifier& propertyName) argument
47 collection->impl()->namedItems(identifierToAtomicString(propertyName), namedItems);
109 bool JSHTMLAllCollection::canGetItemsForName(ExecState*, HTMLAllCollection* collection, const Identifier& propertyName) argument
112 collection->namedItems(identifierToAtomicString(propertyName), namedItems);
116 JSValue JSHTMLAllCollection::nameGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName) argument
119 return getNamedItems(exec, thisObj, propertyName);
H A DJSStorageCustom.cpp39 bool JSStorage::canGetItemsForName(ExecState*, Storage* impl, const Identifier& propertyName) argument
41 return impl->contains(identifierToString(propertyName));
44 JSValue JSStorage::nameGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName) argument
47 return jsStringOrNull(exec, thisObj->impl()->getItem(identifierToString(propertyName)));
50 bool JSStorage::deleteProperty(ExecState* exec, const Identifier& propertyName) argument
56 if (getStaticValueSlot<JSStorage, Base>(exec, s_info.propHashTable(exec), this, propertyName, slot))
60 if (prototype.isObject() && asObject(prototype)->hasProperty(exec, propertyName))
63 m_impl->removeItem(identifierToString(propertyName));
76 bool JSStorage::putDelegate(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot&) argument
82 if (getStaticValueSlot<JSStorage, Base>(exec, s_info.propHashTable(exec), this, propertyName, slo
[all...]
/external/webkit/Source/JavaScriptCore/runtime/
H A DJSStaticScopeObject.cpp49 void JSStaticScopeObject::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot&) argument
51 if (symbolTablePut(exec->globalData(), propertyName, value))
57 void JSStaticScopeObject::putWithAttributes(ExecState* exec, const Identifier& propertyName, JSValue value, unsigned attributes) argument
59 if (symbolTablePutWithAttributes(exec->globalData(), propertyName, value, attributes))
70 bool JSStaticScopeObject::getOwnPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot& slot) argument
72 return symbolTableGet(propertyName, slot);
H A DJSVariableObject.cpp37 bool JSVariableObject::deleteProperty(ExecState* exec, const Identifier& propertyName) argument
39 if (symbolTable().contains(propertyName.impl()))
42 return JSObject::deleteProperty(exec, propertyName);
61 bool JSVariableObject::symbolTableGet(const Identifier& propertyName, PropertyDescriptor& descriptor) argument
63 SymbolTableEntry entry = symbolTable().inlineGet(propertyName.impl());
H A DRegExpMatchesArray.h33 virtual bool getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) argument
37 return JSArray::getOwnPropertySlot(exec, propertyName, slot);
40 virtual bool getOwnPropertySlot(ExecState* exec, unsigned propertyName, PropertySlot& slot) argument
44 return JSArray::getOwnPropertySlot(exec, propertyName, slot);
47 virtual bool getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) argument
51 return JSArray::getOwnPropertyDescriptor(exec, propertyName, descriptor);
54 virtual void put(ExecState* exec, const Identifier& propertyName, JSValue v, PutPropertySlot& slot) argument
58 JSArray::put(exec, propertyName, v, slot);
61 virtual void put(ExecState* exec, unsigned propertyName, JSValue v) argument
65 JSArray::put(exec, propertyName,
68 deleteProperty(ExecState* exec, const Identifier& propertyName) argument
75 deleteProperty(ExecState* exec, unsigned propertyName) argument
[all...]
H A DLookup.cpp71 void setUpStaticFunctionSlot(ExecState* exec, const HashEntry* entry, JSObject* thisObj, const Identifier& propertyName, PropertySlot& slot) argument
76 WriteBarrierBase<Unknown>* location = thisObj->getDirectLocation(exec->globalData(), propertyName);
83 function = new (exec) JSFunction(exec, globalObject, globalObject->functionStructure(), entry->functionLength(), propertyName, exec->globalData().getHostFunction(entry->function(), entry->generator()));
86 function = new (exec) JSFunction(exec, globalObject, globalObject->functionStructure(), entry->functionLength(), propertyName, entry->function());
88 thisObj->putDirectFunction(exec->globalData(), propertyName, function, entry->attributes());
89 location = thisObj->getDirectLocation(exec->globalData(), propertyName);
H A DStringObject.cpp53 bool StringObject::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) argument
55 if (internalValue()->getStringPropertySlot(exec, propertyName, slot))
57 return JSObject::getOwnPropertySlot(exec, propertyName, slot);
60 bool StringObject::getOwnPropertySlot(ExecState* exec, unsigned propertyName, PropertySlot& slot) argument
62 if (internalValue()->getStringPropertySlot(exec, propertyName, slot))
64 return JSObject::getOwnPropertySlot(exec, Identifier::from(exec, propertyName), slot);
67 bool StringObject::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) argument
69 if (internalValue()->getStringPropertyDescriptor(exec, propertyName, descriptor))
71 return JSObject::getOwnPropertyDescriptor(exec, propertyName, descriptor);
74 void StringObject::put(ExecState* exec, const Identifier& propertyName, JSValu argument
81 deleteProperty(ExecState* exec, const Identifier& propertyName) argument
[all...]
/external/webkit/Source/WebCore/dom/
H A DWebKitTransitionEvent.cpp39 WebKitTransitionEvent::WebKitTransitionEvent(const AtomicString& type, const String& propertyName, double elapsedTime) argument
41 , m_propertyName(propertyName)
53 const String& propertyName,
61 m_propertyName = propertyName;
65 const String& WebKitTransitionEvent::propertyName() const function in class:WebCore::WebKitTransitionEvent
50 initWebKitTransitionEvent(const AtomicString& type, bool canBubbleArg, bool cancelableArg, const String& propertyName, double elapsedTime) argument
/external/webkit/Source/WebCore/inspector/
H A DInspectorState.h56 bool getBoolean(const String& propertyName);
57 String getString(const String& propertyName);
58 long getLong(const String& propertyName);
59 PassRefPtr<InspectorObject> getObject(const String& propertyName);
61 void setBoolean(const String& propertyName, bool value) { setValue(propertyName, InspectorBasicValue::create(value)); } argument
62 void setString(const String& propertyName, const String& value) { setValue(propertyName, InspectorString::create(value)); } argument
63 void setLong(const String& propertyName, long value) { setValue(propertyName, InspectorBasicValu argument
64 setObject(const String& propertyName, PassRefPtr<InspectorObject> value) argument
[all...]
/external/webkit/Source/WebCore/plugins/
H A DDOMMimeTypeArray.cpp59 bool DOMMimeTypeArray::canGetItemsForName(const AtomicString& propertyName) argument
66 if (mimes[i].type == propertyName)
72 PassRefPtr<DOMMimeType> DOMMimeTypeArray::namedItem(const AtomicString& propertyName) argument
79 if (mimes[i].type == propertyName)
/external/webkit/Source/WebKit/chromium/src/
H A DWebAnimationControllerImpl.cpp71 const WebString& propertyName,
78 propertyName,
70 pauseTransitionAtTime(WebElement& element, const WebString& propertyName, double time) argument
/external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/
H A DNPRuntimeObjectFromDestroyedPlugin.cpp44 bool hasProperty(NPIdentifier propertyName) argument
46 return propertyName == pluginTest()->NPN_GetStringIdentifier("testObject");
49 bool getProperty(NPIdentifier propertyName, NPVariant* result) argument
51 if (propertyName != pluginTest()->NPN_GetStringIdentifier("testObject"))
H A DNPRuntimeRemoveProperty.cpp59 NPIdentifier propertyName;
64 propertyName = pluginTest()->NPN_GetStringIdentifier(propertyNameString.c_str());
67 propertyName = pluginTest()->NPN_GetIntIdentifier(number);
70 pluginTest()->NPN_RemoveProperty(NPVARIANT_TO_OBJECT(arguments[0]), propertyName); local
/external/webkit/Tools/WebKitTestRunner/InjectedBundle/Bindings/
H A DJSWrapper.h49 inline void setProperty(JSContextRef context, JSObjectRef object, const char* propertyName, JSWrappable* value, JSPropertyAttributes attributes, JSValueRef* exception) argument
51 JSRetainPtr<JSStringRef> propertyNameString(Adopt, JSStringCreateWithUTF8CString(propertyName));

Completed in 1437 milliseconds

1234567