HomeSort by relevance Sort by last modified time
    Searched full:propertyname (Results 101 - 125 of 216) sorted by null

1 2 3 45 6 7 8 9

  /external/webkit/WebCore/bridge/
NP_jsobject.cpp 233 bool _NPN_GetProperty(NPP, NPObject* o, NPIdentifier propertyName, NPVariant* variant)
243 IdentifierRep* i = static_cast<IdentifierRep*>(propertyName);
258 if (o->_class->hasProperty(o, propertyName))
259 return o->_class->getProperty(o, propertyName, variant);
267 bool _NPN_SetProperty(NPP, NPObject* o, NPIdentifier propertyName, const NPVariant* variant)
278 IdentifierRep* i = static_cast<IdentifierRep*>(propertyName);
290 return o->_class->setProperty(o, propertyName, variant);
295 bool _NPN_RemoveProperty(NPP, NPObject* o, NPIdentifier propertyName)
305 IdentifierRep* i = static_cast<IdentifierRep*>(propertyName);
330 bool _NPN_HasProperty(NPP, NPObject* o, NPIdentifier propertyName)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
BaseBuilder.java 324 * @param propertyName the name of the property. The id of the plugin is added to this string.
328 protected boolean saveProjectStringProperty(String propertyName, String value) {
330 return ProjectHelper.saveStringProperty(project, propertyName, value);
336 * @param propertyName the name of the property. The id of the plugin is added to this string.
339 protected String loadProjectStringProperty(String propertyName) {
341 return ProjectHelper.loadStringProperty(project, propertyName);
346 * @param propertyName the name of the property. The id of the plugin is added to this string.
350 protected boolean saveProjectBooleanProperty(String propertyName, boolean value) {
352 return ProjectHelper.saveStringProperty(project, propertyName, Boolean.toString(value));
357 * @param propertyName the name of the property. The id of the plugin is added to this string
    [all...]
  /external/v8/test/mjsunit/
fuzz-accessors.js 77 var propertyName = builtInPropertyNames[k];
78 fun(obj, propertyName);
  /external/webkit/JavaScriptCore/runtime/
RegExpObject.h 43 virtual bool getOwnPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot&);
45 virtual void put(ExecState*, const Identifier& propertyName, JSValue, PutPropertySlot&);
ObjectPrototype.h 34 virtual bool getOwnPropertySlot(ExecState*, unsigned propertyName, PropertySlot&);
StringPrototype.h 34 virtual bool getOwnPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot&);
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);
JSFunction.h 86 virtual void put(ExecState*, const Identifier& propertyName, JSValue, PutPropertySlot&);
87 virtual bool deleteProperty(ExecState*, const Identifier& propertyName);
RegExpConstructor.h 65 virtual void put(ExecState*, const Identifier& propertyName, JSValue, PutPropertySlot&);
66 virtual bool getOwnPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot&);
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...]
  /external/webkit/JavaScriptGlue/
UserObjectImp.h 51 virtual void put(ExecState *exec, const Identifier &propertyName, JSValue value, PutPropertySlot&);
68 static JSValue userObjectGetter(ExecState*, const Identifier& propertyName, const PropertySlot&);
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/WebKit/chromium/src/
WebAnimationControllerImpl.cpp 71 const WebString& propertyName,
78 propertyName,
  /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...]
  /external/webkit/WebCore/bindings/scripts/
CodeGeneratorJS.pm 281 push(@getOwnPropertySlotImpl, " if (proto.isObject() && static_cast<${namespaceMaybe}JSObject*>(asObject(proto))->hasProperty(exec, propertyName))\n");
288 push(@getOwnPropertySlotImpl, " const ${namespaceMaybe}HashEntry* entry = ${className}Table.entry(exec, propertyName);\n");
302 push(@getOwnPropertySlotImpl, " unsigned index = propertyName.toUInt32(&ok, false);\n");
321 push(@getOwnPropertySlotImpl, " if (canGetItemsForName(exec, static_cast<$implClassName*>(impl()), propertyName)) {\n");
337 push(@getOwnPropertySlotImpl, " if (getOwnPropertySlotDelegate(exec, propertyName, slot))\n");
344 push(@getOwnPropertySlotImpl, " return ${namespaceMaybe}getStaticValueSlot<$className, Base>(exec, s_info.staticPropHashTable, this, propertyName, slot);\n");
346 push(@getOwnPropertySlotImpl, " return ${namespaceMaybe}getStaticValueSlot<$className, Base>(exec, " . hashTableAccessor($dataNode->extendedAttributes->{"NoStaticTables"}, $className) . ", this, propertyName, slot);\n");
349 push(@getOwnPropertySlotImpl, " return Base::getOwnPropertySlot(exec, propertyName, slot);\n");
373 push(@getOwnPropertyDescriptorImpl, " if (proto.isObject() && static_cast<${namespaceMaybe}JSObject*>(asObject(proto))->hasProperty(exec, propertyName))\n");
380 push(@getOwnPropertyDescriptorImpl, " const ${namespaceMaybe}HashEntry* entry = ${className}Table.entry(exec, propertyName);\n")
    [all...]
  /external/webkit/WebCore/bindings/js/
JSHTMLDocumentCustom.cpp 52 bool JSHTMLDocument::canGetItemsForName(ExecState*, HTMLDocument* document, const Identifier& propertyName)
54 AtomicStringImpl* atomicPropertyName = AtomicString::find(propertyName);
58 JSValue JSHTMLDocument::nameGetter(ExecState* exec, const Identifier& propertyName, const PropertySlot& slot)
63 String name = propertyName;
JSWorkerContextCustom.cpp 66 bool JSWorkerContext::getOwnPropertySlotDelegate(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
69 if (JSGlobalObject::getOwnPropertySlot(exec, propertyName, slot))
74 bool JSWorkerContext::getOwnPropertyDescriptorDelegate(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
77 if (JSGlobalObject::getOwnPropertyDescriptor(exec, propertyName, descriptor))
  /external/webkit/WebCore/dom/
WebKitTransitionEvent.idl 29 readonly attribute DOMString propertyName;
  /frameworks/base/core/java/android/pim/vcard/
VCardEntryCounter.java 52 public void propertyName(String name) {
  /packages/apps/Tag/src/com/android/vcard/
VCardEntryCounter.java 52 public void propertyName(String name) {
  /external/webkit/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...]
  /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/webkit/WebKitTools/DumpRenderTree/
AccessibilityController.cpp 34 static JSValueRef getFocusedElementCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
40 static JSValueRef getRootElementCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception)
  /external/webkit/WebCore/bridge/objc/
objc_class.h 46 virtual JSValue fallbackObject(ExecState *exec, Instance *instance, const Identifier &propertyName);

Completed in 721 milliseconds

1 2 3 45 6 7 8 9