Searched refs:propertyName (Results 101 - 125 of 272) sorted by relevance

1234567891011

/external/webkit/Source/JavaScriptGlue/
H A DUserObjectImp.h50 virtual void put(ExecState *exec, const Identifier &propertyName, JSValue value, PutPropertySlot&);
67 static JSValue userObjectGetter(ExecState*, JSValue, const Identifier& propertyName);
H A DUserObjectImp.cpp101 CFStringRef propertyName = (CFStringRef)CFArrayGetValueAtIndex(cfPropertyNames, i); local
102 propertyNames.add(CFStringToIdentifier(propertyName, exec));
110 JSValue UserObjectImp::userObjectGetter(ExecState*, JSValue slotBase, const Identifier& propertyName) argument
116 CFStringRef cfPropName = IdentifierToCFString(propertyName);
125 bool UserObjectImp::getOwnPropertySlot(ExecState *exec, const Identifier& propertyName, PropertySlot& slot) argument
130 CFStringRef cfPropName = IdentifierToCFString(propertyName);
141 if (kjsObject->getPropertySlot(exec, propertyName, slot))
145 return JSObject::getOwnPropertySlot(exec, propertyName, slot);
148 void UserObjectImp::put(ExecState *exec, const Identifier &propertyName, JSValue value, PutPropertySlot&) argument
153 CFStringRef cfPropName = IdentifierToCFString(propertyName);
[all...]
H A DJSValueWrapper.cpp103 JSObjectRef JSValueWrapper::JSObjectCopyProperty(void *data, CFStringRef propertyName) argument
112 JSValue propValue = ptr->GetValue().toObject(exec)->get(exec, CFStringToIdentifier(propertyName, exec));
127 void JSValueWrapper::JSObjectSetProperty(void *data, CFStringRef propertyName, JSObjectRef jsValue) argument
138 objValue->put(exec, CFStringToIdentifier(propertyName, exec), value, slot);
/external/webkit/Source/WebCore/bindings/scripts/test/JS/
H A DJSTestInterface.cpp91 bool JSTestInterfaceConstructor::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) argument
93 return getStaticValueSlot<JSTestInterfaceConstructor, DOMObject>(exec, &JSTestInterfaceConstructorTable, this, propertyName, slot);
96 bool JSTestInterfaceConstructor::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) argument
98 return getStaticValueDescriptor<JSTestInterfaceConstructor, DOMObject>(exec, &JSTestInterfaceConstructorTable, this, propertyName, descriptor);
150 bool JSTestInterface::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) argument
152 return getStaticValueSlot<JSTestInterface, Base>(exec, &JSTestInterfaceTable, this, propertyName, slot);
155 bool JSTestInterface::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) argument
157 return getStaticValueDescriptor<JSTestInterface, Base>(exec, &JSTestInterfaceTable, this, propertyName, descriptor);
H A DJSTestSerializedScriptValueInterface.cpp91 bool JSTestSerializedScriptValueInterfaceConstructor::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) argument
93 return getStaticValueSlot<JSTestSerializedScriptValueInterfaceConstructor, DOMObject>(exec, &JSTestSerializedScriptValueInterfaceConstructorTable, this, propertyName, slot);
96 bool JSTestSerializedScriptValueInterfaceConstructor::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) argument
98 return getStaticValueDescriptor<JSTestSerializedScriptValueInterfaceConstructor, DOMObject>(exec, &JSTestSerializedScriptValueInterfaceConstructorTable, this, propertyName, descriptor);
136 bool JSTestSerializedScriptValueInterface::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) argument
138 return getStaticValueSlot<JSTestSerializedScriptValueInterface, Base>(exec, &JSTestSerializedScriptValueInterfaceTable, this, propertyName, slot);
141 bool JSTestSerializedScriptValueInterface::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) argument
143 return getStaticValueDescriptor<JSTestSerializedScriptValueInterface, Base>(exec, &JSTestSerializedScriptValueInterfaceTable, this, propertyName, descriptor);
/external/webkit/Source/WebCore/bindings/v8/
H A DSerializedScriptValue.h42 static void deserializeAndSetProperty(v8::Handle<v8::Object>, const char* propertyName,
44 static void deserializeAndSetProperty(v8::Handle<v8::Object>, const char* propertyName,
/external/webkit/Source/WebKit/chromium/src/
H A DWebAnimationControllerImpl.cpp71 const WebString& propertyName,
78 propertyName,
70 pauseTransitionAtTime(WebElement& element, const WebString& propertyName, double time) argument
/external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
H A DNPJSObject.cpp159 bool NPJSObject::getProperty(NPIdentifier propertyName, NPVariant* result) argument
161 IdentifierRep* identifierRep = static_cast<IdentifierRep*>(propertyName);
179 bool NPJSObject::setProperty(NPIdentifier propertyName, const NPVariant* value) argument
181 IdentifierRep* identifierRep = static_cast<IdentifierRep*>(propertyName);
200 bool NPJSObject::removeProperty(NPIdentifier propertyName) argument
202 IdentifierRep* identifierRep = static_cast<IdentifierRep*>(propertyName);
354 bool NPJSObject::NP_HasProperty(NPObject* npObject, NPIdentifier propertyName) argument
356 return toNPJSObject(npObject)->hasProperty(propertyName);
359 bool NPJSObject::NP_GetProperty(NPObject* npObject, NPIdentifier propertyName, NPVariant* result) argument
361 return toNPJSObject(npObject)->getProperty(propertyName, resul
364 NP_SetProperty(NPObject* npObject, NPIdentifier propertyName, const NPVariant* value) argument
369 NP_RemoveProperty(NPObject* npObject, NPIdentifier propertyName) argument
[all...]
H A DJSNPObject.cpp229 bool JSNPObject::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) argument
236 NPIdentifier npIdentifier = npIdentifierFromIdentifier(propertyName);
253 bool JSNPObject::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) argument
260 NPIdentifier npIdentifier = npIdentifierFromIdentifier(propertyName);
266 descriptor.setDescriptor(slot.getValue(exec, propertyName), DontDelete);
274 descriptor.setDescriptor(slot.getValue(exec, propertyName), DontDelete | ReadOnly);
281 void JSNPObject::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot&) argument
288 NPIdentifier npIdentifier = npIdentifierFromIdentifier(propertyName);
364 JSValue JSNPObject::propertyGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName) argument
385 NPIdentifier npIdentifier = npIdentifierFromIdentifier(propertyName);
[all...]
/external/webkit/Source/WebKit/win/Interfaces/
H A DDOMCSS.idl138 - (NSString *)getPropertyValue:(NSString *)propertyName;
140 HRESULT getPropertyValue([in] BSTR propertyName, [out, retval] BSTR* result);
143 - (DOMCSSValue *)getPropertyCSSValue:(NSString *)propertyName;
145 HRESULT getPropertyCSSValue([in] BSTR propertyName, [out, retval] IDOMCSSValue** result);
148 - (NSString *)removeProperty:(NSString *)propertyName;
150 HRESULT removeProperty([in] BSTR propertyName, [out, retval] BSTR* result);
153 - (NSString *)getPropertyPriority:(NSString *)propertyName;
155 HRESULT getPropertyPriority([in] BSTR propertyName, [out, retval] BSTR* result);
158 - (void)setProperty:(NSString *)propertyName :(NSString *)value :(NSString *)priority;
160 HRESULT setProperty([in] BSTR propertyName, [i
[all...]
/external/webkit/Source/JavaScriptCore/runtime/
H A DStructure.cpp284 void Structure::despecifyDictionaryFunction(JSGlobalData& globalData, const Identifier& propertyName) argument
286 StringImpl* rep = propertyName.impl();
298 Structure* Structure::addPropertyTransitionToExistingStructure(Structure* structure, const Identifier& propertyName, unsigned attributes, JSCell* specificValue, size_t& offset) argument
303 if (Structure* existingTransition = structure->m_transitionTable.get(propertyName.impl(), attributes)) {
317 Structure* Structure::addPropertyTransition(JSGlobalData& globalData, Structure* structure, const Identifier& propertyName, unsigned attributes, JSCell* specificValue, size_t& offset) argument
326 if (specificValue && structure->m_transitionTable.contains(propertyName.impl(), attributes))
331 ASSERT(!Structure::addPropertyTransitionToExistingStructure(structure, propertyName, attributes, specificValue, offset));
339 offset = transition->putSpecificValue(globalData, propertyName, attributes, specificValue);
351 transition->m_nameInPrevious = propertyName.impl();
367 offset = transition->putSpecificValue(globalData, propertyName, attribute
379 removePropertyTransition(JSGlobalData& globalData, Structure* structure, const Identifier& propertyName, size_t& offset) argument
580 addPropertyWithoutTransition(JSGlobalData& globalData, const Identifier& propertyName, unsigned attributes, JSCell* specificValue) argument
598 removePropertyWithoutTransition(JSGlobalData& globalData, const Identifier& propertyName) argument
643 get(JSGlobalData& globalData, StringImpl* propertyName, unsigned& attributes, JSCell*& specificValue) argument
659 despecifyFunction(JSGlobalData& globalData, const Identifier& propertyName) argument
686 putSpecificValue(JSGlobalData& globalData, const Identifier& propertyName, unsigned attributes, JSCell* specificValue) argument
714 remove(const Identifier& propertyName) argument
[all...]
H A DPropertySlot.h67 JSValue getValue(ExecState* exec, const Identifier& propertyName) const
75 return m_getValue(exec, slotBase(), propertyName);
78 JSValue getValue(ExecState* exec, unsigned propertyName) const
86 return m_getValue(exec, slotBase(), Identifier::from(exec, propertyName));
H A DRegExpObject.h55 virtual bool getOwnPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot&);
57 virtual void put(ExecState*, const Identifier& propertyName, JSValue, PutPropertySlot&);
H A DJSGlobalObject.h160 virtual void putWithAttributes(ExecState*, const Identifier& propertyName, JSValue value, unsigned attributes);
162 virtual void defineGetter(ExecState*, const Identifier& propertyName, JSObject* getterFunc, unsigned attributes);
163 virtual void defineSetter(ExecState*, const Identifier& propertyName, JSObject* setterFunc, unsigned attributes);
167 bool symbolTableHasProperty(const Identifier& propertyName);
323 inline bool JSGlobalObject::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) argument
325 if (JSVariableObject::getOwnPropertySlot(exec, propertyName, slot))
327 return symbolTableGet(propertyName, slot);
330 inline bool JSGlobalObject::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) argument
332 if (symbolTableGet(propertyName, descriptor))
334 return JSVariableObject::getOwnPropertyDescriptor(exec, propertyName, descripto
337 hasOwnPropertyForWrite(ExecState* exec, const Identifier& propertyName) argument
346 symbolTableHasProperty(const Identifier& propertyName) argument
[all...]
H A DJSCell.h128 virtual void put(ExecState*, const Identifier& propertyName, JSValue, PutPropertySlot&);
129 virtual void put(ExecState*, unsigned propertyName, JSValue);
130 virtual bool deleteProperty(ExecState*, const Identifier& propertyName);
131 virtual bool deleteProperty(ExecState*, unsigned propertyName);
142 bool fastGetOwnPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot&);
159 virtual bool getOwnPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot&);
160 virtual bool getOwnPropertySlot(ExecState*, unsigned propertyName, PropertySlot&);
H A DJSValue.h206 JSValue get(ExecState*, const Identifier& propertyName) const;
207 JSValue get(ExecState*, const Identifier& propertyName, PropertySlot&) const;
208 JSValue get(ExecState*, unsigned propertyName) const;
209 JSValue get(ExecState*, unsigned propertyName, PropertySlot&) const;
210 void put(ExecState*, const Identifier& propertyName, JSValue, PutPropertySlot&);
211 void putDirect(ExecState*, const Identifier& propertyName, JSValue, PutPropertySlot&);
212 void put(ExecState*, unsigned propertyName, JSValue);
/external/chromium-trace/trace-viewer/src/
H A Dbase.js192 for (var propertyName in exports) {
197 propertyName);
199 Object.defineProperty(obj, propertyName, propertyDescriptor);
200 mLog(' +' + propertyName);
208 * @param {string} propertyName The name of the property that changed.
212 function dispatchPropertyChange(target, propertyName, newValue, oldValue) {
213 var e = new base.Event(propertyName + 'Change');
214 e.propertyName = propertyName;
H A Dui.js84 for (var propertyName in opt_propertyBag) {
85 el[propertyName] = opt_propertyBag[propertyName];
/external/webkit/Source/JavaScriptCore/API/
H A DJSObjectRef.cpp241 bool JSObjectHasProperty(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName) argument
248 return jsObject->hasProperty(exec, propertyName->identifier(&exec->globalData()));
251 JSValueRef JSObjectGetProperty(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception) argument
258 JSValue jsValue = jsObject->get(exec, propertyName->identifier(&exec->globalData()));
267 void JSObjectSetProperty(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef value, JSPropertyAttributes attributes, JSValueRef* exception) argument
273 Identifier name(propertyName->identifier(&exec->globalData()));
323 bool JSObjectDeleteProperty(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception) argument
330 bool result = jsObject->deleteProperty(exec, propertyName->identifier(&exec->globalData()));
367 JSValueRef JSObjectGetPrivateProperty(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName) argument
373 Identifier name(propertyName
381 JSObjectSetPrivateProperty(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef value) argument
399 JSObjectDeletePrivateProperty(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName) argument
542 JSPropertyNameAccumulatorAddName(JSPropertyNameAccumulatorRef array, JSStringRef propertyName) argument
[all...]
/external/webkit/Source/WebCore/bindings/js/
H A DJSHTMLDocumentCustom.cpp53 bool JSHTMLDocument::canGetItemsForName(ExecState*, HTMLDocument* document, const Identifier& propertyName) argument
55 AtomicStringImpl* atomicPropertyName = findAtomicString(propertyName);
59 JSValue JSHTMLDocument::nameGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName) argument
64 String name = identifierToString(propertyName);
/external/webkit/Source/WebCore/bridge/qt/
H A Dqt_pixmapruntime.h35 virtual JSValue getMethod(ExecState* exec, const Identifier& propertyName);
/external/webkit/Source/WebCore/inspector/
H A DInspectorRuntimeAgent.cpp73 void InspectorRuntimeAgent::setPropertyValue(ErrorString* errorString, const String& objectId, const String& propertyName, const String& expression) argument
77 injectedScript.setPropertyValue(errorString, objectId, propertyName, expression);
/external/chromium/chrome/browser/resources/shared/js/cr/
H A Dui.js84 for (var propertyName in opt_propertyBag) {
85 el[propertyName] = opt_propertyBag[propertyName];
/external/webkit/Source/JavaScriptCore/API/tests/
H A DJSNode.c106 static JSValueRef JSNode_getNodeType(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception) argument
108 UNUSED_PARAM(propertyName);
122 static JSValueRef JSNode_getChildNodes(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception) argument
124 UNUSED_PARAM(propertyName);
132 static JSValueRef JSNode_getFirstChild(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception) argument
135 UNUSED_PARAM(propertyName);
H A Dtestapi.c141 static bool MyObject_hasProperty(JSContextRef context, JSObjectRef object, JSStringRef propertyName) argument
146 if (JSStringIsEqualToUTF8CString(propertyName, "alwaysOne")
147 || JSStringIsEqualToUTF8CString(propertyName, "cantFind")
148 || JSStringIsEqualToUTF8CString(propertyName, "throwOnGet")
149 || JSStringIsEqualToUTF8CString(propertyName, "myPropertyName")
150 || JSStringIsEqualToUTF8CString(propertyName, "hasPropertyLie")
151 || JSStringIsEqualToUTF8CString(propertyName, "0")) {
158 static JSValueRef MyObject_getProperty(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception) argument
163 if (JSStringIsEqualToUTF8CString(propertyName, "alwaysOne")) {
167 if (JSStringIsEqualToUTF8CString(propertyName, "myPropertyNam
191 MyObject_setProperty(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef value, JSValueRef* exception) argument
208 MyObject_deleteProperty(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception) argument
229 JSStringRef propertyName; local
474 Base_get(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception) argument
483 Base_set(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef value, JSValueRef* exception) argument
553 Derived_get(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception) argument
562 Derived_set(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef value, JSValueRef* exception) argument
699 globalObject_get(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception) argument
708 globalObject_set(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef value, JSValueRef* exception) argument
1005 JSStringRef propertyName = JSStringCreateWithUTF8CString("aProperty"); local
[all...]

Completed in 321 milliseconds

1234567891011