/libcore/support/src/test/java/tests/util/ |
ClassLoaderBuilder.java | 138 private List<URL> classpathToUrls(String propertyName) { 140 String classpath = System.getProperty(propertyName);
|
/packages/apps/Launcher2/src/com/android/launcher2/ |
LauncherAnimUtils.java | 100 public static ObjectAnimator ofFloat(View target, String propertyName, float... values) { 103 anim.setPropertyName(propertyName);
|
/packages/apps/Launcher3/src/com/android/launcher3/ |
LauncherAnimUtils.java | 100 public static ObjectAnimator ofFloat(View target, String propertyName, float... values) { 103 anim.setPropertyName(propertyName);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/builders/ |
BaseBuilder.java | 262 * @param propertyName the name of the property. The id of the plugin is added to this string. 266 protected boolean saveProjectStringProperty(String propertyName, String value) { 268 return ProjectHelper.saveStringProperty(project, propertyName, value); 274 * @param propertyName the name of the property. The id of the plugin is added to this string. 277 protected String loadProjectStringProperty(String propertyName) { 279 return ProjectHelper.loadStringProperty(project, propertyName); 284 * @param propertyName the name of the property. The id of the plugin is added to this string. 288 protected boolean saveProjectBooleanProperty(String propertyName, boolean value) { 290 return ProjectHelper.saveStringProperty(project, propertyName, Boolean.toString(value)); 295 * @param propertyName the name of the property. The id of the plugin is added to this string [all...] |
/frameworks/base/core/java/android/os/ |
Debug.java | [all...] |
/external/chromium_org/third_party/WebKit/Source/bindings/v8/ |
V8Utilities.h | 67 bool getMessagePortArray(v8::Local<v8::Value>, const String& propertyName, MessagePortArray&, v8::Isolate*);
|
NPV8Object.cpp | 367 bool _NPN_GetProperty(NPP npp, NPObject* npObject, NPIdentifier propertyName, NPVariant* result) 383 v8::Local<v8::Value> v8result = obj->Get(npIdentifierToV8Identifier(propertyName, isolate)); 393 if (npObject->_class->hasProperty(npObject, propertyName)) 394 return npObject->_class->getProperty(npObject, propertyName, result); 401 bool _NPN_SetProperty(NPP npp, NPObject* npObject, NPIdentifier propertyName, const NPVariant* value) 417 obj->Set(npIdentifierToV8Identifier(propertyName, context->GetIsolate()), convertNPVariantToV8Object(value, object->rootObject->frame()->script().windowScriptNPObject(), context->GetIsolate())); 422 return npObject->_class->setProperty(npObject, propertyName, value); 427 bool _NPN_RemoveProperty(NPP npp, NPObject* npObject, NPIdentifier propertyName) 446 obj->Set(npIdentifierToV8Identifier(propertyName, isolate), v8::Undefined(isolate)); 450 bool _NPN_HasProperty(NPP npp, NPObject* npObject, NPIdentifier propertyName) [all...] |
V8Utilities.cpp | 113 bool getMessagePortArray(v8::Local<v8::Value> value, const String& propertyName, MessagePortArray& ports, v8::Isolate* isolate) 120 throwTypeError(ExceptionMessages::notASequenceTypeProperty(propertyName), isolate); 124 ports = toRefPtrNativeArray<MessagePort, V8MessagePort>(value, propertyName, isolate, &success);
|
/external/chromium_org/third_party/WebKit/Source/core/page/ |
PrintContext.h | 76 static String pageProperty(Frame* frame, const char* propertyName, int pageNumber);
|
PrintContext.cpp | 308 String PrintContext::pageProperty(Frame* frame, const char* propertyName, int pageNumber) 317 if (!strcmp(propertyName, "margin-left")) { 322 if (!strcmp(propertyName, "line-height")) 324 if (!strcmp(propertyName, "font-size")) 326 if (!strcmp(propertyName, "font-family")) 328 if (!strcmp(propertyName, "size")) 331 return String("pageProperty() unimplemented for: ") + propertyName;
|
/external/chromium_org/third_party/WebKit/Source/testing/plugin/ |
PluginTest.cpp | 220 bool PluginTest::NPN_GetProperty(NPObject* npObject, NPIdentifier propertyName, NPVariant* value) 222 return browser->getproperty(m_npp, npObject, propertyName, value); 225 bool PluginTest::NPN_RemoveProperty(NPObject* npObject, NPIdentifier propertyName) 227 return browser->removeproperty(m_npp, npObject, propertyName);
|
/external/chromium_org/third_party/npapi/bindings/ |
npruntime.h | 373 bool NPN_GetProperty(NPP npp, NPObject *npobj, NPIdentifier propertyName, 375 bool NPN_SetProperty(NPP npp, NPObject *npobj, NPIdentifier propertyName, 377 bool NPN_RemoveProperty(NPP npp, NPObject *npobj, NPIdentifier propertyName); 378 bool NPN_HasProperty(NPP npp, NPObject *npobj, NPIdentifier propertyName);
|
/external/chromium_org/third_party/npapi/npspy/extern/plugin/ |
npruntime.h | 389 bool NPN_GetProperty(NPP npp, NPObject *npobj, NPIdentifier propertyName, 391 bool NPN_SetProperty(NPP npp, NPObject *npobj, NPIdentifier propertyName, 393 bool NPN_RemoveProperty(NPP npp, NPObject *npobj, NPIdentifier propertyName); 394 bool NPN_HasProperty(NPP npp, NPObject *npobj, NPIdentifier propertyName);
|
/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);
|
/frameworks/base/media/java/android/media/ |
MediaDrm.java | 532 public native String getPropertyString(String propertyName); 546 public native byte[] getPropertyByteArray(String propertyName); 552 public native void setPropertyString(String propertyName, String value); 557 public native void setPropertyByteArray(String propertyName, byte[] value);
|
/libcore/luni/src/main/java/javax/xml/xpath/ |
XPathFactoryFinder.java | 150 String propertyName = SERVICE_CLASS.getName() + ":" + uri; 154 if (debug) debugPrintln("Looking up system property '"+propertyName+"'" ); 155 String r = System.getProperty(propertyName); 187 factoryClassName = cacheProps.getProperty(propertyName);
|
/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);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/ |
ProjectHelper.java | 736 * @param propertyName the name of the property. The id of the plug-in is added to this string. 740 public static boolean saveStringProperty(IResource resource, String propertyName, 742 QualifiedName qname = new QualifiedName(AdtPlugin.PLUGIN_ID, propertyName); 756 * @param propertyName the name of the property. The id of the plug-in is added to this string. 759 public static String loadStringProperty(IResource resource, String propertyName) { 760 QualifiedName qname = new QualifiedName(AdtPlugin.PLUGIN_ID, propertyName); 773 * @param propertyName the name of the property. The id of the plug-in is added to this string. 777 public static boolean saveBooleanProperty(IResource resource, String propertyName, 779 return saveStringProperty(resource, propertyName, Boolean.toString(value)); 785 * @param propertyName the name of the property. The id of the plug-in is added to this string [all...] |
/external/chromium_org/third_party/WebKit/Source/bindings/tests/results/ |
V8TestEventTarget.cpp | 172 AtomicString propertyName = toCoreAtomicString(name); 173 RefPtr<Node> element = collection->namedItem(propertyName); 195 V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, propertyName, name); 199 result = collection->anonymousNamedSetterUndefined(propertyName); 201 result = collection->anonymousNamedSetter(propertyName, propertyValue); 217 AtomicString propertyName = toCoreAtomicString(name); 218 bool result = collection->anonymousNamedDeleter(propertyName); 246 AtomicString propertyName = toCoreAtomicString(name); 248 bool result = collection->namedPropertyQuery(propertyName, exceptionState);
|
/cts/tests/tests/animation/src/android/animation/cts/ |
AnimationActivity.java | 82 public ValueAnimator createAnimator(Object object,String propertyName, long duration, 85 ValueAnimator valueAnimator = ObjectAnimator.ofFloat(object, propertyName, start,end); 113 public ValueAnimator createObjectAnimatorForInt(Object object,String propertyName, 116 ObjectAnimator objAnimator = ObjectAnimator.ofInt(object, propertyName, start,end);
|
/external/chromium_org/v8/test/mjsunit/ |
fuzz-accessors.js | 77 var propertyName = builtInPropertyNames[k]; 78 fun(obj, propertyName);
|
/external/v8/test/mjsunit/ |
fuzz-accessors.js | 77 var propertyName = builtInPropertyNames[k]; 78 fun(obj, propertyName);
|
/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,
|