/external/v8/test/mjsunit/ |
fuzz-accessors.js | 77 var propertyName = builtInPropertyNames[k]; 78 fun(obj, propertyName);
|
/external/webkit/Source/JavaScriptCore/runtime/ |
JSArray.cpp | 272 bool JSArray::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) 274 if (propertyName == exec->propertyNames().length) { 280 unsigned i = propertyName.toArrayIndex(isArrayIndex); 284 return JSObject::getOwnPropertySlot(exec, propertyName, slot); 287 bool JSArray::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) 289 if (propertyName == exec->propertyNames().length) { 297 unsigned i = propertyName.toArrayIndex(isArrayIndex); 317 return JSObject::getOwnPropertyDescriptor(exec, propertyName, descriptor); 321 void JSArray::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot) 324 unsigned i = propertyName.toArrayIndex(isArrayIndex) [all...] |
MathObject.cpp | 106 bool MathObject::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot &slot) 108 return getStaticFunctionSlot<JSObject>(exec, ExecState::mathTable(exec), this, propertyName, slot); 111 bool MathObject::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) 113 return getStaticFunctionDescriptor<JSObject>(exec, ExecState::mathTable(exec), this, propertyName, descriptor);
|
JSString.h | 342 bool getStringPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot&); 343 bool getStringPropertySlot(ExecState*, unsigned propertyName, PropertySlot&); 344 bool getStringPropertyDescriptor(ExecState*, const Identifier& propertyName, PropertyDescriptor&); 410 virtual bool getOwnPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot&); 411 virtual bool getOwnPropertySlot(ExecState*, unsigned propertyName, PropertySlot&); 577 ALWAYS_INLINE bool JSString::getStringPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) 579 if (propertyName == exec->propertyNames().length) { 585 unsigned i = propertyName.toUInt32(isStrictUInt32); 594 ALWAYS_INLINE bool JSString::getStringPropertySlot(ExecState* exec, unsigned propertyName, PropertySlot& slot) 596 if (propertyName < m_length) [all...] |
/external/webkit/Source/WebCore/bridge/qt/ |
qt_instance.h | 53 virtual JSValue getMethod(ExecState* exec, const Identifier& propertyName);
|
/external/webkit/Source/WebCore/inspector/ |
InjectedScript.h | 63 void setPropertyValue(ErrorString*, const String& objectId, const String& propertyName, const String& expression);
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/extensions/ |
security.h | 186 ATOM propertyName,
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/extensions/ |
security.h | 186 ATOM propertyName,
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/extensions/ |
security.h | 186 ATOM propertyName,
|
/external/webkit/Source/WebCore/inspector/front-end/ |
EventListenersSidebarPane.js | 192 for (var propertyName in this.eventListener) { 193 var value = WebInspector.RemoteObject.fromPrimitiveValue(this.eventListener[propertyName]); 194 properties.push(new WebInspector.RemoteObjectProperty(propertyName, value));
|
/external/webkit/Source/WebCore/page/animation/ |
ImplicitAnimation.cpp | 174 String propertyName; 176 propertyName = getPropertyName(static_cast<CSSPropertyID>(m_animatingProperty)); 188 m_compAnim->animationController()->addEventToDispatch(element, eventType, propertyName, elapsedTime);
|
/external/webkit/Source/WebKit/mac/Plugins/Hosted/ |
ProxyInstance.mm | 200 JSValue ProxyInstance::getMethod(JSC::ExecState* exec, const JSC::Identifier& propertyName) 202 MethodList methodList = getClass()->methodsNamed(propertyName, this); 203 return new (exec) ProxyRuntimeMethod(exec, exec->lexicalGlobalObject(), propertyName, methodList); 383 uint64_t propertyName = reinterpret_cast<uint64_t>(_NPN_GetStringIdentifier(identifier.ascii().data())); 388 m_objectID, propertyName) != KERN_SUCCESS) 401 mapAddResult.first->second = new ProxyField(propertyName);
|
/libcore/luni/src/main/java/java/security/ |
Security.java | 102 String propertyName = (String) e.nextElement(); 103 if (propertyName.equalsIgnoreCase(prop)) { 104 return provider.getProperty(propertyName);
|
/frameworks/opt/vcard/java/com/android/vcard/ |
VCardEntry.java | [all...] |
VCardBuilder.java | [all...] |
/external/webkit/Tools/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/Source/WebCore/bindings/v8/ |
SerializedScriptValue.cpp | 502 v8::Local<v8::Value> propertyName = m_propertyNames->Get(m_index); 505 if (propertyName.IsEmpty()) 507 bool hasStringProperty = propertyName->IsString() && composite()->HasRealNamedProperty(propertyName.As<v8::String>()); 510 bool hasIndexedProperty = !hasStringProperty && propertyName->IsUint32() && composite()->HasRealIndexedProperty(propertyName->Uint32Value()); 514 m_propertyName = propertyName; 1099 v8::Local<v8::Value> propertyName = element(i); 1101 object->Set(propertyName, propertyValue); [all...] |
/external/webkit/Source/WebCore/bridge/objc/ |
objc_runtime.mm | 192 ObjcFallbackObjectImp::ObjcFallbackObjectImp(ExecState* exec, JSGlobalObject* globalObject, ObjcInstance* i, const Identifier& propertyName) 196 , _item(propertyName) 240 const Identifier& nameIdentifier = static_cast<ObjcFallbackObjectImp*>(exec->callee())->propertyName();
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/ |
RelativeLayoutRule.java | 119 private void addAttr(String propertyName, INode childNode, List<String> infos) { 120 String a = childNode.getStringAttr(ANDROID_URI, propertyName); 124 if (propertyName.startsWith(ATTR_LAYOUT_PREFIX)) { 125 propertyName = propertyName.substring(ATTR_LAYOUT_PREFIX.length()); 128 String s = propertyName + ": " + a;
|
/external/webkit/Source/JavaScriptCore/dfg/ |
DFGOperations.cpp | 93 Identifier propertyName(exec, asString(property)->value(exec)); 95 if (base->fastGetOwnPropertySlot(exec, propertyName, slot)) 96 return JSValue::encode(slot.getValue(exec, propertyName));
|
/external/webkit/Source/WebCore/bridge/c/ |
c_instance.cpp | 132 JSValue CInstance::getMethod(ExecState* exec, const Identifier& propertyName) 134 MethodList methodList = getClass()->methodsNamed(propertyName, this); 135 return new (exec) CRuntimeMethod(exec, exec->lexicalGlobalObject(), propertyName, methodList);
|
/external/webkit/Source/WebCore/bridge/jni/jsc/ |
JavaInstanceJSC.cpp | 137 JSValue JavaInstance::getMethod(ExecState* exec, const Identifier& propertyName) 139 MethodList methodList = getClass()->methodsNamed(propertyName, this); 140 return new (exec) JavaRuntimeMethod(exec, exec->lexicalGlobalObject(), propertyName, methodList);
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/ |
ComponentsView.java | 353 String propertyName = event.getKey(); 357 if (propertyName.equals(IPerformancesConstants.PRE_FILTER_ADVANCED_SCENARIOS)) { 364 if (propertyName.equals(IPerformancesConstants.PRE_FILTER_OLD_BUILDS)) { 371 if (propertyName.equals(IPerformancesConstants.PRE_WRITE_STATUS)) {
|
/external/webkit/Source/WebCore/bridge/jsc/ |
BridgeJSC.h | 96 virtual JSValue getMethod(ExecState* exec, const Identifier& propertyName) = 0;
|
/external/webkit/Source/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);
|