Home
last modified time | relevance | path

Searched refs:methods (Results 1 – 25 of 398) sorted by relevance

12345678910>>...16

/cts/tools/release-parser/tests/resources/
DCtsAslrMallocTestCases32.pb.txt5 methods {
8 methods {
11 methods {
14 methods {
17 methods {
20 methods {
23 methods {
26 methods {
29 methods {
32 methods {
[all …]
DlibEGL.so.pb.txt7 methods {
10 methods {
13 methods {
16 methods {
19 methods {
22 methods {
25 methods {
28 methods {
31 methods {
34 methods {
[all …]
DCtsJniTestCases.apk.pb.txt161 methods {
170 methods {
175 methods {
179 methods {
186 methods {
191 methods {
198 methods {
205 methods {
210 methods {
215 methods {
[all …]
DShell.apk.pb.txt186 methods {
191 methods {
196 methods {
200 methods {
204 methods {
208 methods {
212 methods {
216 methods {
221 methods {
226 methods {
[all …]
DHelloActivity.apk.pb.txt49 methods {
58 methods {
62 methods {
66 methods {
71 methods {
/cts/apps/CtsVerifier/
Dproguard.flags2 native <methods>;
5 # ensure we keep public sensor test methods, these are needed at runtime
7 public <methods>;
10 public <methods>;
13 # ensure we keep public Gnss Measurement test methods, these are needed at runtime
15 public <methods>;
18 public <methods>;
21 # ensure we keep public camera test methods, these are needed at runtime
23 public <methods>;
27 public <methods>;
[all …]
/cts/tests/tests/jni/libjnitest/
Dandroid_jni_cts_JniCppTest.cpp38 static JNINativeMethod methods[] = { variable
46 methods, sizeof(methods) / sizeof(JNINativeMethod)); in register_JniCppTest()
Dandroid_jni_cts_JniCTest.c38 static JNINativeMethod methods[] = { variable
46 methods, sizeof(methods) / sizeof(JNINativeMethod)); in register_JniCTest()
/cts/common/device-side/bedstead/dpmwrapper/src/main/java/com/android/bedstead/dpmwrapper/
DDeviceOwnerHelper.java211 List<Method> methods = new ArrayList<>(); in findMethodWithNullParameterCall()
215 methods.add(method); in findMethodWithNullParameterCall()
218 if (VERBOSE) Log.v(TAG, "Methods found: " + methods); in findMethodWithNullParameterCall()
220 switch (methods.size()) { in findMethodWithNullParameterCall()
224 return methods.get(0); in findMethodWithNullParameterCall()
226 return findBestMethod(methods, parameterTypes); in findMethodWithNullParameterCall()
231 private static Method findBestMethod(List<Method> methods, Class<?>[] parameterTypes) { in findBestMethod() argument
233 Log.v(TAG, "Found " + methods.size() + " methods: " + methods); in findBestMethod()
237 _methods: for (Method method : methods) { in findBestMethod()
/cts/tools/cts-api-coverage/src/com/android/cts/apimap/
DCallGraphManager.java54 public void addMethods(Map<String, MethodProfile> methods) { in addMethods() argument
55 mApiMethods.putAll(methods); in addMethods()
107 List<MethodProfile> methods = tarjan.getComponent(stack.peek()); in resolveMethodCoveredApis() local
108 String methodSignature = methods.get(0).getMethodSignatureWithClass(); in resolveMethodCoveredApis()
114 for (MethodProfile method: methods) { in resolveMethodCoveredApis()
118 for (MethodProfile method: methods) { in resolveMethodCoveredApis()
132 for (MethodProfile method: methods) { in resolveMethodCoveredApis()
/cts/hostsidetests/appsecurity/test-apps/IsolatedSplitApp/native_split/jni/
Dcom_android_cts_isolatedsplitapp_Native.cpp73 static JNINativeMethod methods[] = { variable
99 if (!registerNativeMethods(env, classPathName, methods, sizeof(methods) / sizeof(methods[0]))) { in registerNatives()
/cts/tests/tests/os/jni/
Dandroid_os_cts_SeccompTest.cpp77 static JNINativeMethod methods[] = { variable
90 return env->RegisterNatives(clazz, methods, sizeof(methods) / sizeof(JNINativeMethod)); in register_android_os_cts_SeccompTest()
/cts/common/device-side/bedstead/remoteframeworkclasses/src/processor/main/java/com/android/bedstead/remoteframeworkclasses/processor/
DApis.java68 ImmutableSet.Builder<MethodSignature> methods = ImmutableSet.builder();
73 methods.addAll(
78 return new Apis(methods.build());
156 private Apis(ImmutableSet<MethodSignature> methods) {
157 mMethods = methods;
163 public ImmutableSet<MethodSignature> methods() {
/cts/hostsidetests/appsecurity/test-apps/SplitApp/jni/
Dcom_android_cts_splitapp_Native.cpp100 static JNINativeMethod methods[] = { variable
128 if (!registerNativeMethods(env, classPathName, methods, sizeof(methods) / sizeof(methods[0]))) { in registerNatives()
/cts/tests/tests/content/BinderPermissionTestService/
DREADME.txt1 A test project that publishes a Binder service. The methods of this service
3 Context tests to verify that methods like enforceCallingPermission()
/cts/tests/tests/companion/multidevice/client/
Dproguard.flags21 # Allows proguard to make private and protected methods and fields public as
23 # methods.
/cts/hostsidetests/adpf/app/hintsession/src/cpp/
DJNIManager.cpp75 static const JNINativeMethod methods[] = { in JNI_OnLoad() local
81 int rc = env->RegisterNatives(deviceActivityClass, methods, in JNI_OnLoad()
82 sizeof(methods) / sizeof(JNINativeMethod)); in JNI_OnLoad()
/cts/tools/vm-tests-tf/build/src/util/build/
DBuildCTSMainsSources.java74 private void handleTest(String fqcn, List<String> methods) { in handleTest() argument
79 Collections.sort(methods, new Comparator<String>() { in handleTest()
86 for (String method : methods) { in handleTest()
/cts/common/device-side/bedstead/harrier/src/main/java/com/android/bedstead/harrier/
DBedsteadJUnit4.java453 Set<FrameworkMethod> methods = new HashSet<>(); in getBasicTests() local
455 methods.addAll(testClass.getAnnotatedMethods(Test.class)); in getBasicTests()
456 methods.addAll(testClass.getAnnotatedMethods(PolicyAppliesTest.class)); in getBasicTests()
457 methods.addAll(testClass.getAnnotatedMethods(PolicyDoesNotApplyTest.class)); in getBasicTests()
458 methods.addAll(testClass.getAnnotatedMethods(CanSetPolicyTest.class)); in getBasicTests()
459 methods.addAll(testClass.getAnnotatedMethods(CannotSetPolicyTest.class)); in getBasicTests()
460 methods.addAll(testClass.getAnnotatedMethods(UserTest.class)); in getBasicTests()
461 methods.addAll(testClass.getAnnotatedMethods(CrossUserTest.class)); in getBasicTests()
462 methods.addAll(testClass.getAnnotatedMethods(PermissionTest.class)); in getBasicTests()
463 methods.addAll(testClass.getAnnotatedMethods(MostRestrictiveCoexistenceTest.class)); in getBasicTests()
[all …]
/cts/tests/tests/instantapp/src/android/cts/instantapp/resolver/
DResolverServiceMethodFallbackTest.kt111 val methods = arrayOf("ResolveInfo" to infoList, "IntentFilter" to filterList) in <lambda>() constant
116 methods.flatMap { (name, methods) -> in <lambda>() method
118 arrayOf(version, methods, info, name, info.intent.isWebIntent) in <lambda>()
/cts/apps/CtsVerifier/src/com/android/cts/verifier/p2p/testcase/
DConnectReqTestCase.java51 Method[] methods = WifiP2pManager.class.getMethods(); in setUp() local
52 for (int i = 0; i < methods.length; i++) { in setUp()
53 if (methods[i].getName().equals("deletePersistentGroup")) { in setUp()
56 methods[i].invoke(mP2pMgr, mChannel, netid, null); in setUp()
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/goto_32/d/
DT_goto_32_2.smali20 # direct methods
30 # virtual methods
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/goto_16/d/
DT_goto_16_2.smali20 # direct methods
30 # virtual methods
DT_goto_16_4.smali20 # direct methods
30 # virtual methods
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/invoke_direct_range/d/T_invoke_direct_range_26.smalis/
DTTestInterfaceImpl.smali23 # direct methods
33 # virtual methods

12345678910>>...16