HomeSort by relevance Sort by last modified time
    Searched refs:propertyName (Results 101 - 125 of 279) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/webkit/Source/WebCore/bindings/js/
JSWorkerContextCustom.cpp 70 bool JSWorkerContext::getOwnPropertySlotDelegate(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
73 if (JSGlobalObject::getOwnPropertySlot(exec, propertyName, slot))
78 bool JSWorkerContext::getOwnPropertyDescriptorDelegate(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
81 if (JSGlobalObject::getOwnPropertyDescriptor(exec, propertyName, descriptor))
JSHTMLDocumentCustom.cpp 53 bool JSHTMLDocument::canGetItemsForName(ExecState*, HTMLDocument* document, const Identifier& propertyName)
55 AtomicStringImpl* atomicPropertyName = findAtomicString(propertyName);
59 JSValue JSHTMLDocument::nameGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName)
64 String name = identifierToString(propertyName);
  /external/webkit/Source/WebCore/bridge/objc/
objc_runtime.h 95 ObjcFallbackObjectImp(ExecState*, JSGlobalObject*, ObjcInstance*, const Identifier& propertyName);
99 const Identifier& propertyName() const { return _item; }
115 virtual void put(ExecState*, const Identifier& propertyName, JSValue, PutPropertySlot&);
117 virtual bool deleteProperty(ExecState*, const Identifier& propertyName);
  /external/webkit/Source/WebKit/win/
DOMCSSClasses.cpp 100 /* [in] */ BSTR propertyName,
103 WTF::String propertyNameString(propertyName);
112 /* [in] */ BSTR /*propertyName*/,
120 /* [in] */ BSTR /*propertyName*/,
128 /* [in] */ BSTR /*propertyName*/,
136 /* [in] */ BSTR propertyName,
140 WTF::String propertyNameString(propertyName);
  /external/webkit/Source/JavaScriptCore/API/
JSObjectRef.h 117 @param propertyName A JSString containing the name of the property look up.
121 bool HasProperty(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName);
130 (*JSObjectHasPropertyCallback) (JSContextRef ctx, JSObjectRef object, JSStringRef propertyName);
137 @param propertyName A JSString containing the name of the property to get.
142 JSValueRef GetProperty(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception);
147 (*JSObjectGetPropertyCallback) (JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception);
154 @param propertyName A JSString containing the name of the property to set.
160 bool SetProperty(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef value, JSValueRef* exception);
165 (*JSObjectSetPropertyCallback) (JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef value, JSValueRef* exception);
172 @param propertyName A JSString containing the name of the property to delete
    [all...]
JSObjectRef.cpp 241 bool JSObjectHasProperty(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName)
248 return jsObject->hasProperty(exec, propertyName->identifier(&exec->globalData()));
251 JSValueRef JSObjectGetProperty(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception)
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)
273 Identifier name(propertyName->identifier(&exec->globalData()));
323 bool JSObjectDeleteProperty(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception)
330 bool result = jsObject->deleteProperty(exec, propertyName->identifier(&exec->globalData()));
367 JSValueRef JSObjectGetPrivateProperty(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName)
373 Identifier name(propertyName->identifier(&exec->globalData()))
    [all...]
  /external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/
PluginTest.h 49 DEFINE_HAS_MEMBER_CHECK(hasProperty, bool, (NPIdentifier propertyName));
50 DEFINE_HAS_MEMBER_CHECK(getProperty, bool, (NPIdentifier propertyName, NPVariant* result));
75 bool NPN_RemoveProperty(NPObject*, NPIdentifier propertyName);
142 bool hasProperty(NPIdentifier propertyName)
148 bool getProperty(NPIdentifier propertyName, NPVariant* result)
192 static bool NP_HasProperty(NPObject* npObject, NPIdentifier propertyName)
194 return static_cast<T*>(npObject)->hasProperty(propertyName);
197 static bool NP_GetProperty(NPObject* npObject, NPIdentifier propertyName, NPVariant* result)
199 return static_cast<T*>(npObject)->getProperty(propertyName, result);
  /external/webkit/Source/JavaScriptCore/runtime/
