/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...] |
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...] |
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...] |
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...] |
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...] |
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);
|
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...] |
/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/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.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...] |
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&);
|
/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...] |
PropertyChangeListenerProxy.java | 29 String propertyName; 35 * @param propertyName 40 public PropertyChangeListenerProxy(String propertyName, 43 this.propertyName = propertyName; 52 return propertyName;
|
/external/webkit/WebCore/bindings/js/ |
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...] |
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...] |
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...] |
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...] |
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...] |
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));
|
/external/webkit/WebCore/bridge/ |
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...] |