/cts/tests/autofillservice/src/android/autofillservice/cts/ |
D | UiBot.java | 556 public UiObject2 assertUpdateShowing(int... types) throws Exception { 558 null, SAVE_TIMEOUT, types); 612 public UiObject2 assertSaveShowing(String description, int... types) throws Exception { 614 description, SAVE_TIMEOUT, types); 617 public UiObject2 assertSaveShowing(String description, Timeout timeout, int... types) 620 description, timeout, types); 624 int... types) throws Exception { 626 SAVE_TIMEOUT, types); 631 String description, Timeout timeout, int... types) throws Exception { 657 switch (types.length) { [all …]
|
/cts/tests/tests/telephony/current/src/android/telephony/cts/ |
D | SignalStrengthTest.java | 93 Set<Class<? extends CellSignalStrength>> types = in testSignalStrength() local 98 if (dataType != null) types.add(dataType); in testSignalStrength() 105 types.add(voiceType); in testSignalStrength() 112 types.add(voiceType); in testSignalStrength() 117 types.add(CellSignalStrengthNr.class); in testSignalStrength() 122 types.contains(css.getClass())); in testSignalStrength()
|
/cts/tests/tests/media/src/android/media/cts/ |
D | MediaCodecListTest.java | 233 String[] types = info.getSupportedTypes(); in testGetCapabilities() local 234 for (int j = 0; j < types.length; ++j) { in testGetCapabilities() 235 Log.d(TAG, "calling getCapabilitiesForType " + types[j]); in testGetCapabilities() 236 CodecCapabilities cap = info.getCapabilitiesForType(types[j]); in testGetCapabilities() 363 String[] types = info.getSupportedTypes(); in getSupportedCodecTypes() local 364 assertTrue("Unexpected number of supported types", types.length > 0); in getSupportedCodecTypes() 366 for (int j = 0; j < types.length; ++j) { in getSupportedCodecTypes() 367 supportedList.add(new CodecType(types[j], isEncoder, null /* sampleFormat */)); in getSupportedCodecTypes() 470 String[] types = info.getSupportedTypes(); in testAudioCodecChannels() local 471 for (int j = 0; j < types.length; ++j) { in testAudioCodecChannels() [all …]
|
D | MediaCodecCapabilitiesTest.java | 795 String[] types = info.getSupportedTypes(); in testGetMaxSupportedInstances() local 796 for (int j = 0; j < types.length; ++j) { in testGetMaxSupportedInstances() 797 if (!knownTypes(types[j])) { in testGetMaxSupportedInstances() 798 Log.d(TAG, "skipping unknown type " + types[j]); in testGetMaxSupportedInstances() 801 Log.d(TAG, "calling getCapabilitiesForType " + types[j]); in testGetMaxSupportedInstances() 802 CodecCapabilities caps = info.getCapabilitiesForType(types[j]); in testGetMaxSupportedInstances() 814 info.isEncoder(), info.getName(), types[j], caps, trials); in testGetMaxSupportedInstances() 853 "\" type=\"" + types[j] + "\" >"; in testGetMaxSupportedInstances()
|
D | ExtractDecodeEditEncodeMuxTest.java | 1222 String[] types = codecInfo.getSupportedTypes(); in selectCodec() local 1223 for (int j = 0; j < types.length; j++) { in selectCodec() 1224 if (types[j].equalsIgnoreCase(mimeType)) { in selectCodec()
|
/cts/hostsidetests/security/src/android/security/cts/ |
D | SELinuxHostTest.java | 378 Set<String> types = new HashSet<>(); in sepolicyAnalyzeGetTypesAssociatedWithAttribute() local 381 types.add(type.trim()); in sepolicyAnalyzeGetTypesAssociatedWithAttribute() 383 return types; in sepolicyAnalyzeGetTypesAssociatedWithAttribute() 433 Set<String> types = in testNoExemptionsForBinderInVendorBan() local 435 if (!types.isEmpty()) { in testNoExemptionsForBinderInVendorBan() 436 List<String> sortedTypes = new ArrayList<>(types); in testNoExemptionsForBinderInVendorBan() 455 Set<String> types = sepolicyAnalyzeGetTypesAssociatedWithAttribute( in testNoExemptionsForSocketsUseWithinHalServer() local 457 if (!types.isEmpty()) { in testNoExemptionsForSocketsUseWithinHalServer() 458 List<String> sortedTypes = new ArrayList<>(types); in testNoExemptionsForSocketsUseWithinHalServer() 479 Set<String> types = in testNoExemptionsForSocketsBetweenCoreAndVendorBan() local [all …]
|
/cts/tests/tests/net/src/android/net/rtp/cts/ |
D | AudioCodecTest.java | 67 boolean[] types = new boolean[128]; in testGetCodecs() 69 assertFalse(types[codec.type]); in testGetCodecs() 70 types[codec.type] = true; in testGetCodecs()
|
/cts/tests/openglperf2/ |
D | cob_exporter.py | 24 class COBExporter(bpy.types.Operator, ExportHelper): 68 bpy.types.INFO_MT_file_export.append(menu_func) 72 bpy.types.INFO_MT_file_export.remove(menu_func)
|
/cts/tests/signature/lib/common/src/android/signature/cts/ |
D | ReflectionHelper.java | 353 private static String concatWildcardTypes(Type[] types) { in concatWildcardTypes() argument 356 for (Type t : types) { in concatWildcardTypes() 358 if (++elementNum < types.length) { in concatWildcardTypes() 382 Type[] types = pt.getActualTypeArguments(); in typeToString() local 383 for (Type t : types) { in typeToString() 385 if (++elementNum < types.length) { in typeToString()
|
/cts/tests/backup/src/android/backup/cts/ |
D | AgentBindingTest.java | 70 String methodName, Class<?>[] types, Object[] args) throws Exception { in callActivityManagerMethod() argument 73 Method bindBackupAgentMethod = activityManagerClass.getMethod(methodName, types); in callActivityManagerMethod()
|
/cts/tests/tests/content/src/android/content/cts/ |
D | ContentResolverSyncTestCase.java | 302 SyncAdapterType[] types = ContentResolver.getSyncAdapterTypes(); 303 assertNotNull(types); 304 int length = types.length; 308 SyncAdapterType type = types[n];
|
/cts/tests/signature/api-check/src/jni/ |
D | classdescriptors.cpp | 184 jobjectArray types = env->NewObjectArray(count, env->FindClass("java/lang/String"), nullptr); in Java_android_signature_cts_api_BootClassPathClassesProvider_getClassMemberNamesAndTypes() local 208 env->SetObjectArrayElement(types, i, env->NewStringUTF(type.Get())); in Java_android_signature_cts_api_BootClassPathClassesProvider_getClassMemberNamesAndTypes() 219 env->SetObjectArrayElement(result, 1, types); in Java_android_signature_cts_api_BootClassPathClassesProvider_getClassMemberNamesAndTypes()
|
/cts/tests/tests/renderscript/src/android/renderscript/cts/ |
D | single_source_alloc.rscript | 27 // "index-of-the-cell-starting-from-zero". For vector types, the 'x' field 306 // These types are valid for scalar and vectors, but don't support pixel 317 // These types are valid only for scalars 330 // These data types are only for pixels and a particular data_kind 340 // These data types are not supported from single-source 362 // Create 1D, 2D, 3D types
|
D | primitives.rscript | 15 // Testing primitive types
|
/cts/tests/security/src/android/keystore/cts/ |
D | AuthorizationList.java | 366 List<String> types = Lists.newArrayList(); in userAuthTypeToString() local 368 types.add("Fingerprint"); in userAuthTypeToString() 370 types.add("Password"); in userAuthTypeToString() 371 return joinStrings(types); in userAuthTypeToString()
|
/cts/tests/tests/rscpp/librscpptest/ |
D | primitives.rscript | 3 // Testing primitive types
|
/cts/hostsidetests/securitybulletin/securityPatch/Bug-115739809/ |
D | poc.cpp | 201 int types[] = {InputMessage::TYPE_KEY, InputMessage::TYPE_MOTION, InputMessage::TYPE_FINISHED}; in main() local 202 for (int type : types) { in main()
|
/cts/hostsidetests/securitybulletin/securityPatch/CVE-2016-8430/ |
D | Android.bp | 25 "-Wno-incompatible-pointer-types",
|
/cts/hostsidetests/securitybulletin/securityPatch/CVE-2016-8429/ |
D | Android.bp | 25 "-Wno-incompatible-pointer-types",
|
/cts/hostsidetests/securitybulletin/securityPatch/CVE-2016-8428/ |
D | Android.bp | 25 "-Wno-incompatible-pointer-types",
|
/cts/tests/media/src/android/mediav2/cts/ |
D | EncoderColorAspectsTest.java | 123 String[] types = codecInfo.getSupportedTypes(); in input() local 124 for (String type : types) { in input()
|
/cts/ |
D | Android.bp | 66 // Used with different module types, this is equivalent to:
|
/cts/hostsidetests/inputmethodservice/deviceside/devicetest/src/android/inputmethodservice/cts/devicetest/ |
D | InputMethodServiceDeviceTest.java | 286 final DeviceEventType... types) { in sequenceOfTypes() argument 288 return SequenceMatcher.of(Arrays.stream(types) in sequenceOfTypes()
|
/cts/tests/tests/proto/src/android/util/proto/cts/ |
D | test.proto | 38 * Message with all of the field types.
|
/cts/tests/tests/tv/src/android/media/tv/cts/ |
D | TvViewTest.java | 364 final int[] types = { TvTrackInfo.TYPE_AUDIO, TvTrackInfo.TYPE_VIDEO, in testTrackChange() 366 for (int type : types) { in testTrackChange()
|