JSGlobalObject.h 160 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)
325 if (JSVariableObject::getOwnPropertySlot(exec, propertyName, slot))
327 return symbolTableGet(propertyName, slot);
330 inline bool JSGlobalObject::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
332 if (symbolTableGet(propertyName, descriptor))
334 return JSVariableObject::getOwnPropertyDescriptor(exec, propertyName, descriptor)
    [all...]
JSArray.h 71 virtual bool getOwnPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot&);
72 virtual bool getOwnPropertySlot(ExecState*, unsigned propertyName, PropertySlot&);
74 virtual void put(ExecState*, unsigned propertyName, JSValue); // FIXME: Make protected and add setItem.
145 virtual void put(ExecState*, const Identifier& propertyName, JSValue, PutPropertySlot&);
146 virtual bool deleteProperty(ExecState*, const Identifier& propertyName);
147 virtual bool deleteProperty(ExecState*, unsigned propertyName);
155 bool getOwnPropertySlotSlowCase(ExecState*, unsigned propertyName, PropertySlot&);
156 void putSlowCase(ExecState*, unsigned propertyName, JSValue);
Structure.cpp 284 void Structure::despecifyDictionaryFunction(JSGlobalData& globalData, const Identifier& propertyName)
286 StringImpl* rep = propertyName.impl();
298 Structure* Structure::addPropertyTransitionToExistingStructure(Structure* structure, const Identifier& propertyName, unsigned attributes, JSCell* specificValue, size_t& offset)
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)
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, attributes, specificValue)
    [all...]
PropertySlot.h 67 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));
  /external/webkit/Source/JavaScriptGlue/
UserObjectImp.h 50 virtual void put(ExecState *exec, const Identifier &propertyName, JSValue value, PutPropertySlot&);
67 static JSValue userObjectGetter(ExecState*, JSValue, const Identifier& propertyName);
UserObjectImp.cpp 101 CFStringRef propertyName = (CFStringRef)CFArrayGetValueAtIndex(cfPropertyNames, i);
102 propertyNames.add(CFStringToIdentifier(propertyName, exec));
110 JSValue UserObjectImp::userObjectGetter(ExecState*, JSValue slotBase, const Identifier& propertyName)
116 CFStringRef cfPropName = IdentifierToCFString(propertyName);
125 bool UserObjectImp::getOwnPropertySlot(ExecState *exec, const Identifier& propertyName, PropertySlot& slot)
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&)
153 CFStringRef cfPropName = IdentifierToCFString(propertyName);
    [all...]
JSValueWrapper.cpp 103 JSObjectRef JSValueWrapper::JSObjectCopyProperty(void *data, CFStringRef propertyName)
112 JSValue propValue = ptr->GetValue().toObject(exec)->get(exec, CFStringToIdentifier(propertyName, exec));
127 void JSValueWrapper::JSObjectSetProperty(void *data, CFStringRef propertyName, JSObjectRef jsValue)
138 objValue->put(exec, CFStringToIdentifier(propertyName, exec), value, slot);
  /external/webkit/Source/WebCore/bindings/scripts/test/JS/
