/frameworks/support/v7/mediarouter/jellybean/android/support/v7/media/ |
MediaRouterJellybean.java | 25 import java.lang.reflect.Method; 280 private Method mSelectRouteIntMethod; 303 // method on these versions of the platform. 319 + "method. Media routing may not work."); 329 * Workaround the fact that the getDefaultRoute() method does not exist in JB and JB MR1. 333 private Method mGetSystemAudioRouteMethod; 357 // Could not find the method or it does not work.
|
/packages/apps/Browser2/src/org/chromium/webview_shell/ |
WebViewBrowserActivity.java | 46 import java.lang.reflect.Method; 393 for (Method method : settings.getClass().getMethods()) { 394 if (!methodIsSimpleInspector(method)) continue; 396 summary.append(method.getName() + " : " + method.invoke(settings) + "\n"); 410 // Returns true is a method has no arguments and returns either a boolean or a String. 411 private boolean methodIsSimpleInspector(Method method) { 412 Class<?> returnType = method.getReturnType() [all...] |
/packages/apps/Messaging/src/com/android/messaging/util/ |
PhoneUtils.java | 46 import java.lang.reflect.Method; 57 * The class instance can only be obtained via the get(int subId) method parameterized 61 * A convenient getDefault() method is provided for default subId (-1) on any platform 389 final Method method = cmClass.getDeclaredMethod("getMobileDataEnabled"); local 390 method.setAccessible(true); // Make the method callable 392 mobileDataEnabled = (Boolean) method.invoke(mConnectivityManager); 611 final Method method = cmClass.getDeclaredMethod("getDataEnabled", Integer.TYPE) local [all...] |
/art/runtime/mirror/ |
class.cc | 28 #include "method.h" 340 ArtMethod* method = FindDeclaredVirtualMethod(name, signature, pointer_size); local 341 if (method != nullptr) { 342 return method; 348 method = iftable->GetInterface(i)->FindDeclaredVirtualMethod(name, signature, pointer_size); 349 if (method != nullptr) { 350 return method; 359 ArtMethod* method = FindDeclaredVirtualMethod(name, signature, pointer_size); local 360 if (method != nullptr) { 361 return method; 378 ArtMethod* method = FindDeclaredVirtualMethod(dex_cache, dex_method_idx, pointer_size); local 430 ArtMethod* method = klass->FindDeclaredDirectMethod(name, signature, pointer_size); local 441 ArtMethod* method = klass->FindDeclaredDirectMethod(name, signature, pointer_size); local 452 ArtMethod* method = klass->FindDeclaredDirectMethod(dex_cache, dex_method_idx, pointer_size); local 521 ArtMethod* method = klass->FindDeclaredVirtualMethod(name, signature, pointer_size); local 532 ArtMethod* method = klass->FindDeclaredVirtualMethod(name, signature, pointer_size); local 543 ArtMethod* method = klass->FindDeclaredVirtualMethod(dex_cache, dex_method_idx, pointer_size); local 920 auto method = methods[i]; local [all...] |
/art/test/458-checker-instruction-simplification/src/ |
Main.java | 17 import java.lang.reflect.Method; [all...] |
/cts/tools/device-setup/TestDeviceSetup/src/android/tests/getinfo/ |
DeviceInfoInstrument.java | 43 import java.lang.reflect.Method; 405 final Method method = UserManager.class.getMethod("getMaxSupportedUsers"); local 406 final Integer maxUsers = (Integer) method.invoke(null);
|
/dalvik/dx/src/com/android/dx/dex/cf/ |
CfTranslator.java | 25 import com.android.dx.cf.iface.Method; 65 * Static method that turns {@code byte[]}s containing Java 101 * Performs the main act of translation. This method is separated 139 // intern constant pool method, field and type references 255 Method one = methods.get(i); 381 * Run rop->dex again on optimized vs. non-optimized method to 383 * since converting the "real" method getting added to the
|
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/ |
DriverManagerTest.java | 24 import java.lang.reflect.Method; 77 * Test for the method DriverManager.deregisterDriver 112 Method theMethod = driverClass.getDeclaredMethod("setDriver", 122 } // end method testDeregisterDriver() 129 } // end method printClassLoader( Object ) 139 } // end method isDriverLoaded( Driver ) 174 } // end method testGetConnectionString() 237 } // end method testGetConnectionStringProperties() 277 } // end method testGetConnectionStringStringString() 311 } // end method testGetDriver( [all...] |
/external/apache-harmony/support/src/test/java/org/apache/harmony/testframework/serialization/ |
SerializationTest.java | 34 import java.lang.reflect.Method; 48 * getData() method and, optionally, assertDeserialized() method. The first one 51 * not provide specific method equals()). <br> 118 * This is the main working method of this framework. Subclasses must 168 * Working method for files generation mode. Serializes test objects 217 * equals() method and it's instances should to be compared manually. 232 // default comparator for a class that has equals(Object) method 389 * method then <code>DEFAULT_COMPARATOR</code> is selected.<br> - the 390 * method tries to select one of known comparators basing on <code>object's</code [all...] |
/external/clang/lib/Serialization/ |
ASTWriter.cpp | [all...] |
/external/guava/guava-testlib/src/com/google/common/collect/testing/ |
Helpers.java | 31 import java.lang.reflect.Method; 236 * having its size method return incorrect values. This is useful 241 * collection and the values returned by the size method 258 * method. 407 public static Method getMethod(Class<?> clazz, String name) {
|
/external/guava/guava-tests/test/com/google/common/collect/ |
TreeMultisetTest.java | 38 import java.lang.reflect.Method; 357 for (Method m : TreeMultiset.class.getMethods()) { 362 fail("No bridge method found");
|
/external/guava/guava-tests/test/com/google/common/io/ |
CloserTest.java | 33 import java.lang.reflect.Method; 366 Method getSuppressed = Throwable.class.getDeclaredMethod("getSuppressed");
|
/external/guice/core/test/com/google/inject/ |
KeyTest.java | 37 import java.lang.reflect.Method; 79 Method m = getClass().getMethod("foo", List.class, List.class); 231 @Target({ ElementType.FIELD, ElementType.PARAMETER, ElementType.METHOD }) 234 @Target({ ElementType.FIELD, ElementType.PARAMETER, ElementType.METHOD })
|
/external/proguard/src/proguard/preverify/ |
CodePreverifier.java | 75 public void visitCodeAttribute(Clazz clazz, Method method, CodeAttribute codeAttribute) 78 // Catch any unexpected exceptions from the actual visiting method. 82 visitCodeAttribute0(clazz, method, codeAttribute); 88 System.err.println(" Method = ["+method.getName(clazz)+method.getDescriptor(clazz)+"]"); 96 public void visitCodeAttribute0(Clazz clazz, Method method, CodeAttribute codeAttribute) 100 // method.getName(clazz).equals("abc") [all...] |
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/res/ |
ViewLoader.java | 23 import java.lang.reflect.Method; 182 Method onFinishInflate = View.class.getDeclaredMethod("onFinishInflate");
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowActivity.java | 20 import java.lang.reflect.Method; 521 private Method method; field in class:ShadowActivity.ActivityInvoker 525 method = Activity.class.getDeclaredMethod(methodName, argumentClasses); 526 method.setAccessible(true); 539 return method.invoke(realActivity, parameters);
|
/external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/activity/ |
ApiBrowser.java | 55 import java.lang.reflect.Method; 108 Method method = descriptor.getMethod(); 109 if (method.isAnnotationPresent(RpcDeprecated.class)) { 111 } else if (method.isAnnotationPresent(RpcMinSdk.class)) { 112 int requiredSdkLevel = method.getAnnotation(RpcMinSdk.class).value();
|
/external/smali/smalidea/src/main/java/org/jf/smalidea/psi/impl/ |
SmaliClass.java | 50 import com.sun.jdi.Method; 185 return getStubOrPsiChildren(SmaliElementTypes.METHOD, new SmaliMethod[0]); 197 // TODO: do we need to return the <clinit> method here? 235 return PsiClassImplUtil.getAllWithSubstitutorsByMap(this, PsiClassImplUtil.MemberType.METHOD); 389 SmaliMethod[] smaliMethods = findChildrenByType(SmaliElementTypes.METHOD, SmaliMethod.class); 392 //TODO: check the start line+end line of the method 395 List<Method> methods = type.methodsByName(smaliMethod.getName(),
|
/frameworks/base/cmds/uiautomator/library/testrunner-src/com/android/uiautomator/testrunner/ |
UiAutomatorTestRunner.java | 39 import java.lang.reflect.Method; 293 Method testMethod = null; 422 * subclass may override this method to perform further preparation
|
/frameworks/base/core/java/android/view/ |
MenuInflater.java | 36 import java.lang.reflect.Method; 207 * The method is a hook for layoutlib to do its magic. 216 * The method is a hook for layoutlib to do its magic. 234 private Method mMethod;
|
/frameworks/support/v7/appcompat/src/android/support/v7/view/ |
SupportMenuInflater.java | 45 import java.lang.reflect.Method; 234 private Method mMethod;
|
/libcore/dom/src/test/java/org/w3c/domts/ |
DOMTestCase.java | 16 import java.lang.reflect.Method; 54 * This method is called by the main() for each test and locates the 77 // find and call its execute method method 80 Method execMethod =
|
/libcore/luni/src/test/java/libcore/javax/crypto/ |
ECDHKeyAgreementTest.java | 25 import java.lang.reflect.Method; 351 throw new RuntimeException("Failed to deduce calling method name from stack trace"); 355 Method method; local 357 method = getClass().getDeclaredMethod(invokedMethodName, Provider.class); 359 throw new AssertionFailedError("Failed to find per-Provider test method " 365 method.invoke(this, provider);
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
bdamedia.h | 32 KSMETHOD Method; 41 KSMETHOD Method; 147 BDA Device Configuration Method Set {71985F45-1CA1-11d3-9CC8-00C04F7971E0} 223 BDA Change Sync Method Set {FD0A5AF3-B41D-11d2-9C95-00C04F7971E0}
|