Home
last modified time | relevance | path

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

1234

/tools/tradefederation/core/tests/src/com/android/tradefed/util/
DPairTest.java27 Pair<Object, Object> p1 = Pair.create(obj1, obj1); in testPairs()
36 p1 = Pair.create(null, null); in testPairs()
37 p2 = Pair.create(null, null); in testPairs()
44 p1 = Pair.create(null, new Object()); in testPairs()
45 p2 = Pair.create(null, new Object()); in testPairs()
49 p1 = Pair.create(null, obj1); in testPairs()
50 p2 = Pair.create(null, obj1); in testPairs()
55 p1 = Pair.create(obj1, obj2); in testPairs()
56 p2 = Pair.create(obj1, obj2); in testPairs()
59 Pair<String, String> p3 = Pair.create(new String("abc"), new String("2.4")); in testPairs()
[all …]
DKeyguardControllerStateTest.java37 KeyguardControllerState state = KeyguardControllerState.create(testOutput); in testCreate_invalidOutput()
51 KeyguardControllerState state = KeyguardControllerState.create(testOutput); in testCreate()
/tools/test/connectivity/tools/lab/tests/
Dmain_test.py32 RunnerFactory.create({
38 RunnerFactory.create({
44 RunnerFactory.create({
51 RunnerFactory.create({
57 run = RunnerFactory.create({'reporter': None, 'verify_devices': True})
64 RunnerFactory.create({
/tools/test/connectivity/acts/framework/tests/libs/ota/ota_runners/
Dota_runner_factory_test.py104 ota_runner_factory.create('ota_package', ['ota_sl4a'],
110 ota_runner_factory.create({
116 ret = ota_runner_factory.create('', '', self.device)
121 ret = ota_runner_factory.create([], [], self.device)
126 first_return = ota_runner_factory.create([], [], self.device)
128 second_return = ota_runner_factory.create([], [], self.device)
134 first_return = ota_runner_factory.create(
136 second_return = ota_runner_factory.create(
/tools/test/connectivity/acts/framework/tests/libs/ota/ota_tools/
Dota_tool_factory_test.py34 ret = ota_tool_factory.create(MockOtaTool.__name__, 'command')
41 ota_tool_factory.create(MockOtaTool.__name__, 'command')
47 ret_a = ota_tool_factory.create(MockOtaTool.__name__, 'command')
48 ret_b = ota_tool_factory.create(MockOtaTool.__name__, 'command')
/tools/metalava/src/main/java/com/android/tools/metalava/model/psi/
DPsiParameterItem.kt150 fun create( in create() method
172 fun create( in create() method
182 modifiers = PsiModifierItem.create(codebase, original.modifiers), in create()
183 type = PsiTypeItem.create(codebase, original.type) in create()
189 fun create( in create() method
193 return original.map { create(codebase, it as PsiParameterItem) } in create()
DPsiFieldItem.kt81 val duplicated = create(codebase, targetContainingClass as PsiClassItem, psiField) in duplicate()
111 …fun create(codebase: PsiBasedCodebase, containingClass: PsiClassItem, psiField: PsiField): PsiFiel… in toString() method
135 …fun create(codebase: PsiBasedCodebase, containingClass: PsiClassItem, original: PsiFieldItem): Psi… in toString() method
142 modifiers = PsiModifierItem.create(codebase, original.modifiers), in toString()
143 fieldType = PsiTypeItem.create(codebase, original.fieldType), in toString()
DPsiMethodItem.kt215 val duplicated = create(codebase, targetContainingClass as PsiClassItem, psiMethod) in <lambda>()
308 fun create( in <lambda>() method
325 PsiParameterItem.create(codebase, parameter, index) in <lambda>()
342 fun create( in <lambda>() method
353 modifiers = PsiModifierItem.create(codebase, original.modifiers), in <lambda>()
354 returnType = PsiTypeItem.create(codebase, original.returnType), in <lambda>()
355 parameters = PsiParameterItem.create(codebase, original.parameters()) in <lambda>()
DPsiPackageItem.kt132 …fun create(codebase: PsiBasedCodebase, psiPackage: PsiPackage, extraDocs: String?): PsiPackageItem… in create() method
151 fun create(codebase: PsiBasedCodebase, original: PsiPackageItem): PsiPackageItem { in create() method
157 modifiers = PsiModifierItem.create(codebase, original.modifiers) in create()
DPsiTypeParameterItem.kt52 … refs.mapNotNull { PsiTypeItem.create(codebase, it).asClass() }.filter { !it.isJavaLangObject() } in bounds()
59 fun create(codebase: PsiBasedCodebase, psiClass: PsiTypeParameter): PsiTypeParameterItem { in create() method
DPsiTypeParameterList.kt42 parameters.mapTo(list) { PsiTypeParameterItem.create(codebase, it) } in typeParameters()
/tools/test/connectivity/acts/framework/acts/libs/ota/ota_runners/
Dota_runner_factory.py98 return create(ota_package, ota_sl4a, android_device, ota_tool_class_name,
102 def create(ota_package, function
123 ota_tool = ota_tool_factory.create(ota_tool_class_name, command)
/tools/acloud/internal/script/
Dcreate_extradisk.sh20 gcloud compute disks create "${DISK_NAME}" --zone=${ZONE} --project=${PROJECT} --size="${1}GB"
29 gcloud compute images create "${IMAGE_NAME}" --source-disk-zone=${ZONE} --source-disk "${DISK_NAME}…
/tools/test/connectivity/acts/tests/google/bt/pts/instructions/
DMCAP_PTS_INSTRUCTIONS57 Save handle from create mdep
79 Save handle from create mdep
159 [PTS Interaction] Bring device out of range to create link loss
169 [PTS Interaction] Bring device out of range to create link loss
287 Save handle from create mdep
303 Save handle from create mdep
/tools/external/fat32lib/src/main/java/de/waldheinz/fs/
DFileSystemFactory.java48 public static FileSystem create(BlockDevice device, boolean readOnly) in create() method in FileSystemFactory
/tools/tradefederation/core/atest/docs/
Ddevelop_test_finders.md3 Learn about test finders and how to create a new test finder class.
20 **When should I create a new test finder class?**
23 that is the right time to create a new class. Metadata can be anything like
42 create a list of find methods that ```test_finder_handler``` will use to collect
Ddevelop_test_runners.md3 Learn about test runners and how to create a new test runner class.
35 To create a new test runner, create a new class that inherits
/tools/metalava/src/main/java/com/android/tools/metalava/model/text/
DTextTypeParameterList.kt46 strings.mapTo(list) { TextTypeParameterItem.create(codebase, it) } in typeParameters()
53 fun create(codebase: TextCodebase, typeListString: String): TypeParameterList { in create() method
/tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
DAbstractDirectory.java313 final FatDirectoryEntry entry = FatDirectoryEntry.create(true); in createSub()
321 final FatDirectoryEntry dot = FatDirectoryEntry.create(true); in createSub()
329 final FatDirectoryEntry dotDot = FatDirectoryEntry.create(true); in createSub()
DSuperFloppyFormatter.java211 fsi = FsInfoSector.create(f32bs); in format()
236 final Fat fat = Fat.create(bs, 0); in format()
245 rootDirStore = Fat16RootDirectory.create((Fat16BootSector) bs); in format()
/tools/apkzlib/src/test/java/com/android/tools/build/apkzlib/sign/
DManifestGenerationTest.java82 try (Closer closer = Closer.create()) { in manifestGenerationOnHalfWrittenFile()
118 try (Closer closer = Closer.create()) { in manifestGenerationOnExistingFile()
156 try (Closer closer = Closer.create()) { in manifestGenerationOnIncrementalNoChanges()
/tools/test/connectivity/acts/framework/acts/libs/ota/ota_tools/
Dota_tool_factory.py27 def create(ota_tool_class, command): function
/tools/test/connectivity/acts/framework/tests/
Dmock_controller.py24 def create(configs): function
/tools/apkzlib/src/main/java/com/android/tools/build/apkzlib/zip/
DProcessedAndRawByteSources.java81 Closer closer = Closer.create(); in close()
/tools/test/connectivity/acts/framework/acts/controllers/
Drelay_device_controller.py25 def create(config): function

1234