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

1 2 3 4 56 7 8 9

  /external/webkit/WebKitTools/DumpRenderTree/win/
EventSender.cpp 63 static JSValueRef getDragModeCallback(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception)
68 static bool setDragModeCallback(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef value, JSValueRef* exception)
74 static JSValueRef getConstantCallback(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception)
76 if (JSStringIsEqualToUTF8CString(propertyName, "WM_KEYDOWN"))
78 if (JSStringIsEqualToUTF8CString(propertyName, "WM_KEYUP"))
80 if (JSStringIsEqualToUTF8CString(propertyName, "WM_CHAR"))
82 if (JSStringIsEqualToUTF8CString(propertyName, "WM_DEADCHAR"))
84 if (JSStringIsEqualToUTF8CString(propertyName, "WM_SYSKEYDOWN"))
86 if (JSStringIsEqualToUTF8CString(propertyName, "WM_SYSKEYUP"))
88 if (JSStringIsEqualToUTF8CString(propertyName, "WM_SYSCHAR")
    [all...]
  /frameworks/base/core/java/android/os/
Debug.java     [all...]
  /external/emma/core/java12/com/vladium/util/exception/
ExceptionCommon.java 371 * @return property value corresponding to 'propertyName' [null if lookup fails]
373 private static String lookup (Class namespace, final String propertyName)
375 if (propertyName == null) return null;
406 propertyValue = rb.getString (propertyName);
423 propertyValue = ROOT_RESOURCE_BUNDLE.getString (propertyName);
  /external/webkit/JavaScriptCore/runtime/
JSActivation.h 60 virtual bool deleteProperty(ExecState*, const Identifier& propertyName);
JSArray.cpp 227 bool JSArray::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
229 if (propertyName == exec->propertyNames().length) {
235 unsigned i = propertyName.toArrayIndex(&isArrayIndex);
239 return JSObject::getOwnPropertySlot(exec, propertyName, slot);
242 bool JSArray::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
244 if (propertyName == exec->propertyNames().length) {
250 unsigned i = propertyName.toArrayIndex(&isArrayIndex);
270 return JSObject::getOwnPropertyDescriptor(exec, propertyName, descriptor);
274 void JSArray::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot)
277 unsigned i = propertyName.toArrayIndex(&isArrayIndex)
    [all...]
JSGlobalObject.cpp 154 void JSGlobalObject::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot)
158 if (symbolTablePut(propertyName, value))
160 JSVariableObject::put(exec, propertyName, value, slot);
163 void JSGlobalObject::putWithAttributes(ExecState* exec, const Identifier& propertyName, JSValue value, unsigned attributes)
167 if (symbolTablePutWithAttributes(propertyName, value, attributes))
170 JSValue valueBefore = getDirect(propertyName);
172 JSVariableObject::put(exec, propertyName, value, slot);
174 JSValue valueAfter = getDirect(propertyName);
176 JSObject::putWithAttributes(exec, propertyName, valueAfter, attributes);
180 void JSGlobalObject::defineGetter(ExecState* exec, const Identifier& propertyName, JSObject* getterFunc, unsigned attributes
    [all...]
RegExpConstructor.cpp 188 bool RegExpConstructor::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
190 return getStaticValueSlot<RegExpConstructor, InternalFunction>(exec, ExecState::regExpConstructorTable(exec), this, propertyName, slot);
193 bool RegExpConstructor::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
195 return getStaticValueDescriptor<RegExpConstructor, InternalFunction>(exec, ExecState::regExpConstructorTable(exec), this, propertyName, descriptor);
273 void RegExpConstructor::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot)
275 lookupPut<RegExpConstructor, InternalFunction>(exec, propertyName, value, ExecState::regExpConstructorTable(exec), this, slot);
MathObject.cpp 103 bool MathObject::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot &slot)
105 return getStaticFunctionSlot<JSObject>(exec, ExecState::mathTable(exec), this, propertyName, slot);
108 bool MathObject::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
110 return getStaticFunctionDescriptor<JSObject>(exec, ExecState::mathTable(exec), this, propertyName, descriptor);
JSValue.h 181 JSValue get(ExecState*, const Identifier& propertyName) const;
182 JSValue get(ExecState*, const Identifier& propertyName, PropertySlot&) const;
183 JSValue get(ExecState*, unsigned propertyName) const;
184 JSValue get(ExecState*, unsigned propertyName, PropertySlot&) const;
185 void put(ExecState*, const Identifier& propertyName, JSValue, PutPropertySlot&);
186 void put(ExecState*, unsigned propertyName, JSValue);
  /external/webkit/JavaScriptGlue/
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/WebCore/bridge/
npruntime.h 339 bool NPN_GetProperty(NPP npp, NPObject *npobj, NPIdentifier propertyName, NPVariant *result);
340 bool NPN_SetProperty(NPP npp, NPObject *npobj, NPIdentifier propertyName, const NPVariant *value);
341 bool NPN_RemoveProperty(NPP npp, NPObject *npobj, NPIdentifier propertyName);
342 bool NPN_HasProperty(NPP npp, NPObject *npobj, NPIdentifier propertyName);
  /external/webkit/JavaScriptCore/API/
