Home
last modified time | relevance | path

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

12345678910>>...135

/cts/tests/framework/base/windowmanager/src/android/server/wm/
DWindowInsetsTest.java61 .setSystemWindowInsets(Insets.of(1, 2, 3, 4)) in testBuilder()
62 .setStableInsets(Insets.of(5, 6, 7, 8)) in testBuilder()
63 .setSystemGestureInsets(Insets.of(9, 10, 11, 12)) in testBuilder()
64 .setMandatorySystemGestureInsets(Insets.of(13, 14, 15, 16)) in testBuilder()
65 .setTappableElementInsets(Insets.of(17, 18, 19, 20)) in testBuilder()
69 assertEquals(Insets.of(1, 2, 3, 4), insets.getSystemWindowInsets()); in testBuilder()
70 assertEquals(Insets.of(5, 6, 7, 8), insets.getStableInsets()); in testBuilder()
71 assertEquals(Insets.of(9, 10, 11, 12), insets.getSystemGestureInsets()); in testBuilder()
72 assertEquals(Insets.of(13, 14, 15, 16), insets.getMandatorySystemGestureInsets()); in testBuilder()
73 assertEquals(Insets.of(17, 18, 19, 20), insets.getTappableElementInsets()); in testBuilder()
[all …]
/cts/tests/tests/graphics/src/android/graphics/cts/
DInsetsTest.java37 assertEquals(Insets.NONE, Insets.of(0, 0, 0, 0)); in testEmptyInsets()
42 Insets insets = Insets.of(1, 2, 3, 4); in testInsetsAppliedInOrder()
51 assertEquals(Insets.NONE, Insets.of(null)); in testInsetsFromNullRect()
57 Insets insets = Insets.of(rect); in testInsetsFromRect()
67 Insets insets1 = Insets.of(rect); in testInsetsEquality()
68 Insets insets2 = Insets.of(10, 20, 30, 40); in testInsetsEquality()
74 Insets insets1 = Insets.of(10, 20, 30, 40); in testAdd()
75 Insets insets2 = Insets.of(50, 60, 70, 80); in testAdd()
76 assertEquals(Insets.add(insets1, insets2), Insets.of(60, 80, 100, 120)); in testAdd()
81 Insets insets1 = Insets.of(10, 20, 30, 40); in testSubtract()
[all …]
/cts/hostsidetests/appcompat/compatchanges/src/com/android/cts/appcompat/
DCompatChangesSystemApiTest.java53 /*enabledChanges*/ImmutableSet.of(CTS_SYSTEM_API_CHANGEID), in testIsChangeEnabled()
54 /*disabledChanges*/ ImmutableSet.of()); in testIsChangeEnabled()
60 /*enabledChanges*/ImmutableSet.of(CTS_SYSTEM_API_CHANGEID), in testIsChangeEnabledPackageName()
61 /*disabledChanges*/ ImmutableSet.of()); in testIsChangeEnabledPackageName()
66 /*enabledChanges*/ImmutableSet.of(CTS_SYSTEM_API_CHANGEID), in testIsChangeEnabledUid()
67 /*disabledChanges*/ ImmutableSet.of()); in testIsChangeEnabledUid()
72 /*enabledChanges*/ImmutableSet.of(), in testIsChangeDisabled()
73 /*disabledChanges*/ ImmutableSet.of(CTS_SYSTEM_API_CHANGEID)); in testIsChangeDisabled()
79 /*enabledChanges*/ImmutableSet.of(), in testIsChangeDisabledPackageName()
80 /*disabledChanges*/ ImmutableSet.of(CTS_SYSTEM_API_CHANGEID)); in testIsChangeDisabledPackageName()
[all …]
/cts/hostsidetests/sustainedperf/dhrystone/
DLICENSE.TXT4 University of Illinois/NCSA
7 Copyright (c) 2003-2015 University of Illinois at Urbana-Champaign.
14 University of Illinois at Urbana-Champaign
18 Permission is hereby granted, free of charge, to any person obtaining a copy of
22 of the Software, and to permit persons to whom the Software is furnished to do
25 * Redistributions of source code must retain the above copyright notice,
26 this list of conditions and the following disclaimers.
29 this list of conditions and the following disclaimers in the
32 * Neither the names of the LLVM Team, University of Illinois at
33 Urbana-Champaign, nor the names of its contributors may be used to
[all …]
DRationale13 CPU/compiler performance measurement, in particular in the area of
19 With the increasing use of the benchmark, it seems necessary to
21 function. Version 2 of Dhrystone is the result of such a re-
31 There is an obvious need for a common C version of Dhrystone, since C
33 class of systems (microcomputers, minicomputers, workstations) where
35 one C version of Dhrystone such that results can be compared without
48 danger that benchmarking results obtained by a naive application of
49 Dhrystone - without inspection of the code that was generated - could
52 The overall policiy for version 2 has been that the distribution of
55 necessary; their impact should be negligible.) Also, the order of
[all …]
/cts/apps/CtsVerifier/res/raw/
Dopencv_library_license16 Third party copyrights are property of their respective owners.
21 * Redistributions of source code must retain the above copyright notice,
22 this list of conditions and the following disclaimer.
25 this list of conditions and the following disclaimer in the documentation
28 * Neither the names of the copyright holders nor the names of the contributors
34 warranties of merchantability and fitness for a particular purpose are disclaimed.
37 (including, but not limited to, procurement of substitute goods or services;
38 loss of use, data, or profits; or business interruption) however caused
39 and on any theory of liability, whether in contract, strict liability,
40 or tort (including negligence or otherwise) arising in any way out of
[all …]
/cts/apps/CtsVerifier/libs/
Dopencv-android_LICENSE13 * Redistributions of source code must retain the above copyright notice,
14 this list of conditions and the following disclaimer.
17 this list of conditions and the following disclaimer in the documentation
20 * Neither the names of the copyright holders nor the names of the contributors
26 warranties of merchantability and fitness for a particular purpose are disclaimed.
29 (including, but not limited to, procurement of substitute goods or services;
30 loss of use, data, or profits; or business interruption) however caused
31 and on any theory of liability, whether in contract, strict liability,
32 or tort (including negligence or otherwise) arising in any way out of
33 the use of this software, even if advised of the possibility of such damage.
/cts/hostsidetests/tagging/src/com/android/cts/tagging/
DTaggingDefaultTest.java45 /*enabledChanges*/ImmutableSet.of(NATIVE_HEAP_POINTER_TAGGING_CHANGE_ID), in testHeapTaggingCompatFeatureEnabled()
46 /*disabledChanges*/ ImmutableSet.of()); in testHeapTaggingCompatFeatureEnabled()
54 /*enabledChanges*/ImmutableSet.of(), in testHeapTaggingCompatFeatureDisabled()
55 /*disabledChanges*/ ImmutableSet.of(NATIVE_HEAP_POINTER_TAGGING_CHANGE_ID)); in testHeapTaggingCompatFeatureDisabled()
63 /*enabledChanges*/ ImmutableSet.of(NATIVE_MEMORY_TAGGING_CHANGE_ID), in testMemoryTagChecksCompatFeatureEnabled()
64 /*disabledChanges*/ImmutableSet.of()); in testMemoryTagChecksCompatFeatureEnabled()
72 /*enabledChanges*/ImmutableSet.of(), in testMemoryTagChecksCompatFeatureDisabled()
73 /*disabledChanges*/ ImmutableSet.of(NATIVE_MEMORY_TAGGING_CHANGE_ID)); in testMemoryTagChecksCompatFeatureDisabled()
/cts/tests/tests/location/protos/
Dephemeris.proto33 // Issue of data (ephemeris).
36 // Issue of data (clock).
39 // Time of clock (second).
42 // Time of ephemeris (second).
45 // Transmission time of the message.
55 // Square root of semi-major axis
64 // Rate of inclination angle (radians/sec).
67 // Argument of perigee.
70 // Longitude of ascending node of orbit plane at the beginning of week.
73 // Rate of right ascension.
[all …]
/cts/tests/tests/renderscript/src/android/renderscript/cts/
Dstruct_field.rscript6 * You may obtain a copy of the License at
20 // multiple fields of type struct. Java sets the script global
50 // Fragment of incoming argument list: Fields for struct InnerOne.
55 // Fragment of incoming argument list: Fields for struct InnerOne
61 // Fragment of incoming argument list: Fields for element of array of
68 // Fragment of incoming argument list: Fields for element of array of
92 // Compare contents of a struct InnerOne instance against incoming argument values.
104 // Compare contents of a struct InnerOne instance within global
110 // Compare contents of element of array of struct InnerOne
116 // Compare contents of element of array of struct InnerTwo
/cts/tests/tests/renderscript/src/android/renderscript/cts/refocus/
Dimage_and_kernel.rsh6 // width-by-height is the dimension of a padded image with a margin.
9 // The dimension of the original unpadded image is
21 // of a stack of kernel matrices.
23 // The starting position of a kernel matrix in a buffer of a stack of kernel
27 // The matrix is of size (2*radius_y+1)-by-(2*radius_x+1).
Dluts_for_speedup_f32.rsh11 // depth y is visible in the presence of a pixel with depth x.
13 // The value range of both x and y is [0,g_kMaxDepthValue].
14 // The value range of VisibilityProbability.lut[y][x] is [0,1].
42 // of the focal layer are considered as its potential occluders. That
62 // A lookup table that pre-computes x coordinate of the intersection between a
63 // circle of radius r and a horizontal line of height y.
65 // The value range of r is [0,g_kMaxKernelRadius].
66 // The value range of y is [-g_kMaxKernelRadius,g_kMaxKernelRadius].
/cts/apps/CameraITS/build/scripts/
Dgpylint_rcfile19 # C0111 ignore Docstring at top of file.
74 # respectively contain the number of errors / warnings messages and the total
75 # number of statements analyzed. This is used by the global evaluation report
80 # command line instead of printing them on stdout. Reports (if any) will be
88 # of the file under analysis.
112 # List of builtins function names that should not be used, separated by a comma
150 # Colon delimited types of objects which should have the same naming style,
167 # List of method names used to declare (i.e. assign) instance attributes.
170 # List of interface methods to ignore, separated by a comma. This is used for
174 # List of valid names for the first argument in a class method.
[all …]
/cts/hostsidetests/devicepolicy/app/DeviceOwner/src/com/android/cts/deviceowner/
DSecurityLoggingTest.java57 import static com.google.common.collect.ImmutableList.of;
99 .put(TAG_ADB_SHELL_INTERACTIVE, of())
100 .put(TAG_ADB_SHELL_CMD, of(S))
101 .put(TAG_SYNC_RECV_FILE, of(S))
102 .put(TAG_SYNC_SEND_FILE, of(S))
103 .put(TAG_APP_PROCESS_START, of(S, L, I, I, S, S))
104 .put(TAG_KEYGUARD_DISMISSED, of())
105 .put(TAG_KEYGUARD_DISMISS_AUTH_ATTEMPT, of(I, I))
106 .put(TAG_KEYGUARD_SECURED, of())
107 .put(TAG_OS_STARTUP, of(S, S))
[all …]
/cts/tools/release-parser/tests/
Dgenerate_golden_sample_files.sh17 …ase-parser.jar com.android.cts.releaseparser.ApkParser -i resources/$file -of resources/$file.pb.t…
23 …-parser.jar com.android.cts.releaseparser.SoParser -i resources/$file -pi -of resources/$file.pb.t…
29 …ease-parser.jar com.android.cts.releaseparser.SoParser -i resources/$file -of resources/$file.pb.t…
35 …se-parser.jar com.android.cts.releaseparser.VdexParser -i resources/$file -of resources/$file.pb.t…
41 …se-parser.jar com.android.cts.releaseparser.OdexParser -i resources/$file -of resources/$file.pb.t…
47 …ase-parser.jar com.android.cts.releaseparser.OatParser -i resources/$file -of resources/$file.pb.t…
53 …ase-parser.jar com.android.cts.releaseparser.ArtParser -i resources/$file -of resources/$file.pb.t…
59 …ase-parser.jar com.android.cts.releaseparser.XmlParser -i resources/$file -of resources/$file.pb.t…
65 …rser.jar com.android.cts.releaseparser.BuildPropParser -i resources/$file -of resources/$file.pb.t…
/cts/tests/tests/provider/src/android/provider/cts/
DMediaStorePlacementTest.java121 assertTrue(updatePlacement(uri, null, Optional.of(name))); in testDisplayName_SameMime()
139 assertTrue(updatePlacement(uri, null, Optional.of(name))); in testDisplayName_DifferentMime()
162 Optional.of("DCIM/Vacation"), null)); in testDirectory_Valid()
168 Optional.of("DCIM/Misc"), null)); in testDirectory_Valid()
174 Optional.of("Pictures/Misc"), null)); in testDirectory_Valid()
180 Optional.of("Pictures"), null)); in testDirectory_Valid()
192 Optional.of("Random"), null)); in testDirectory_Invalid()
194 Optional.of(Environment.DIRECTORY_ALARMS), null)); in testDirectory_Invalid()
207 Optional.of("Android/media/android.provider.cts/foo"), null)); in testDirectory_InsideSandbox()
209 Optional.of("Android/media/com.example/foo"), null)); in testDirectory_InsideSandbox()
[all …]
/cts/hostsidetests/hdmicec/
Dcec_adapter.md5 ![Picture of USB - CEC Adapter](https://www.pulse-eight.com/generated-assets/products/0000237_555.j…
70 ### ts is part of the moreutils package
100 : change the logical address of the CEC adapter.
103 : change the HDMI port number of the CEC adapter.
106 : change the physical address of the CEC adapter.
118 : get the CEC version of the specified device.
121 : get the vendor ID of the specified device.
124 : get the menu language of the specified device.
127 : get the power status of the specified device.
130 : get the OSD name of the specified device.
[all …]
/cts/hostsidetests/appsecurity/res/pkgsigverify/
DREADME.txt4 In general, they are differently signed forms of the tinyapp APK and follow
15 keysize: the size of the key used for signing
17 which test certificates were used to generate a proof-of-rotation object,
18 if one exists, included in the signing block of the APK, as well as the
19 capabilities of those certificates according to APK Signature Scheme v3.
21 Generation of these apks was performed using the apksigner command-line tool,
24 sign APKs using different keystores, providers, etc. In particular, some of
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/instance_of/d/T_instance_of_2.smalis/
DT_instance_of_2.smali5 # You may obtain a copy of the License at
41 instance-of v15, v10, Ldot/junit/opcodes/instance_of/d/T_instance_of_2/SuperClass;
50 instance-of v15, v10, [Ldot/junit/opcodes/instance_of/d/T_instance_of_2/SuperClass;
57 instance-of v15, v10, Ljava/lang/Object;
66 instance-of v15, v10, Ldot/junit/opcodes/instance_of/d/T_instance_of_2/SuperInterface;
75 instance-of v15, v10, Ldot/junit/opcodes/instance_of/d/T_instance_of_2/SubClass;
84 instance-of v15, v10, Ldot/junit/opcodes/instance_of/d/T_instance_of_2/SuperInterface2;
91 instance-of v15, v10, Ldot/junit/opcodes/instance_of/d/T_instance_of_2/SuperInterface;
98 instance-of v15, v10, Ldot/junit/opcodes/instance_of/d/T_instance_of_2/SubClass;
105 instance-of v15, v10, [Ldot/junit/opcodes/instance_of/d/T_instance_of_2/SubClass;
/cts/tests/tests/location/src/android/location/cts/asn1/supl2/rrlp_components/
DUncompressedEphemeris.java63 return ImmutableList.of(TAG_UncompressedEphemeris); in getPossibleFirstTags()
568 …g == null ? UncompressedEphemeris.ephemCodeOnL2Type.getPossibleFirstTags() : ImmutableList.of(tag); in getComponents()
611 …rn tag == null ? UncompressedEphemeris.ephemURAType.getPossibleFirstTags() : ImmutableList.of(tag); in getComponents()
654 …g == null ? UncompressedEphemeris.ephemSVhealthType.getPossibleFirstTags() : ImmutableList.of(tag); in getComponents()
697 …n tag == null ? UncompressedEphemeris.ephemIODCType.getPossibleFirstTags() : ImmutableList.of(tag); in getComponents()
740 …ag == null ? UncompressedEphemeris.ephemL2PflagType.getPossibleFirstTags() : ImmutableList.of(tag); in getComponents()
783 … return tag == null ? EphemerisSubframe1Reserved.getPossibleFirstTags() : ImmutableList.of(tag); in getComponents()
826 …rn tag == null ? UncompressedEphemeris.ephemTgdType.getPossibleFirstTags() : ImmutableList.of(tag); in getComponents()
869 …rn tag == null ? UncompressedEphemeris.ephemTocType.getPossibleFirstTags() : ImmutableList.of(tag); in getComponents()
912 …rn tag == null ? UncompressedEphemeris.ephemAF2Type.getPossibleFirstTags() : ImmutableList.of(tag); in getComponents()
[all …]
DNavModel_KeplerianSet.java63 return ImmutableList.of(TAG_NavModel_KeplerianSet); in getPossibleFirstTags()
373 …n tag == null ? NavModel_KeplerianSet.keplerToeType.getPossibleFirstTags() : ImmutableList.of(tag); in getComponents()
416 …urn tag == null ? NavModel_KeplerianSet.keplerWType.getPossibleFirstTags() : ImmutableList.of(tag); in getComponents()
459 …ag == null ? NavModel_KeplerianSet.keplerDeltaNType.getPossibleFirstTags() : ImmutableList.of(tag); in getComponents()
502 …rn tag == null ? NavModel_KeplerianSet.keplerM0Type.getPossibleFirstTags() : ImmutableList.of(tag); in getComponents()
545 … == null ? NavModel_KeplerianSet.keplerOmegaDotType.getPossibleFirstTags() : ImmutableList.of(tag); in getComponents()
588 …urn tag == null ? NavModel_KeplerianSet.keplerEType.getPossibleFirstTags() : ImmutableList.of(tag); in getComponents()
631 … tag == null ? NavModel_KeplerianSet.keplerIDotType.getPossibleFirstTags() : ImmutableList.of(tag); in getComponents()
674 …= null ? NavModel_KeplerianSet.keplerAPowerHalfType.getPossibleFirstTags() : ImmutableList.of(tag); in getComponents()
717 …rn tag == null ? NavModel_KeplerianSet.keplerI0Type.getPossibleFirstTags() : ImmutableList.of(tag); in getComponents()
[all …]
DGPSEphemerisDeltaScales.java63 return ImmutableList.of(TAG_GPSEphemerisDeltaScales); in getPossibleFirstTags()
373 …ull ? GPSEphemerisDeltaScales.scale_delta_omegaType.getPossibleFirstTags() : ImmutableList.of(tag); in getComponents()
416 …ll ? GPSEphemerisDeltaScales.scale_delta_deltaNType.getPossibleFirstTags() : ImmutableList.of(tag); in getComponents()
459 …= null ? GPSEphemerisDeltaScales.scale_delta_m0Type.getPossibleFirstTags() : ImmutableList.of(tag); in getComponents()
502 … ? GPSEphemerisDeltaScales.scale_delta_omegadotType.getPossibleFirstTags() : ImmutableList.of(tag); in getComponents()
545 …== null ? GPSEphemerisDeltaScales.scale_delta_eType.getPossibleFirstTags() : ImmutableList.of(tag); in getComponents()
588 …null ? GPSEphemerisDeltaScales.scale_delta_idotType.getPossibleFirstTags() : ImmutableList.of(tag); in getComponents()
631 …ull ? GPSEphemerisDeltaScales.scale_delta_sqrtAType.getPossibleFirstTags() : ImmutableList.of(tag); in getComponents()
674 …= null ? GPSEphemerisDeltaScales.scale_delta_i0Type.getPossibleFirstTags() : ImmutableList.of(tag); in getComponents()
717 …ll ? GPSEphemerisDeltaScales.scale_delta_omega0Type.getPossibleFirstTags() : ImmutableList.of(tag); in getComponents()
[all …]
DGPSEphemerisDeltaBitSizes.java63 return ImmutableList.of(TAG_GPSEphemerisDeltaBitSizes); in getPossibleFirstTags()
373 …? GPSEphemerisDeltaBitSizes.bitsize_delta_omegaType.getPossibleFirstTags() : ImmutableList.of(tag); in getComponents()
416 … GPSEphemerisDeltaBitSizes.bitsize_delta_deltaNType.getPossibleFirstTags() : ImmutableList.of(tag); in getComponents()
459 …ll ? GPSEphemerisDeltaBitSizes.bitsize_delta_m0Type.getPossibleFirstTags() : ImmutableList.of(tag); in getComponents()
502 …PSEphemerisDeltaBitSizes.bitsize_delta_omegadotType.getPossibleFirstTags() : ImmutableList.of(tag); in getComponents()
545 …ull ? GPSEphemerisDeltaBitSizes.bitsize_delta_eType.getPossibleFirstTags() : ImmutableList.of(tag); in getComponents()
588 … ? GPSEphemerisDeltaBitSizes.bitsize_delta_idotType.getPossibleFirstTags() : ImmutableList.of(tag); in getComponents()
631 …? GPSEphemerisDeltaBitSizes.bitsize_delta_sqrtAType.getPossibleFirstTags() : ImmutableList.of(tag); in getComponents()
674 …ll ? GPSEphemerisDeltaBitSizes.bitsize_delta_i0Type.getPossibleFirstTags() : ImmutableList.of(tag); in getComponents()
717 … GPSEphemerisDeltaBitSizes.bitsize_delta_omega0Type.getPossibleFirstTags() : ImmutableList.of(tag); in getComponents()
[all …]
DReferenceNavModel.java63 return ImmutableList.of(TAG_ReferenceNavModel); in getPossibleFirstTags()
373 …eturn tag == null ? ReferenceNavModel.keplerToeType.getPossibleFirstTags() : ImmutableList.of(tag); in getComponents()
416 … return tag == null ? ReferenceNavModel.keplerWType.getPossibleFirstTags() : ImmutableList.of(tag); in getComponents()
459 …rn tag == null ? ReferenceNavModel.keplerDeltaNType.getPossibleFirstTags() : ImmutableList.of(tag); in getComponents()
502 …return tag == null ? ReferenceNavModel.keplerM0Type.getPossibleFirstTags() : ImmutableList.of(tag); in getComponents()
545 … tag == null ? ReferenceNavModel.keplerOmegaDotType.getPossibleFirstTags() : ImmutableList.of(tag); in getComponents()
588 … return tag == null ? ReferenceNavModel.keplerEType.getPossibleFirstTags() : ImmutableList.of(tag); in getComponents()
631 …turn tag == null ? ReferenceNavModel.keplerIDotType.getPossibleFirstTags() : ImmutableList.of(tag); in getComponents()
674 …ag == null ? ReferenceNavModel.keplerAPowerHalfType.getPossibleFirstTags() : ImmutableList.of(tag); in getComponents()
717 …return tag == null ? ReferenceNavModel.keplerI0Type.getPossibleFirstTags() : ImmutableList.of(tag); in getComponents()
[all …]
/cts/tests/tests/location/src/android/location/cts/asn1/supl2/ver2_ulp_components/
DSupportedWLANApsChannel11a.java63 return ImmutableList.of(TAG_SupportedWLANApsChannel11a); in getPossibleFirstTags()
373 …n tag == null ? SupportedWLANApsChannel11a.ch34Type.getPossibleFirstTags() : ImmutableList.of(tag); in getComponents()
416 …n tag == null ? SupportedWLANApsChannel11a.ch36Type.getPossibleFirstTags() : ImmutableList.of(tag); in getComponents()
459 …n tag == null ? SupportedWLANApsChannel11a.ch38Type.getPossibleFirstTags() : ImmutableList.of(tag); in getComponents()
502 …n tag == null ? SupportedWLANApsChannel11a.ch40Type.getPossibleFirstTags() : ImmutableList.of(tag); in getComponents()
545 …n tag == null ? SupportedWLANApsChannel11a.ch42Type.getPossibleFirstTags() : ImmutableList.of(tag); in getComponents()
588 …n tag == null ? SupportedWLANApsChannel11a.ch44Type.getPossibleFirstTags() : ImmutableList.of(tag); in getComponents()
631 …n tag == null ? SupportedWLANApsChannel11a.ch46Type.getPossibleFirstTags() : ImmutableList.of(tag); in getComponents()
674 …n tag == null ? SupportedWLANApsChannel11a.ch48Type.getPossibleFirstTags() : ImmutableList.of(tag); in getComponents()
717 …n tag == null ? SupportedWLANApsChannel11a.ch52Type.getPossibleFirstTags() : ImmutableList.of(tag); in getComponents()
[all …]

12345678910>>...135