JSTestInterface.cpp 91 bool JSTestInterfaceConstructor::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
93 return getStaticValueSlot<JSTestInterfaceConstructor, DOMObject>(exec, &JSTestInterfaceConstructorTable, this, propertyName, slot);
96 bool JSTestInterfaceConstructor::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
98 return getStaticValueDescriptor<JSTestInterfaceConstructor, DOMObject>(exec, &JSTestInterfaceConstructorTable, this, propertyName, descriptor);
150 bool JSTestInterface::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
152 return getStaticValueSlot<JSTestInterface, Base>(exec, &JSTestInterfaceTable, this, propertyName, slot);
155 bool JSTestInterface::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
157 return getStaticValueDescriptor<JSTestInterface, Base>(exec, &JSTestInterfaceTable, this, propertyName, descriptor);
JSTestSerializedScriptValueInterface.cpp 91 bool JSTestSerializedScriptValueInterfaceConstructor::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
93 return getStaticValueSlot<JSTestSerializedScriptValueInterfaceConstructor, DOMObject>(exec, &JSTestSerializedScriptValueInterfaceConstructorTable, this, propertyName, slot);
96 bool JSTestSerializedScriptValueInterfaceConstructor::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
98 return getStaticValueDescriptor<JSTestSerializedScriptValueInterfaceConstructor, DOMObject>(exec, &JSTestSerializedScriptValueInterfaceConstructorTable, this, propertyName, descriptor);
136 bool JSTestSerializedScriptValueInterface::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
138 return getStaticValueSlot<JSTestSerializedScriptValueInterface, Base>(exec, &JSTestSerializedScriptValueInterfaceTable, this, propertyName, slot);
141 bool JSTestSerializedScriptValueInterface::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
143 return getStaticValueDescriptor<JSTestSerializedScriptValueInterface, Base>(exec, &JSTestSerializedScriptValueInterfaceTable, this, propertyName, descriptor);
  /external/webkit/Source/WebCore/bindings/v8/
SerializedScriptValue.h 42 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/
WebAnimationControllerImpl.cpp 71 const WebString& propertyName,
78 propertyName,
  /sdk/layoutlib_api/src/com/android/ide/common/rendering/api/
RenderSession.java 135 * @param propertyName
142 public Result setProperty(Object objectView, String propertyName, String propertyValue) {
154 * @param propertyName
160 public Result getProperty(Object objectView, String propertyName) {
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
NPJSObject.cpp 159 bool NPJSObject::getProperty(NPIdentifier propertyName, NPVariant* result)
161 IdentifierRep* identifierRep = static_cast<IdentifierRep*>(propertyName);
179 bool NPJSObject::setProperty(NPIdentifier propertyName, const NPVariant* value)
181 IdentifierRep* identifierRep = static_cast<IdentifierRep*>(propertyName);
200 bool NPJSObject::removeProperty(NPIdentifier propertyName)
202 IdentifierRep* identifierRep = static_cast<IdentifierRep*>(propertyName);
354 bool NPJSObject::NP_HasProperty(NPObject* npObject, NPIdentifier propertyName)
356 return toNPJSObject(npObject)->hasProperty(propertyName);
359 bool NPJSObject::NP_GetProperty(NPObject* npObject, NPIdentifier propertyName, NPVariant* result)
361 return toNPJSObject(npObject)->getProperty(propertyName, result)
    [all...]
  /external/webkit/Source/WebKit/win/Interfaces/
DOMCSS.idl 138 - (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, [in] BSTR value, [in] BSTR priority)
    [all...]
  /external/webkit/Source/WebCore/bridge/jni/jsc/
JavaInstanceJSC.h 56 virtual JSValue getMethod(ExecState* exec, const Identifier& propertyName);
  /external/webkit/Source/WebCore/bridge/qt/
qt_pixmapruntime.h 35 virtual JSValue getMethod(ExecState* exec, const Identifier& propertyName);
  /external/webkit/Source/WebCore/inspector/
InspectorRuntimeAgent.h 59 void setPropertyValue(ErrorString*, const String& objectId, const String& propertyName, const String& expression);
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/
BridgeRenderSession.java 72 public Result getProperty(Object objectView, String propertyName) {
74 return super.getProperty(objectView, propertyName);
78 public Result setProperty(Object objectView, String propertyName, String propertyValue) {
80 return super.setProperty(objectView, propertyName, propertyValue);

Completed in 445 milliseconds

1 2 3 45 6 7 8 91011>>