HomeSort by relevance Sort by last modified time
    Searched refs:propertyName (Results 1 - 25 of 211) sorted by null

1 2 3 4 5 6 7 8 9

  /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;
IndexedPropertyChangeEvent.java 36 * @param propertyName
41 * the <code>propertyName</code> is <code>null</code> or the
45 * <code>propertyName</code> is <code>null</code> or the new
50 public IndexedPropertyChangeEvent(Object source, String propertyName,
52 super(source, propertyName, oldValue, newValue);
  /external/webkit/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, impl(), slot);
56 bool JSHTMLAppletElement::canGetItemsForName(ExecState*, HTMLAppletElement*, const Identifier& propertyName)
58 return propertyName == "__apple_runtime_object";
61 JSValue JSHTMLAppletElement::nameGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot& slot)
63 return runtimeObjectGetter(exec, propertyName, slot)
    [all...]
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, impl(), slot);
56 bool JSHTMLEmbedElement::canGetItemsForName(ExecState*, HTMLEmbedElement*, const Identifier& propertyName)
58 return propertyName == "__apple_runtime_object";
61 JSValue JSHTMLEmbedElement::nameGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot& slot)
63 return runtimeObjectGetter(exec, propertyName, slot)
    [all...]
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, impl(), slot);
56 bool JSHTMLObjectElement::canGetItemsForName(ExecState*, HTMLObjectElement*, const Identifier& propertyName)
58 return propertyName == "__apple_runtime_object";
61 JSValue JSHTMLObjectElement::nameGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot& slot)
63 return runtimeObjectGetter(exec, propertyName, slot)
    [all...]
JSDataGridColumnListCustom.cpp 41 bool JSDataGridColumnList::canGetItemsForName(ExecState*, DataGridColumnList* impl, const Identifier& propertyName)
43 return impl->itemWithName(propertyName);
46 JSValue JSDataGridColumnList::nameGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot& slot)
49 return toJS(exec, thisObj->globalObject(), thisObj->impl()->itemWithName(propertyName));
JSMimeTypeArrayCustom.cpp 31 bool JSMimeTypeArray::canGetItemsForName(ExecState*, MimeTypeArray* mimeTypeArray, const Identifier& propertyName)
33 return mimeTypeArray->canGetItemsForName(propertyName);
36 JSValue JSMimeTypeArray::nameGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot& slot)
39 return toJS(exec, thisObj->impl()->namedItem(propertyName));
JSPluginArrayCustom.cpp 31 bool JSPluginArray::canGetItemsForName(ExecState*, PluginArray* pluginArray, const Identifier& propertyName)
33 return pluginArray->canGetItemsForName(propertyName);
36 JSValue JSPluginArray::nameGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot& slot)
39 return toJS(exec, thisObj->impl()->namedItem(propertyName));
JSPluginCustom.cpp 30 bool JSPlugin::canGetItemsForName(ExecState*, Plugin* plugin, const Identifier& propertyName)
32 return plugin->canGetItemsForName(propertyName);
35 JSValue JSPlugin::nameGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot& slot)
38 return toJS(exec, thisObj->impl()->namedItem(propertyName));
JSCSSStyleDeclarationCustom.cpp 63 static bool hasCSSPropertyNamePrefix(const Identifier& propertyName, const char* prefix)
69 ASSERT(propertyName.size());
72 if (toASCIILower(propertyName.data()[0]) != prefix[0])
75 unsigned length = propertyName.size();
78 return isASCIIUpper(propertyName.data()[i]);
79 if (propertyName.data()[i] != prefix[i])
85 static String cssPropertyName(const Identifier& propertyName, bool* hadPixelOrPosPrefix = 0)
90 unsigned length = propertyName.size();
99 if (hasCSSPropertyNamePrefix(propertyName, "css"))
101 else if (hasCSSPropertyNamePrefix(propertyName, "pixel"))
    [all...]
