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

12 3 4 5 6 7 8 9

  /libcore/luni/src/main/java/java/beans/
PropertyChangeSupport.java 73 * @param propertyName
80 public void firePropertyChange(String propertyName, Object oldValue,
82 PropertyChangeEvent event = createPropertyChangeEvent(propertyName,
93 * @param propertyName
102 public void fireIndexedPropertyChange(String propertyName, int index,
107 propertyName, oldValue, newValue, index));
116 * @param propertyName
121 public synchronized void removePropertyChangeListener(String propertyName,
123 if ((propertyName != null) && (listener != null)) {
125 selectedPropertiesChangeListeners.get(propertyName);
    [all...]
  /external/webkit/WebCore/bindings/v8/custom/
V8CSSStyleDeclarationCustom.cpp 58 static bool hasCSSPropertyNamePrefix(const String& propertyName, const char* prefix)
64 ASSERT(propertyName.length());
67 if (WTF::toASCIILower(propertyName[0]) != prefix[0])
70 unsigned length = propertyName.length();
73 return WTF::isASCIIUpper(propertyName[i]);
74 if (propertyName[i] != prefix[i])
100 String propertyName = toWebCoreString(v8PropertyName);
103 CSSPropertyInfo* propInfo = map.get(propertyName);
105 unsigned length = propertyName.length();
115 if (hasCSSPropertyNamePrefix(propertyName, "css")
    [all...]
  /external/webkit/WebCore/css/
CSSStyleDeclaration.cpp 40 PassRefPtr<CSSValue> CSSStyleDeclaration::getPropertyCSSValue(const String& propertyName)
42 int propID = cssPropertyID(propertyName);
48 String CSSStyleDeclaration::getPropertyValue(const String &propertyName)
50 int propID = cssPropertyID(propertyName);
56 String CSSStyleDeclaration::getPropertyPriority(const String& propertyName)
58 int propID = cssPropertyID(propertyName);
64 String CSSStyleDeclaration::getPropertyShorthand(const String& propertyName)
66 int propID = cssPropertyID(propertyName);
75 bool CSSStyleDeclaration::isPropertyImplicit(const String& propertyName)
77 int propID = cssPropertyID(propertyName);
    [all...]
  /external/webkit/JavaScriptCore/runtime/
JSObject.cpp 86 bool JSObject::getOwnPropertySlot(ExecState* exec, unsigned propertyName, PropertySlot& slot)
88 return getOwnPropertySlot(exec, Identifier::from(exec, propertyName), slot);
97 void JSObject::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot)
102 if (propertyName == exec->propertyNames().underscoreProto) {
126 putDirectInternal(exec->globalData(), propertyName, value, 0, true, slot);
133 if ((m_structure->get(propertyName, attributes, specificValue) != WTF::notFound) && attributes & ReadOnly)
137 if (JSValue gs = obj->getDirect(propertyName)) {
163 putDirectInternal(exec->globalData(), propertyName, value, 0, true, slot);
167 void JSObject::put(ExecState* exec, unsigned propertyName, JSValue value)
170 put(exec, Identifier::from(exec, propertyName), value, slot)
    [all...]
JSObject.h 94 JSValue get(ExecState*, const Identifier& propertyName) const;
95 JSValue get(ExecState*, unsigned propertyName) const;
97 bool getPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot&);
98 bool getPropertySlot(ExecState*, unsigned propertyName, PropertySlot&);
99 bool getPropertyDescriptor(ExecState*, const Identifier& propertyName, PropertyDescriptor&);
101 virtual bool getOwnPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot&);
102 virtual bool getOwnPropertySlot(ExecState*, unsigned propertyName, PropertySlot&);
105 virtual void put(ExecState*, const Identifier& propertyName, JSValue value, PutPropertySlot&);
106 virtual void put(ExecState*, unsigned propertyName, JSValue value);
108 virtual void putWithAttributes(ExecState*, const Identifier& propertyName, JSValue value, unsigned attributes, bool checkReadOnly, PutPropertySlot& slot)
    [all...]
Lookup.h 165 void setUpStaticFunctionSlot(ExecState*, const HashEntry*, JSObject* thisObject, const Identifier& propertyName, PropertySlot&);
174 inline bool getStaticPropertySlot(ExecState* exec, const HashTable* table, ThisImp* thisObj, const Identifier& propertyName, PropertySlot& slot)
176 const HashEntry* entry = table->entry(exec, propertyName);
179 return thisObj->ParentImp::getOwnPropertySlot(exec, propertyName, slot);
182 setUpStaticFunctionSlot(exec, entry, thisObj, propertyName, slot);
190 inline bool getStaticPropertyDescriptor(ExecState* exec, const HashTable* table, ThisImp* thisObj, const Identifier& propertyName, PropertyDescriptor& descriptor)
192 const HashEntry* entry = table->entry(exec, propertyName);
195 return thisObj->ParentImp::getOwnPropertyDescriptor(exec, propertyName, descriptor);
199 setUpStaticFunctionSlot(exec, entry, thisObj, propertyName, slot);
203 descriptor.setDescriptor(slot.getValue(exec, propertyName), entry->attributes())
    [all...]
JSNotAnObject.h 84 virtual bool getOwnPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot&);
85 virtual bool getOwnPropertySlot(ExecState*, unsigned propertyName, PropertySlot&);
88 virtual void put(ExecState*, const Identifier& propertyName, JSValue, PutPropertySlot&);
89 virtual void put(ExecState*, unsigned propertyName, JSValue);
91 virtual bool deleteProperty(ExecState*, const Identifier& propertyName);
92 virtual bool deleteProperty(ExecState*, unsigned propertyName);
JSFunction.cpp 146 bool JSFunction::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
149 return Base::getOwnPropertySlot(exec, propertyName, slot);
151 if (propertyName == exec->propertyNames().prototype) {
152 JSValue* location = getDirectLocation(propertyName);
158 location = getDirectLocation(propertyName);
164 if (propertyName == exec->propertyNames().arguments) {
169 if (propertyName == exec->propertyNames().length) {
174 if (propertyName == exec->propertyNames().caller) {
179 return Base::getOwnPropertySlot(exec, propertyName, slot);
182 bool JSFunction::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor
    [all...]
JSActivation.cpp 71 bool JSActivation::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
73 if (symbolTableGet(propertyName, slot))
76 if (JSValue* location = getDirectLocation(propertyName)) {
82 if (propertyName == exec->propertyNames().arguments) {
94 void JSActivation::put(ExecState*, const Identifier& propertyName, JSValue value, PutPropertySlot& slot)
98 if (symbolTablePut(propertyName, value))
105 putDirect(propertyName, value, 0, true, slot);
109 void JSActivation::putWithAttributes(ExecState* exec, const Identifier& propertyName, JSValue value, unsigned attributes)
113 if (symbolTablePutWithAttributes(propertyName, value, attributes))
121 JSObject::putWithAttributes(exec, propertyName, value, attributes, true, slot)
    [all...]
ObjectPrototype.h 34 virtual bool getOwnPropertySlot(ExecState*, unsigned propertyName, PropertySlot&);
StringObject.h 36 virtual bool getOwnPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot&);
37 virtual bool getOwnPropertySlot(ExecState*, unsigned propertyName, PropertySlot&);
40 virtual void put(ExecState* exec, const Identifier& propertyName, JSValue, PutPropertySlot&);
41 virtual bool deleteProperty(ExecState*, const Identifier& propertyName);
  /external/webkit/WebCore/dom/
WebKitTransitionEvent.h 49 const String& propertyName,
52 const String& propertyName() const;
59 WebKitTransitionEvent(const AtomicString& type, const String& propertyName, double elapsedTime);
WebKitTransitionEvent.idl 29 readonly attribute DOMString propertyName;
  /external/webkit/WebCore/bindings/js/
JSHTMLFrameSetElementCustom.cpp 44 bool JSHTMLFrameSetElement::canGetItemsForName(ExecState*, HTMLFrameSetElement* frameSet, const Identifier& propertyName)
46 Node* frame = frameSet->children()->namedItem(propertyName);
50 JSValue JSHTMLFrameSetElement::nameGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot& slot)
55 Node* frame = element->children()->namedItem(propertyName);
JSNodeListCustom.cpp 54 bool JSNodeList::canGetItemsForName(ExecState*, NodeList* impl, const Identifier& propertyName)
56 return impl->itemWithName(propertyName);
59 JSValue JSNodeList::nameGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot& slot)
62 return toJS(exec, thisObj->impl()->itemWithName(propertyName));
JSStyleSheetListCustom.cpp 50 bool JSStyleSheetList::canGetItemsForName(ExecState*, StyleSheetList* styleSheetList, const Identifier& propertyName)
52 return styleSheetList->getNamedItem(propertyName);
55 JSValue JSStyleSheetList::nameGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot& slot)
58 HTMLStyleElement* element = thisObj->impl()->getNamedItem(propertyName);
JSDOMWindowShell.h 73 virtual bool getOwnPropertySlot(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::PropertySlot&);
74 virtual bool getOwnPropertyDescriptor(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::PropertyDescriptor&);
75 virtual void put(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::JSValue, JSC::PutPropertySlot&);
76 virtual void putWithAttributes(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::JSValue, unsigned attributes);
77 virtual bool deleteProperty(JSC::ExecState*, const JSC::Identifier& propertyName);
80 virtual void defineGetter(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::JSObject* getterFunction, unsigned attributes);
81 virtual void defineSetter(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::JSObject* setterFunction, unsigned attributes);
82 virtual bool defineOwnProperty(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::PropertyDescriptor&, bool shouldThrow);
83 virtual JSC::JSValue lookupGetter(JSC::ExecState*, const JSC::Identifier& propertyName);
84 virtual JSC::JSValue lookupSetter(JSC::ExecState*, const JSC::Identifier& propertyName);
    [all...]
JSHistoryCustom.cpp 41 static JSValue nonCachingStaticBackFunctionGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot&)
43 return new (exec) NativeFunctionWrapper(exec, exec->lexicalGlobalObject()->prototypeFunctionStructure(), 0, propertyName, jsHistoryPrototypeFunctionBack);
46 static JSValue nonCachingStaticForwardFunctionGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot&)
48 return new (exec) NativeFunctionWrapper(exec, exec->lexicalGlobalObject()->prototypeFunctionStructure(), 0, propertyName, jsHistoryPrototypeFunctionForward);
51 static JSValue nonCachingStaticGoFunctionGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot&)
53 return new (exec) NativeFunctionWrapper(exec, exec->lexicalGlobalObject()->prototypeFunctionStructure(), 1, propertyName, jsHistoryPrototypeFunctionGo);
56 bool JSHistory::getOwnPropertySlotDelegate(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
68 const HashEntry* entry = JSHistoryPrototype::s_info.propHashTable(exec)->entry(exec, propertyName);
85 if (propertyName == exec->propertyNames().toString) {
96 bool JSHistory::getOwnPropertyDescriptorDelegate(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor
    [all...]
JSLocationCustom.cpp 42 static JSValue nonCachingStaticReplaceFunctionGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot&)
44 return new (exec) NativeFunctionWrapper(exec, exec->lexicalGlobalObject()->prototypeFunctionStructure(), 1, propertyName, jsLocationPrototypeFunctionReplace);
47 static JSValue nonCachingStaticReloadFunctionGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot&)
49 return new (exec) NativeFunctionWrapper(exec, exec->lexicalGlobalObject()->prototypeFunctionStructure(), 0, propertyName, jsLocationPrototypeFunctionReload);
52 static JSValue nonCachingStaticAssignFunctionGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot&)
54 return new (exec) NativeFunctionWrapper(exec, exec->lexicalGlobalObject()->prototypeFunctionStructure(), 1, propertyName, jsLocationPrototypeFunctionAssign);
57 bool JSLocation::getOwnPropertySlotDelegate(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
75 const HashEntry* entry = JSLocationPrototype::s_info.propHashTable(exec)->entry(exec, propertyName);
98 bool JSLocation::getOwnPropertyDescriptorDelegate(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
111 const HashEntry* entry = JSLocationPrototype::s_info.propHashTable(exec)->entry(exec, propertyName);
    [all...]
  /external/webkit/JavaScriptGlue/
JSValueWrapper.h 50 static JSObjectRef JSObjectCopyProperty(void *data, CFStringRef propertyName);
51 static void JSObjectSetProperty(void *data, CFStringRef propertyName, JSObjectRef jsValue);
  /external/webkit/WebCore/bridge/
runtime_array.cpp 72 bool RuntimeArray::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
74 if (propertyName == exec->propertyNames().length) {
80 unsigned index = propertyName.toArrayIndex(&ok);
88 return JSObject::getOwnPropertySlot(exec, propertyName, slot);
91 bool RuntimeArray::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
93 if (propertyName == exec->propertyNames().length) {
96 descriptor.setDescriptor(slot.getValue(exec, propertyName), ReadOnly | DontDelete | DontEnum);
101 unsigned index = propertyName.toArrayIndex(&ok);
106 descriptor.setDescriptor(slot.getValue(exec, propertyName), DontDelete | DontEnum);
111 return JSObject::getOwnPropertyDescriptor(exec, propertyName, descriptor)
    [all...]
runtime_object.cpp 70 JSValue RuntimeObjectImp::fallbackObjectGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot& slot)
81 JSValue result = aClass->fallbackObject(exec, instance.get(), propertyName);
88 JSValue RuntimeObjectImp::fieldGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot& slot)
99 Field* aField = aClass->fieldNamed(propertyName, instance.get());
107 JSValue RuntimeObjectImp::methodGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot& slot)
118 MethodList methodList = aClass->methodsNamed(propertyName, instance.get());
119 JSValue result = new (exec) RuntimeMethod(exec, propertyName, methodList);
126 bool RuntimeObjectImp::getOwnPropertySlot(ExecState *exec, const Identifier& propertyName, PropertySlot& slot)
141 Field *aField = aClass->fieldNamed(propertyName, instance.get());
149 MethodList methodList = aClass->methodsNamed(propertyName, instance.get())
    [all...]
  /external/webkit/WebCore/plugins/
MimeTypeArray.h 44 bool canGetItemsForName(const AtomicString& propertyName);
45 PassRefPtr<MimeType> namedItem(const AtomicString& propertyName);
Plugin.h 46 bool canGetItemsForName(const AtomicString& propertyName);
47 PassRefPtr<MimeType> namedItem(const AtomicString& propertyName);
PluginArray.h 44 bool canGetItemsForName(const AtomicString& propertyName);
45 PassRefPtr<Plugin> namedItem(const AtomicString& propertyName);

Completed in 509 milliseconds

12 3 4 5 6 7 8 9