/libcore/luni/src/main/java/java/beans/ |
PropertyChangeListenerProxy.java | 29 String propertyName; 35 * @param propertyName 40 public PropertyChangeListenerProxy(String propertyName, 43 this.propertyName = propertyName; 52 return propertyName;
|
PropertyChangeEvent.java | 30 String propertyName; 43 * @param propertyName 48 * the <code>propertyName</code> is <code>null</code> or the 52 * <code>propertyName</code> is <code>null</code> or the new 55 public PropertyChangeEvent(Object source, String propertyName, 59 this.propertyName = propertyName; 71 return propertyName;
|
/external/webkit/Source/JavaScriptCore/runtime/ |
RegExpMatchesArray.h | 33 virtual bool getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) 37 return JSArray::getOwnPropertySlot(exec, propertyName, slot); 40 virtual bool getOwnPropertySlot(ExecState* exec, unsigned propertyName, PropertySlot& slot) 44 return JSArray::getOwnPropertySlot(exec, propertyName, slot); 47 virtual bool getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) 51 return JSArray::getOwnPropertyDescriptor(exec, propertyName, descriptor); 54 virtual void put(ExecState* exec, const Identifier& propertyName, JSValue v, PutPropertySlot& slot) 58 JSArray::put(exec, propertyName, v, slot); 61 virtual void put(ExecState* exec, unsigned propertyName, JSValue v) 65 JSArray::put(exec, propertyName, v) [all...] |
JSStaticScopeObject.cpp | 49 void JSStaticScopeObject::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot&) 51 if (symbolTablePut(exec->globalData(), propertyName, value)) 57 void JSStaticScopeObject::putWithAttributes(ExecState* exec, const Identifier& propertyName, JSValue value, unsigned attributes) 59 if (symbolTablePutWithAttributes(exec->globalData(), propertyName, value, attributes)) 70 bool JSStaticScopeObject::getOwnPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot& slot) 72 return symbolTableGet(propertyName, slot);
|
StringObject.cpp | 53 bool StringObject::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) 55 if (internalValue()->getStringPropertySlot(exec, propertyName, slot)) 57 return JSObject::getOwnPropertySlot(exec, propertyName, slot); 60 bool StringObject::getOwnPropertySlot(ExecState* exec, unsigned propertyName, PropertySlot& slot) 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) 69 if (internalValue()->getStringPropertyDescriptor(exec, propertyName, descriptor)) 71 return JSObject::getOwnPropertyDescriptor(exec, propertyName, descriptor); 74 void StringObject::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot [all...] |
JSByteArray.cpp | 58 bool JSByteArray::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) 61 unsigned index = propertyName.toUInt32(ok); 66 return JSObject::getOwnPropertySlot(exec, propertyName, slot); 69 bool JSByteArray::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) 72 unsigned index = propertyName.toUInt32(ok); 77 return JSObject::getOwnPropertyDescriptor(exec, propertyName, descriptor); 80 bool JSByteArray::getOwnPropertySlot(ExecState* exec, unsigned propertyName, PropertySlot& slot) 82 if (canAccessIndex(propertyName)) { 83 slot.setValue(getIndex(exec, propertyName)); 86 return JSObject::getOwnPropertySlot(exec, Identifier::from(exec, propertyName), slot) [all...] |
/external/webkit/Source/WebCore/bindings/js/ |
JSHTMLAppletElementCustom.cpp | 36 bool JSHTMLAppletElement::getOwnPropertySlotDelegate(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) 38 return runtimeObjectCustomGetOwnPropertySlot(exec, propertyName, slot, this); 41 bool JSHTMLAppletElement::getOwnPropertyDescriptorDelegate(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) 43 return runtimeObjectCustomGetOwnPropertyDescriptor(exec, propertyName, descriptor, this); 46 bool JSHTMLAppletElement::putDelegate(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot) 48 return runtimeObjectCustomPut(exec, propertyName, value, this, slot);
|
JSHTMLEmbedElementCustom.cpp | 36 bool JSHTMLEmbedElement::getOwnPropertySlotDelegate(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) 38 return runtimeObjectCustomGetOwnPropertySlot(exec, propertyName, slot, this); 41 bool JSHTMLEmbedElement::getOwnPropertyDescriptorDelegate(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) 43 return runtimeObjectCustomGetOwnPropertyDescriptor(exec, propertyName, descriptor, this); 46 bool JSHTMLEmbedElement::putDelegate(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot) 48 return runtimeObjectCustomPut(exec, propertyName, value, this, slot);
|
JSHTMLObjectElementCustom.cpp | 36 bool JSHTMLObjectElement::getOwnPropertySlotDelegate(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) 38 return runtimeObjectCustomGetOwnPropertySlot(exec, propertyName, slot, this); 41 bool JSHTMLObjectElement::getOwnPropertyDescriptorDelegate(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) 43 return runtimeObjectCustomGetOwnPropertyDescriptor(exec, propertyName, descriptor, this); 46 bool JSHTMLObjectElement::putDelegate(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot) 48 return runtimeObjectCustomPut(exec, propertyName, value, this, slot);
|
JSDOMMimeTypeArrayCustom.cpp | 31 bool JSDOMMimeTypeArray::canGetItemsForName(ExecState*, DOMMimeTypeArray* mimeTypeArray, const Identifier& propertyName) 33 return mimeTypeArray->canGetItemsForName(identifierToAtomicString(propertyName)); 36 JSValue JSDOMMimeTypeArray::nameGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName) 39 return toJS(exec, thisObj->impl()->namedItem(identifierToAtomicString(propertyName)));
|
JSDOMPluginArrayCustom.cpp | 31 bool JSDOMPluginArray::canGetItemsForName(ExecState*, DOMPluginArray* pluginArray, const Identifier& propertyName) 33 return pluginArray->canGetItemsForName(identifierToAtomicString(propertyName)); 36 JSValue JSDOMPluginArray::nameGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName) 39 return toJS(exec, thisObj->impl()->namedItem(identifierToAtomicString(propertyName)));
|
JSDOMPluginCustom.cpp | 30 bool JSDOMPlugin::canGetItemsForName(ExecState*, DOMPlugin* plugin, const Identifier& propertyName) 32 return plugin->canGetItemsForName(identifierToAtomicString(propertyName)); 35 JSValue JSDOMPlugin::nameGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName) 38 return toJS(exec, thisObj->impl()->namedItem(identifierToAtomicString(propertyName)));
|
JSCSSStyleDeclarationCustom.cpp | 68 static bool hasCSSPropertyNamePrefix(const Identifier& propertyName, const char* prefix) 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) 95 unsigned length = propertyName.length(); 104 if (hasCSSPropertyNamePrefix(propertyName, "css")) 106 else if (hasCSSPropertyNamePrefix(propertyName, "pixel")) [all...] |
JSDOMStringMapCustom.cpp | 36 bool JSDOMStringMap::canGetItemsForName(ExecState*, DOMStringMap* impl, const Identifier& propertyName) 38 return impl->contains(identifierToAtomicString(propertyName)); 41 JSValue JSDOMStringMap::nameGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName) 44 return jsString(exec, thisObj->impl()->item(identifierToAtomicString(propertyName))); 58 bool JSDOMStringMap::deleteProperty(ExecState* exec, const Identifier& propertyName) 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&) 84 if (getStaticValueSlot<JSDOMStringMap, Base>(exec, s_info.propHashTable(exec), this, propertyName, slot) [all...] |
JSStorageCustom.cpp | 39 bool JSStorage::canGetItemsForName(ExecState*, Storage* impl, const Identifier& propertyName) 41 return impl->contains(identifierToString(propertyName)); 44 JSValue JSStorage::nameGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName) 47 return jsStringOrNull(exec, thisObj->impl()->getItem(identifierToString(propertyName))); 50 bool JSStorage::deleteProperty(ExecState* exec, const Identifier& propertyName) 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&) 82 if (getStaticValueSlot<JSStorage, Base>(exec, s_info.propHashTable(exec), this, propertyName, slot) [all...] |
JSDataGridColumnListCustom.cpp | 41 bool JSDataGridColumnList::canGetItemsForName(ExecState*, DataGridColumnList* impl, const Identifier& propertyName) 43 return impl->itemWithName(identifierToAtomicString(propertyName)); 46 JSValue JSDataGridColumnList::nameGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName) 49 return toJS(exec, thisObj->globalObject(), thisObj->impl()->itemWithName(identifierToAtomicString(propertyName)));
|
/external/webkit/Source/WebCore/inspector/ |
InspectorState.h | 56 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)); } 62 void setString(const String& propertyName, const String& value) { setValue(propertyName, InspectorString::create(value)); } 63 void setLong(const String& propertyName, long value) { setValue(propertyName, InspectorBasicValue::create((double)value)); [all...] |
InspectorState.cpp | 71 void InspectorState::setValue(const String& propertyName, PassRefPtr<InspectorValue> value) 73 m_properties->setValue(propertyName, value); 77 bool InspectorState::getBoolean(const String& propertyName) 79 InspectorObject::iterator it = m_properties->find(propertyName); 86 String InspectorState::getString(const String& propertyName) 88 InspectorObject::iterator it = m_properties->find(propertyName); 95 long InspectorState::getLong(const String& propertyName) 97 InspectorObject::iterator it = m_properties->find(propertyName); 104 PassRefPtr<InspectorObject> InspectorState::getObject(const String& propertyName) 106 InspectorObject::iterator it = m_properties->find(propertyName); [all...] |
/external/webkit/Source/WebCore/dom/ |
WebKitTransitionEvent.cpp | 39 WebKitTransitionEvent::WebKitTransitionEvent(const AtomicString& type, const String& propertyName, double elapsedTime) 41 , m_propertyName(propertyName) 53 const String& propertyName, 61 m_propertyName = propertyName; 65 const String& WebKitTransitionEvent::propertyName() const
|
/external/webkit/Source/WebCore/inspector/front-end/ |
CSSKeywordCompletions.js | 32 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/css/ |
CSSStyleDeclaration.idl | 33 [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/ |
DebuggerActivation.cpp | 54 bool DebuggerActivation::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) 56 return m_activation->getOwnPropertySlot(exec, propertyName, slot); 59 void DebuggerActivation::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot) 61 m_activation->put(exec, propertyName, value, slot); 64 void DebuggerActivation::putWithAttributes(ExecState* exec, const Identifier& propertyName, JSValue value, unsigned attributes) 66 m_activation->putWithAttributes(exec, propertyName, value, attributes); 69 bool DebuggerActivation::deleteProperty(ExecState* exec, const Identifier& propertyName) 71 return m_activation->deleteProperty(exec, propertyName); 79 bool DebuggerActivation::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) 81 return m_activation->getOwnPropertyDescriptor(exec, propertyName, descriptor) [all...] |
DebuggerActivation.h | 41 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/ |
JSObjectRefPrivate.h | 40 @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/ |
NPRuntimeObjectFromDestroyedPlugin.cpp | 44 bool hasProperty(NPIdentifier propertyName) 46 return propertyName == pluginTest()->NPN_GetStringIdentifier("testObject"); 49 bool getProperty(NPIdentifier propertyName, NPVariant* result) 51 if (propertyName != pluginTest()->NPN_GetStringIdentifier("testObject"))
|