HomeSort by relevance Sort by last modified time
    Searched full:propertyname (Results 1 - 25 of 483) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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...]
JSObject.h 79 friend void setUpStaticFunctionSlot(ExecState* exec, const HashEntry* entry, JSObject* thisObj, const Identifier& propertyName, PropertySlot& slot);
98 JSValue get(ExecState*, const Identifier& propertyName) const;
99 JSValue get(ExecState*, unsigned propertyName) const;
101 bool getPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot&);
102 bool getPropertySlot(ExecState*, unsigned propertyName, PropertySlot&);
103 bool getPropertyDescriptor(ExecState*, const Identifier& propertyName, PropertyDescriptor&);
105 virtual bool getOwnPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot&);
106 virtual bool getOwnPropertySlot(ExecState*, unsigned propertyName, PropertySlot&);
109 virtual void put(ExecState*, const Identifier& propertyName, JSValue value, PutPropertySlot&);
110 virtual void put(ExecState*, unsigned propertyName, JSValue value)
    [all...]
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...]
JSObject.cpp 92 bool JSObject::getOwnPropertySlot(ExecState* exec, unsigned propertyName, PropertySlot& slot)
94 return getOwnPropertySlot(exec, Identifier::from(exec, propertyName), slot);
103 void JSObject::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot)
108 if (propertyName == exec->propertyNames().underscoreProto) {
122 if (!putDirectInternal(exec->globalData(), propertyName, value, 0, true, slot) && slot.isStrictMode())
130 if ((m_structure->get(exec->globalData(), propertyName, attributes, specificValue) != WTF::notFound) && attributes & ReadOnly) {
137 if (JSValue gs = obj->getDirect(exec->globalData(), propertyName)) {
163 if (!putDirectInternal(exec->globalData(), propertyName, value, 0, true, slot) && slot.isStrictMode())
168 void JSObject::put(ExecState* exec, unsigned propertyName, JSValue value)
171 put(exec, Identifier::from(exec, propertyName), value, slot)
    [all...]
Lookup.h 181 void setUpStaticFunctionSlot(ExecState*, const HashEntry*, JSObject* thisObject, const Identifier& propertyName, PropertySlot&);
190 inline bool getStaticPropertySlot(ExecState* exec, const HashTable* table, ThisImp* thisObj, const Identifier& propertyName, PropertySlot& slot)
192 const HashEntry* entry = table->entry(exec, propertyName);
195 return thisObj->ParentImp::getOwnPropertySlot(exec, propertyName, slot);
198 setUpStaticFunctionSlot(exec, entry, thisObj, propertyName, slot);
206 inline bool getStaticPropertyDescriptor(ExecState* exec, const HashTable* table, ThisImp* thisObj, const Identifier& propertyName, PropertyDescriptor& descriptor)
208 const HashEntry* entry = table->entry(exec, propertyName);
211 return thisObj->ParentImp::getOwnPropertyDescriptor(exec, propertyName, descriptor);
215 setUpStaticFunctionSlot(exec, entry, thisObj, propertyName, slot);
219 descriptor.setDescriptor(slot.getValue(exec, propertyName), entry->attributes())
    [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);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/
animator1.xml 8 android:propertyName="x"/>
12 android:propertyName="y"
17 android:propertyName="scaleX"/>
21 android:propertyName="scaleY"/>
26 android:propertyName="alpha"/>
animator1-expected-completion60.txt 1 Code completion in animator1.xml for android:propertyName="scal^eX"/>:
  /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/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/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/robolectric/src/main/java/com/xtremelabs/robolectric/util/
PropertiesHelper.java 20 String propertyName = variableMatcher.group(2);
23 propertyValue = properties.getProperty(propertyName);
26 propertyValue = System.getProperty(propertyName);
44 String propertyName = (String) propertyNames.nextElement();
45 String propertyValue = properties.getProperty(propertyName);
47 properties.setProperty(propertyName, expandedPropertyValue);
  /external/webkit/Source/WebCore/bindings/js/
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...]
JSDOMWindowShell.cpp 88 bool JSDOMWindowShell::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
90 return m_window->getOwnPropertySlot(exec, propertyName, slot);
93 bool JSDOMWindowShell::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
95 return m_window->getOwnPropertyDescriptor(exec, propertyName, descriptor);
98 void JSDOMWindowShell::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot)
100 m_window->put(exec, propertyName, value, slot);
103 void JSDOMWindowShell::putWithAttributes(ExecState* exec, const Identifier& propertyName, JSValue value, unsigned attributes)
105 m_window->putWithAttributes(exec, propertyName, value, attributes);
108 bool JSDOMWindowShell::defineOwnProperty(JSC::ExecState* exec, const JSC::Identifier& propertyName, JSC::PropertyDescriptor& descriptor, bool shouldThrow)
110 return m_window->defineOwnProperty(exec, propertyName, descriptor, shouldThrow)
    [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...]
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);
  /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;
  /development/samples/devbytes/animation/PropertyAnimations/res/animator/
combo.xml 5 android:propertyName="alpha"
11 android:propertyName="translationX"
18 android:propertyName="rotation"
25 android:propertyName="scaleX"
31 android:propertyName="scaleY"
  /external/webkit/Source/JavaScriptCore/API/
JSCallbackObject.h 50 JSValue getPrivateProperty(const Identifier& propertyName) const
54 return m_privateProperties->getPrivateProperty(propertyName);
57 void setPrivateProperty(JSGlobalData& globalData, JSCell* owner, const Identifier& propertyName, JSValue value)
61 m_privateProperties->setPrivateProperty(globalData, owner, propertyName, value);
64 void deletePrivateProperty(const Identifier& propertyName)
68 m_privateProperties->deletePrivateProperty(propertyName);
81 JSValue getPrivateProperty(const Identifier& propertyName) const
83 PrivatePropertyMap::const_iterator location = m_propertyMap.find(propertyName.impl());
89 void setPrivateProperty(JSGlobalData& globalData, JSCell* owner, const Identifier& propertyName, JSValue value)
92 m_propertyMap.add(propertyName.impl(), empty).first->second.set(globalData, owner, value)
    [all...]

Completed in 323 milliseconds

1 2 3 4 5 6 7 8 91011>>