/frameworks/base/core/java/android/os/ |
Debug.java | [all...] |
/external/webkit/Source/JavaScriptCore/runtime/ |
RegExpObject.h | 55 virtual bool getOwnPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot&); 57 virtual void put(ExecState*, const Identifier& propertyName, JSValue, PutPropertySlot&);
|
JSCell.h | 128 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&);
|
JSValue.h | 206 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);
|
ObjectPrototype.cpp | 61 void ObjectPrototype::put(ExecState* exec, const Identifier& propertyName, JSValue value, PutPropertySlot& slot) 63 JSObject::put(exec, propertyName, value, slot); 67 propertyName.toUInt32(isUInt32); 72 bool ObjectPrototype::getOwnPropertySlot(ExecState* exec, unsigned propertyName, PropertySlot& slot) 76 return JSObject::getOwnPropertySlot(exec, propertyName, slot);
|
JSONObject.cpp | 220 UString propertyName; 221 if (name.getString(exec, propertyName)) { 222 m_arrayReplacerPropertyNames.add(Identifier(exec, propertyName)); 235 propertyName = name.toString(exec); 238 m_arrayReplacerPropertyNames.add(Identifier(exec, propertyName)); 320 inline JSValue Stringifier::toJSON(JSValue value, const PropertyNameForFunctionCall& propertyName) 339 JSValue list[] = { propertyName.value(m_exec) }; 344 Stringifier::StringifyResult Stringifier::appendStringifiedValue(UStringBuilder& builder, JSValue value, JSObject* holder, const PropertyNameForFunctionCall& propertyName) 347 value = toJSON(value, propertyName); 353 JSValue list[] = { propertyName.value(m_exec), value } [all...] |
Arguments.h | 105 virtual bool getOwnPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot&); 106 virtual bool getOwnPropertySlot(ExecState*, unsigned propertyName, PropertySlot&); 109 virtual void put(ExecState*, const Identifier& propertyName, JSValue, PutPropertySlot&); 110 virtual void put(ExecState*, unsigned propertyName, JSValue); 111 virtual bool deleteProperty(ExecState*, const Identifier& propertyName); 112 virtual bool deleteProperty(ExecState*, unsigned propertyName);
|
ExceptionHelpers.cpp | 130 JSObject* createErrorForInvalidGlobalAssignment(ExecState* exec, const UString& propertyName) 132 return createReferenceError(exec, makeUString("Strict mode forbids implicit creation of global property '", propertyName, "'"));
|
JSFunction.h | 97 virtual void put(ExecState*, const Identifier& propertyName, JSValue, PutPropertySlot&); 98 virtual bool deleteProperty(ExecState*, const Identifier& propertyName);
|
RegExpConstructor.h | 67 virtual void put(ExecState*, const Identifier& propertyName, JSValue, PutPropertySlot&); 68 virtual bool getOwnPropertySlot(ExecState*, const Identifier& propertyName, PropertySlot&);
|
/external/webkit/Source/WebCore/inspector/ |
InspectorRuntimeAgent.cpp | 73 void InspectorRuntimeAgent::setPropertyValue(ErrorString* errorString, const String& objectId, const String& propertyName, const String& expression) 77 injectedScript.setPropertyValue(errorString, objectId, propertyName, expression);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/builders/ |
BaseBuilder.java | 242 * @param propertyName the name of the property. The id of the plugin is added to this string. 246 protected boolean saveProjectStringProperty(String propertyName, String value) { 248 return ProjectHelper.saveStringProperty(project, propertyName, value); 254 * @param propertyName the name of the property. The id of the plugin is added to this string. 257 protected String loadProjectStringProperty(String propertyName) { 259 return ProjectHelper.loadStringProperty(project, propertyName); 264 * @param propertyName the name of the property. The id of the plugin is added to this string. 268 protected boolean saveProjectBooleanProperty(String propertyName, boolean value) { 270 return ProjectHelper.saveStringProperty(project, propertyName, Boolean.toString(value)); 275 * @param propertyName the name of the property. The id of the plugin is added to this string [all...] |
/external/webkit/Source/JavaScriptCore/API/tests/ |
JSNode.c | 106 static JSValueRef JSNode_getNodeType(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception) 108 UNUSED_PARAM(propertyName); 122 static JSValueRef JSNode_getChildNodes(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception) 124 UNUSED_PARAM(propertyName); 132 static JSValueRef JSNode_getFirstChild(JSContextRef context, JSObjectRef object, JSStringRef propertyName, JSValueRef* exception) 135 UNUSED_PARAM(propertyName);
|
testapi.c | 141 static bool MyObject_hasProperty(JSContextRef context, JSObjectRef object, JSStringRef propertyName) 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) 163 if (JSStringIsEqualToUTF8CString(propertyName, "alwaysOne")) { 167 if (JSStringIsEqualToUTF8CString(propertyName, "myPropertyName")) [all...] |
/external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/ |
JSNPObject.cpp | 229 bool JSNPObject::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot) 236 NPIdentifier npIdentifier = npIdentifierFromIdentifier(propertyName); 253 bool JSNPObject::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor) 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&) 288 NPIdentifier npIdentifier = npIdentifierFromIdentifier(propertyName); 364 JSValue JSNPObject::propertyGetter(ExecState* exec, JSValue slotBase, const Identifier& propertyName) 385 NPIdentifier npIdentifier = npIdentifierFromIdentifier(propertyName); [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/ |
ProjectHelper.java | 598 * @param propertyName the name of the property. The id of the plug-in is added to this string. 602 public static boolean saveStringProperty(IResource resource, String propertyName, 604 QualifiedName qname = new QualifiedName(AdtPlugin.PLUGIN_ID, propertyName); 618 * @param propertyName the name of the property. The id of the plug-in is added to this string. 621 public static String loadStringProperty(IResource resource, String propertyName) { 622 QualifiedName qname = new QualifiedName(AdtPlugin.PLUGIN_ID, propertyName); 635 * @param propertyName the name of the property. The id of the plug-in is added to this string. 639 public static boolean saveBooleanProperty(IResource resource, String propertyName, 641 return saveStringProperty(resource, propertyName, Boolean.toString(value)); 647 * @param propertyName the name of the property. The id of the plug-in is added to this string [all...] |
/libcore/luni/src/main/java/javax/xml/validation/ |
SchemaFactoryFinder.java | 155 String propertyName = SERVICE_CLASS.getName() + ":" + schemaLanguage; 159 if (debug) debugPrintln("Looking up system property '"+propertyName+"'" ); 160 String r = System.getProperty(propertyName); 180 debugPrintln("failed to look up system property '"+propertyName+"'" ); 205 factoryClassName = cacheProps.getProperty(propertyName);
|
/external/webkit/Source/WebCore/bindings/v8/ |
NPV8Object.cpp | 301 bool _NPN_GetProperty(NPP npp, NPObject* npObject, NPIdentifier propertyName, NPVariant* result) 318 v8::Local<v8::Value> v8result = obj->Get(npIdentifierToV8Identifier(propertyName)); 328 if (npObject->_class->hasProperty(npObject, propertyName)) 329 return npObject->_class->getProperty(npObject, propertyName, result); 336 bool _NPN_SetProperty(NPP npp, NPObject* npObject, NPIdentifier propertyName, const NPVariant* value) 353 obj->Set(npIdentifierToV8Identifier(propertyName), 359 return npObject->_class->setProperty(npObject, propertyName, value); 364 bool _NPN_RemoveProperty(NPP npp, NPObject* npObject, NPIdentifier propertyName) 382 obj->Set(npIdentifierToV8Identifier(propertyName), v8::Undefined()); 386 bool _NPN_HasProperty(NPP npp, NPObject* npObject, NPIdentifier propertyName) [all...] |
/external/webkit/Source/WebCore/bridge/ |
NP_jsobject.cpp | 299 bool _NPN_GetProperty(NPP, NPObject* o, NPIdentifier propertyName, NPVariant* variant) 309 IdentifierRep* i = static_cast<IdentifierRep*>(propertyName); 324 if (o->_class->hasProperty(o, propertyName)) 325 return o->_class->getProperty(o, propertyName, variant); 333 bool _NPN_SetProperty(NPP, NPObject* o, NPIdentifier propertyName, const NPVariant* variant) 344 IdentifierRep* i = static_cast<IdentifierRep*>(propertyName); 356 return o->_class->setProperty(o, propertyName, variant); 361 bool _NPN_RemoveProperty(NPP, NPObject* o, NPIdentifier propertyName) 371 IdentifierRep* i = static_cast<IdentifierRep*>(propertyName); 396 bool _NPN_HasProperty(NPP, NPObject* o, NPIdentifier propertyName) [all...] |
/external/webkit/Source/WebCore/dom/ |
DatasetDOMStringMap.cpp | 73 static bool propertyNameMatchesAttributeName(const String& propertyName, const String& attributeName) 78 const UChar* property = propertyName.characters(); 80 unsigned propertyLength = propertyName.length();
|
/external/webkit/Tools/DumpRenderTree/ |
AccessibilityUIElement.cpp | 510 static JSValueRef getARIADropEffectsCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception) 516 static JSValueRef getARIAIsGrabbedCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception) 521 static JSValueRef getIsValidCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception) 532 static JSValueRef getRoleCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception) 538 static JSValueRef getSubroleCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception) 544 static JSValueRef getRoleDescriptionCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception) 550 static JSValueRef getTitleCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception) 556 static JSValueRef getDescriptionCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception) 562 static JSValueRef getStringValueCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception) 568 static JSValueRef getLanguageCallback(JSContextRef context, JSObjectRef thisObject, JSStringRef propertyName, JSValueRef* exception [all...] |
/external/webkit/Source/WebCore/bindings/scripts/test/JS/ |
JSTestInterface.h | 40 virtual bool getOwnPropertySlot(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::PropertySlot&); 41 virtual bool getOwnPropertyDescriptor(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::PropertyDescriptor&);
|
JSTestMediaQueryListListener.h | 38 virtual bool getOwnPropertySlot(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::PropertySlot&); 39 virtual bool getOwnPropertyDescriptor(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::PropertyDescriptor&);
|
JSTestSerializedScriptValueInterface.h | 40 virtual bool getOwnPropertySlot(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::PropertySlot&); 41 virtual bool getOwnPropertyDescriptor(JSC::ExecState*, const JSC::Identifier& propertyName, JSC::PropertyDescriptor&);
|
/external/webkit/Source/WebKit/mac/Plugins/Hosted/ |
NetscapePluginInstanceProxy.h | 119 bool getProperty(uint32_t objectID, const JSC::Identifier& propertyName, data_t &resultData, mach_msg_type_number_t& resultLength); 120 bool getProperty(uint32_t objectID, unsigned propertyName, data_t &resultData, mach_msg_type_number_t& resultLength); 121 bool setProperty(uint32_t objectID, const JSC::Identifier& propertyName, data_t valueData, mach_msg_type_number_t valueLength); 122 bool setProperty(uint32_t objectID, unsigned propertyName, data_t valueData, mach_msg_type_number_t valueLength); 123 bool removeProperty(uint32_t objectID, const JSC::Identifier& propertyName); 124 bool removeProperty(uint32_t objectID, unsigned propertyName); 125 bool hasProperty(uint32_t objectID, const JSC::Identifier& propertyName); 126 bool hasProperty(uint32_t objectID, unsigned propertyName);
|