JSObjectRef.cpp 242 bool JSObjectHasProperty(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName)
249 return jsObject->hasProperty(exec, propertyName->identifier(&exec->globalData()));
252 JSValueRef JSObjectGetProperty(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception)
259 JSValue jsValue = jsObject->get(exec, propertyName->identifier(&exec->globalData()));
268 void JSObjectSetProperty(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef value, JSPropertyAttributes attributes, JSValueRef* exception)
274 Identifier name(propertyName->identifier(&exec->globalData()));
324 bool JSObjectDeleteProperty(JSContextRef ctx, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception)
331 bool result = jsObject->deleteProperty(exec, propertyName->identifier(&exec->globalData()));
491 void JSPropertyNameAccumulatorAddName(JSPropertyNameAccumulatorRef array, JSStringRef propertyName)
495 propertyNames->add(propertyName->identifier(propertyNames->globalData()))
    [all...]
  /frameworks/base/core/java/com/android/internal/util/
TypedProperties.java 182 final String propertyName = st.sval;
183 if (!propertyNamePattern.matcher(propertyName).matches()) {
194 map.remove(propertyName);
204 final Object oldValue = map.remove(propertyName);
213 map.put(propertyName, value);
  /external/webkit/WebKit/mac/Plugins/Hosted/
WebKitPluginHost.defs 176 propertyName :uint64_t);
206 propertyName :uint64_t);
212 propertyName :uint64_t;
  /external/webkit/WebCore/bindings/v8/
SerializedScriptValue.cpp 382 v8::Local<v8::Value> propertyName = m_propertyNames->Get(v8::Integer::New(m_index / 2));
383 if ((propertyName->IsString() && composite()->HasRealNamedProperty(handleCast<v8::String>(propertyName)))
384 || (propertyName->IsInt32() && composite()->HasRealIndexedProperty(propertyName->Uint32Value()))) {
385 m_propertyName = scope.Close(propertyName);
620 v8::Local<v8::Value> propertyName = element(i);
622 object->Set(propertyName, propertyValue);
  /external/v8/test/mjsunit/
fuzz-accessors.js 77 var propertyName = builtInPropertyNames[k];
78 fun(obj, propertyName);
  /external/webkit/WebCore/bridge/qt/
qt_instance.cpp 140 bool QtInstance::getOwnPropertySlot(JSObject* object, ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
142 return object->JSObject::getOwnPropertySlot(exec, propertyName, slot);
145 void QtInstance::put(JSObject* object, ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot)
147 object->JSObject::put(exec, propertyName, value, slot);
  /external/webkit/WebCore/plugins/
npfunctions.h 93 typedef bool (*NPN_GetPropertyProcPtr) (NPP npp, NPObject *obj, NPIdentifier propertyName, NPVariant *result);
94 typedef bool (*NPN_SetPropertyProcPtr) (NPP npp, NPObject *obj, NPIdentifier propertyName, const NPVariant *value);
95 typedef bool (*NPN_HasPropertyProcPtr) (NPP, NPObject *npobj, NPIdentifier propertyName);
97 typedef bool (*NPN_RemovePropertyProcPtr) (NPP npp, NPObject *obj, NPIdentifier propertyName);
  /external/webkit/WebKit/chromium/src/
WebBindings.cpp 95 bool WebBindings::getProperty(NPP npp, NPObject* obj, NPIdentifier propertyName, NPVariant *result)
97 return _NPN_GetProperty(npp, obj, propertyName, result);
115 bool WebBindings::hasProperty(NPP npp, NPObject* npObject, NPIdentifier propertyName)
117 return _NPN_HasProperty(npp, npObject, propertyName);
  /external/webkit/WebCore/inspector/front-end/
EventListenersSidebarPane.js 190 for (var propertyName in this.eventListener) {
192 var value = this.eventListener[propertyName];
197 properties.push(new WebInspector.ObjectPropertyProxy(propertyName, value));
MetricsSidebarPane.js 74 var propertyName = (name !== "position" ? name + "-" : "") + side + suffix;
75 var value = style.getPropertyValue(propertyName);
85 element.addEventListener("dblclick", this.startEditing.bind(this, element, name, propertyName), false);
  /external/webkit/WebCore/page/animation/
ImplicitAnimation.cpp 155 String propertyName;
157 propertyName = getPropertyName(static_cast<CSSPropertyID>(m_animatingProperty));
169 m_compAnim->animationController()->addEventToDispatch(element, eventType, propertyName, elapsedTime);
  /packages/apps/Tag/src/com/android/vcard/
VCardBuilder.java     [all...]
  /frameworks/base/core/java/android/pim/vcard/
VCardBuilder.java     [all...]
  /external/webkit/WebCore/bridge/objc/
objc_runtime.mm 191 ObjcFallbackObjectImp::ObjcFallbackObjectImp(ExecState* exec, ObjcInstance* i, const Identifier& propertyName)
195 , _item(propertyName)
238 const Identifier& nameIdentifier = static_cast<ObjcFallbackObjectImp*>(function)->propertyName();

Completed in 263 milliseconds

1 2 3 4 56 7 8 9