JSStorageCustom.cpp 39 bool JSStorage::canGetItemsForName(ExecState*, Storage* impl, const Identifier& propertyName)
41 return impl->contains(propertyName);
44 JSValue JSStorage::nameGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot& slot)
47 return jsStringOrNull(exec, thisObj->impl()->getItem(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(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...]
JSNamedNodeMapCustom.cpp 38 bool JSNamedNodeMap::canGetItemsForName(ExecState*, NamedNodeMap* impl, const Identifier& propertyName)
40 return impl->getNamedItem(propertyName);
43 JSValue JSNamedNodeMap::nameGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot& slot)
46 return toJS(exec, thisObj->impl()->getNamedItem(propertyName));
JSDOMWindowShell.cpp 87 bool JSDOMWindowShell::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
89 return m_window->getOwnPropertySlot(exec, propertyName, slot);
92 bool JSDOMWindowShell::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
94 return m_window->getOwnPropertyDescriptor(exec, propertyName, descriptor);
97 void JSDOMWindowShell::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot)
99 m_window->put(exec, propertyName, value, slot);
102 void JSDOMWindowShell::putWithAttributes(ExecState* exec, const Identifier& propertyName, JSValue value, unsigned attributes)
104 m_window->putWithAttributes(exec, propertyName, value, attributes);
107 bool JSDOMWindowShell::defineOwnProperty(JSC::ExecState* exec, const JSC::Identifier& propertyName, JSC::PropertyDescriptor& descriptor, bool shouldThrow)
109 return m_window->defineOwnProperty(exec, propertyName, descriptor, shouldThrow)
    [all...]
  /external/webkit/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 45 void JSStaticScopeObject::put(ExecState*, const Identifier& propertyName, JSValue value, PutPropertySlot&)
47 if (symbolTablePut(propertyName, value))
53 void JSStaticScopeObject::putWithAttributes(ExecState*, const Identifier& propertyName, JSValue value, unsigned attributes)
55 if (symbolTablePutWithAttributes(propertyName, value, attributes))
72 inline bool JSStaticScopeObject::getOwnPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot& slot)
74 return symbolTableGet(propertyName, slot);
StringObject.cpp 50 bool StringObject::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
52 if (internalValue()->getStringPropertySlot(exec, propertyName, slot))
54 return JSObject::getOwnPropertySlot(exec, propertyName, slot);
57 bool StringObject::getOwnPropertySlot(ExecState* exec, unsigned propertyName, PropertySlot& slot)
59 if (internalValue()->getStringPropertySlot(exec, propertyName, slot))
61 return JSObject::getOwnPropertySlot(exec, Identifier::from(exec, propertyName), slot);
64 bool StringObject::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
66 if (internalValue()->getStringPropertyDescriptor(exec, propertyName, descriptor))
68 return JSObject::getOwnPropertyDescriptor(exec, propertyName, descriptor);
71 void StringObject::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot
    [all...]
JSByteArray.cpp 60 bool JSByteArray::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
63 unsigned index = propertyName.toUInt32(&ok, false);
68 return JSObject::getOwnPropertySlot(exec, propertyName, slot);
71 bool JSByteArray::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
74 unsigned index = propertyName.toUInt32(&ok, false);
79 return JSObject::getOwnPropertyDescriptor(exec, propertyName, descriptor);
82 bool JSByteArray::getOwnPropertySlot(ExecState* exec, unsigned propertyName, PropertySlot& slot)
84 if (canAccessIndex(propertyName)) {
85 slot.setValue(getIndex(exec, propertyName));
88 return JSObject::getOwnPropertySlot(exec, Identifier::from(exec, propertyName), slot)
    [all...]
JSVariableObject.cpp 37 bool JSVariableObject::deleteProperty(ExecState* exec, const Identifier& propertyName)
39 if (symbolTable().contains(propertyName.ustring().rep()))
42 return JSObject::deleteProperty(exec, propertyName);
61 bool JSVariableObject::symbolTableGet(const Identifier& propertyName, PropertyDescriptor& descriptor)
63 SymbolTableEntry entry = symbolTable().inlineGet(propertyName.ustring().rep());
  /external/webkit/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/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/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);
CSSStyleDeclaration.h 49 PassRefPtr<CSSValue> getPropertyCSSValue(const String& propertyName);
50 String getPropertyValue(const String& propertyName);
51 String getPropertyPriority(const String& propertyName);
52 String getPropertyShorthand(const String& propertyName);
53 bool isPropertyImplicit(const String& propertyName);
61 void setProperty(const String& propertyName, const String& value, ExceptionCode&);
62 void setProperty(const String& propertyName, const String& value, const String& priority, ExceptionCode&);
63 String removeProperty(const String& propertyName, ExceptionCode&);
  /external/webkit/WebCore/inspector/front-end/
Settings.js 74 _installSetting: function(name, propertyName, defaultValue)
76 this.__defineGetter__(name, this._get.bind(this, propertyName));
77 this.__defineSetter__(name, this._set.bind(this, propertyName));
78 if (!(propertyName in this._store)) {
79 this._store[propertyName] = defaultValue;
83 _get: function(propertyName)
85 return this._store[propertyName];
88 _set: function(propertyName, newValue)
90 this._store[propertyName] = newValue;

Completed in 197 milliseconds

1 2 3 4 5 6 7 8 9