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

1234567891011

/external/webkit/Source/WebCore/inspector/front-end/
H A DCSSKeywordCompletions.js32 forProperty: function(propertyName)
35 if (propertyName in this._propertyKeywordMap)
36 acceptedKeywords = acceptedKeywords.concat(this._propertyKeywordMap[propertyName]);
37 if (propertyName in this._colorAwareProperties)
39 if (propertyName in WebInspector.StylesSidebarPane.InheritedProperties)
/external/webkit/Source/WebCore/bindings/js/
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 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 DJSCSSStyleDeclarationCustom.cpp68 static bool hasCSSPropertyNamePrefix(const Identifier& propertyName, const char* prefix) argument
74 ASSERT(propertyName.length());
77 if (toASCIILower(propertyName.characters()[0]) != prefix[0])
80 unsigned length = propertyName.length();
83 return isASCIIUpper(propertyName.characters()[i]);
84 if (propertyName.characters()[i] != prefix[i])
90 static String cssPropertyName(const Identifier& propertyName, bool* hadPixelOrPosPrefix = 0) argument
95 unsigned length = propertyName.length();
104 if (hasCSSPropertyNamePrefix(propertyName, "css"))
106 else if (hasCSSPropertyNamePrefix(propertyName, "pixe
143 canGetItemsForName(ExecState*, CSSStyleDeclaration*, const Identifier& propertyName) argument
150 nameGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName) argument
179 putDelegate(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot&) argument
[all...]
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 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...]
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 DJSDOMWindowShell.cpp88 bool JSDOMWindowShell::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) argument
90 return m_window->getOwnPropertySlot(exec, propertyName, slot);
93 bool JSDOMWindowShell::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) argument
95 return m_window->getOwnPropertyDescriptor(exec, propertyName, descriptor);
98 void JSDOMWindowShell::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot) argument
100 m_window->put(exec, propertyName, value, slot);
103 void JSDOMWindowShell::putWithAttributes(ExecState* exec, const Identifier& propertyName, JSValue value, unsigned attributes) argument
105 m_window->putWithAttributes(exec, propertyName, value, attributes);
108 bool JSDOMWindowShell::defineOwnProperty(JSC::ExecState* exec, const JSC::Identifier& propertyName, JSC::PropertyDescriptor& descriptor, bool shouldThrow) argument
110 return m_window->defineOwnProperty(exec, propertyName, descripto
113 deleteProperty(ExecState* exec, const Identifier& propertyName) argument
128 defineGetter(ExecState* exec, const Identifier& propertyName, JSObject* getterFunction, unsigned attributes) argument
133 defineSetter(ExecState* exec, const Identifier& propertyName, JSObject* setterFunction, unsigned attributes) argument
138 lookupGetter(ExecState* exec, const Identifier& propertyName) argument
143 lookupSetter(ExecState* exec, const Identifier& propertyName) argument
[all...]
/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...]
H A DInspectorState.cpp71 void InspectorState::setValue(const String& propertyName, PassRefPtr<InspectorValue> value) argument
73 m_properties->setValue(propertyName, value);
77 bool InspectorState::getBoolean(const String& propertyName) argument
79 InspectorObject::iterator it = m_properties->find(propertyName);
86 String InspectorState::getString(const String& propertyName) argument
88 InspectorObject::iterator it = m_properties->find(propertyName);
95 long InspectorState::getLong(const String& propertyName) argument
97 InspectorObject::iterator it = m_properties->find(propertyName);
104 PassRefPtr<InspectorObject> InspectorState::getObject(const String& propertyName) argument
106 InspectorObject::iterator it = m_properties->find(propertyName);
[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/JavaScriptCore/runtime/
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 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 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...]
H A DJSByteArray.cpp58 bool JSByteArray::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) argument
61 unsigned index = propertyName.toUInt32(ok);
66 return JSObject::getOwnPropertySlot(exec, propertyName, slot);
69 bool JSByteArray::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) argument
72 unsigned index = propertyName.toUInt32(ok);
77 return JSObject::getOwnPropertyDescriptor(exec, propertyName, descriptor);
80 bool JSByteArray::getOwnPropertySlot(ExecState* exec, unsigned propertyName, PropertySlot& slot) argument
82 if (canAccessIndex(propertyName)) {
83 slot.setValue(getIndex(exec, propertyName));
86 return JSObject::getOwnPropertySlot(exec, Identifier::from(exec, propertyName), slo
89 put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot) argument
100 put(ExecState* exec, unsigned propertyName, JSValue value) argument
[all...]
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());
/external/webkit/Source/WebCore/css/
H A DCSSStyleDeclaration.idl33 [ConvertNullStringTo=Null] DOMString getPropertyValue(in DOMString propertyName);
34 CSSValue getPropertyCSSValue(in DOMString propertyName);
35 [ConvertNullStringTo=Null] DOMString removeProperty(in DOMString propertyName)
37 [ConvertNullStringTo=Null] DOMString getPropertyPriority(in DOMString propertyName);
38 [OldStyleObjC] void setProperty(in DOMString propertyName,
48 [ConvertNullStringTo=Null] DOMString getPropertyShorthand(in DOMString propertyName);
49 boolean isPropertyImplicit(in DOMString propertyName);
/external/webkit/Source/JavaScriptCore/debugger/
H A DDebuggerActivation.cpp54 bool DebuggerActivation::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) argument
56 return m_activation->getOwnPropertySlot(exec, propertyName, slot);
59 void DebuggerActivation::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot) argument
61 m_activation->put(exec, propertyName, value, slot);
64 void DebuggerActivation::putWithAttributes(ExecState* exec, const Identifier& propertyName, JSValue value, unsigned attributes) argument
66 m_activation->putWithAttributes(exec, propertyName, value, attributes);
69 bool DebuggerActivation::deleteProperty(ExecState* exec, const Identifier& propertyName) argument
71 return m_activation->deleteProperty(exec, propertyName);
79 bool DebuggerActivation::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) argument
81 return m_activation->getOwnPropertyDescriptor(exec, propertyName, descripto
84 defineGetter(ExecState* exec, const Identifier& propertyName, JSObject* getterFunction, unsigned attributes) argument
89 defineSetter(ExecState* exec, const Identifier& propertyName, JSObject* setterFunction, unsigned attributes) argument
94 lookupGetter(ExecState* exec, const Identifier& propertyName) argument
99 lookupSetter(ExecState* exec, const Identifier& propertyName) argument
[all...]
H A 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 attributes);
44 virtual bool deleteProperty(ExecState*, const Identifier& propertyName);
47 virtual void defineGetter(ExecState*, const Identifier& propertyName, JSObject* getterFunction, unsigned attributes);
48 virtual void defineSetter(ExecState*, const Identifier& propertyName, JSObject* setterFunction, unsigned attributes);
49 virtual JSValue lookupGetter(ExecState*, const Identifier& propertyName);
50 virtual JSValue lookupSetter(ExecState*, const Identifier& propertyName);
/external/webkit/Source/JavaScriptCore/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);
/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"))

Completed in 341 milliseconds

1234567891011