Home
last modified time | relevance | path

Searched refs:getMethod (Results 1 – 24 of 24) sorted by relevance

/cts/tests/tests/renderscript/src/android/renderscript/cts/
DSmallStructsTest.java112 return ScriptC_small_structs.class.getMethod(name, getUnwrappedClassForType(type)); in getInitialValueSetter()
151 Allocation alloc = (Allocation) scriptFieldClass.getMethod("getAllocation") in testSmallStructsOfCharArray()
155 Method set_bytes = scriptFieldClass.getMethod("set_bytes", in testSmallStructsOfCharArray()
168 Method modify = ScriptC_small_structs.class.getMethod( in testSmallStructsOfCharArray()
172 Method verify = ScriptC_small_structs.class.getMethod( in testSmallStructsOfCharArray()
208 Allocation alloc = (Allocation) scriptFieldClass.getMethod("getAllocation") in testSmallStructsOfHeterogeneousTypes()
215 Method fieldASetter = scriptFieldClass.getMethod("set_a", in testSmallStructsOfHeterogeneousTypes()
221 Method fieldBSetter = scriptFieldClass.getMethod("set_b", in testSmallStructsOfHeterogeneousTypes()
227 Method modify = ScriptC_small_structs.class.getMethod( in testSmallStructsOfHeterogeneousTypes()
231 Method verify = ScriptC_small_structs.class.getMethod( in testSmallStructsOfHeterogeneousTypes()
/cts/tests/tests/security/src/android/security/cts/
DPutOverflowTest.java26 Method getInstance = keystoreClass.getMethod("getInstance"); in testCrash()
27 Method put = keystoreClass.getMethod("put", in testCrash()
/cts/tests/tests/keystore/src/android/keystore/cts/
DPutOverflowTest.java26 Method getInstance = keystoreClass.getMethod("getInstance"); in testCrash()
27 Method put = keystoreClass.getMethod("put", in testCrash()
/cts/libs/migration/src/com/android/cts/migration/
DMigrationHelper.java29 Method method = cls.getMethod("getTestsDir"); in getTestFile()
43 Method builder = cls.getMethod("createBuildHelper", IBuildInfo.class); in getTestFile()
45 Method method = cls.getMethod("getTestApp", String.class); in getTestFile()
/cts/hostsidetests/devicepolicy/app/ManagedProfile/src/com/android/cts/managedprofile/
DPasswordMinimumRestrictionsTest.java187 final Method setMethod = DevicePolicyManager.class.getMethod(setMethodName(methodName), in invokeSetMethod()
197 final Method getMethod = in invokeGetMethod() local
198 DevicePolicyManager.class.getMethod(getMethodName(methodName), ComponentName.class); in invokeGetMethod()
199 return (int) getMethod.invoke(dpm, componentName); in invokeGetMethod()
/cts/tests/tests/util/src/android/util/cts/
DStrictJarFileTest.java84 assertEquals(ZipEntry.DEFLATED, ze.getMethod()); in testIteration()
90 assertEquals(ZipEntry.DEFLATED, ze.getMethod()); in testIteration()
100 assertEquals(ZipEntry.DEFLATED, ze.getMethod()); in testIteration()
113 assertEquals(ZipEntry.DEFLATED, ze.getMethod()); in testFindEntry()
DArrayMapTest.java472 Method appendMethod = ArrayMap.class.getMethod("append", Object.class, Object.class);
478 Method writeArrayMapMethod = Parcel.class.getMethod("writeArrayMap", ArrayMap.class);
484 Parcel.class.getMethod("readArrayMap", ArrayMap.class, ClassLoader.class).invoke(
/cts/tools/dex-tools/test/dex/reader/
DDexFileReaderTests.java99 DexMethod method = getMethod(clazz, "publicStringMethodInt", "I"); in testT0()
101 method = getMethod(clazz, "protectedStringMethodInt", "I");/** a.b.C */ in testT0()
103 method = getMethod(clazz, "defaultStringMethodInt", "I"); in testT0()
105 method = getMethod(clazz, "privateStringMethodInt", "I"); in testT0()
330 DexMethod method = getMethod(A, "m", "I"); in testParameterAnnotation()
DDexTestsCommon.java129 protected DexMethod getMethod(DexClass clazz, String methodName, String... typeNames) { in getMethod() method in DexTestsCommon
/cts/common/device-side/device-info/src/com/android/compatibility/common/deviceinfo/
DUserDeviceInfo.java38 Method method = UserManager.class.getMethod("getMaxSupportedUsers"); in getMaxSupportedUsers()
/cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/
DApiClass.java116 ApiMethod apiMethod = getMethod(name, parameterTypes, returnType); in markMethodCovered()
159 private ApiMethod getMethod(String name, List<String> parameterTypes, String returnType) { in getMethod() method in ApiClass
/cts/tests/tests/permission/src/android/permission/cts/
DAppOpsTest.java49 Method setMode = mAppOps.getClass().getMethod("setMode", int.class, int.class, in testSetMode()
/cts/tests/tests/os/src/android/os/cts/
DWorkSourceTest.java43 mAddUid = WorkSource.class.getMethod("add", new Class[] { int.class }); in setUp()
44 mAddUidName = WorkSource.class.getMethod("add", new Class[] { int.class, String.class }); in setUp()
45 …mAddReturningNewbs = WorkSource.class.getMethod("addReturningNewbs", new Class[] { WorkSource.clas… in setUp()
46 …mSetReturningDiffs = WorkSource.class.getMethod("setReturningDiffs", new Class[] { WorkSource.clas… in setUp()
47 mStripNames = WorkSource.class.getMethod("stripNames", new Class[] { }); in setUp()
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/base/
DSensorCtsTestActivity.java162 testClass.getMethod("suite"); in hasSuiteMethod()
/cts/apps/CtsVerifier/src/com/android/cts/verifier/location/base/
DGnssCtsTestActivity.java157 testClass.getMethod("suite"); in hasSuiteMethod()
/cts/tests/tests/webkit/src/android/webkit/cts/
DWebViewClientTest.java474 assertEquals(server.getLastRequest(mainPath).getRequestLine().getMethod(), in testShouldInterceptRequestParams()
475 client.interceptRequest.getMethod()); in testShouldInterceptRequestParams()
DWebViewTest.java525 assertEquals(request.getRequestLine().getMethod(), "POST");
/cts/libs/testserver/src/android/webkit/cts/
DCtsTestServer.java545 Log.i(TAG, requestLine.getMethod() + ": " + uriString); in getResponse()
555 if (requestLine.getMethod().equals("POST")) { in getResponse()
DTestWebServer.java402 Log.i(TAG, requestLine.getMethod() + ": " + requestLine.getUri()); in getResponse()
/cts/tools/device-setup/TestDeviceSetup/src/android/tests/getinfo/
DDeviceInfoInstrument.java405 final Method method = UserManager.class.getMethod("getMaxSupportedUsers"); in getMultiUserInfo()
/cts/tools/utils/
DCollectAllTests.java366 Method testMethod = testClass.getMethod(testName, (Class[])null); in getAnnotation()
/cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
DDeqpTestRunner.java1034 recoverDeviceMethod = mDevice.getClass().getMethod("recoverDevice"); in recoverDevice()
/cts/tools/dex-tools/dex/
Dclasses.out.dex47284 public java.lang.String getMethod()
144734 public abstract java.lang.String getMethod()
145566 public abstract java.lang.String getMethod()
145596 public abstract java.lang.String getMethod()
145633 public java.lang.String getMethod()
145674 public java.lang.String getMethod()
145694 public java.lang.String getMethod()
145717 public java.lang.String getMethod()
145737 public java.lang.String getMethod()
145757 public java.lang.String getMethod()
[all …]
Dclasses0.out.dex15487 public transient java.lang.reflect.Method getMethod(
55262 public int getMethod()