Home
last modified time | relevance | path

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

123

/tools/metalava/src/test/java/com/android/tools/metalava/
DFileReadSandboxTest.kt35 val goodFile = File(root, "goodFile").apply { createNewFile() } in Test sandbox()
36 val badFile = File(root, "badFile").apply { createNewFile() } in Test sandbox()
38 val goodDir = File(root, "goodDir").apply { mkdirs() } in Test sandbox()
39 val goodDirFile = File(goodDir, "file").apply { createNewFile() } in Test sandbox()
41 val badDir = File(root, "badDir").apply { mkdirs() } in Test sandbox()
42 val badDirFile = File(badDir, "file").apply { createNewFile() } in Test sandbox()
44 val subDir = File(root, "subdir").apply { mkdirs() } in Test sandbox()
45 val subSubDir = File(subDir, "subdir").apply { mkdirs() } in Test sandbox()
46 val subSubDir2 = File(subDir, "subdir2").apply { mkdirs() } in Test sandbox()
47 val subSubDirGoodFile = File(subSubDir, "good").apply { createNewFile() } in Test sandbox()
[all …]
DOptionsTest.kt563 val dir = File(top, "childdir").apply { mkdirs() } in Test for --strict-input-files-exempt()
564 val grandchild1 = File(dir, "grandchiild1").apply { createNewFile() } in Test for --strict-input-files-exempt()
565 val grandchild2 = File(dir, "grandchiild2").apply { createNewFile() } in Test for --strict-input-files-exempt()
566 val file1 = File(top, "file1").apply { createNewFile() } in Test for --strict-input-files-exempt()
567 val file2 = File(top, "file2").apply { createNewFile() } in Test for --strict-input-files-exempt()
/tools/apkzlib/src/test/java/com/android/tools/build/apkzlib/zip/
DExtraFieldTest.java101 assertEquals(0, mExtraFieldGetter.apply(foo).size()); in readEntryWithNoExtraField()
129 assertEquals(8, mExtraFieldGetter.apply(foo).size()); in readSingleExtraField()
130 ImmutableList<ExtraField.Segment> segments = mExtraFieldGetter.apply(foo).getSegments(); in readSingleExtraField()
176 assertEquals(16, mExtraFieldGetter.apply(foo).size()); in readMultipleExtraFields()
177 ImmutableList<ExtraField.Segment> segments = mExtraFieldGetter.apply(foo).getSegments(); in readMultipleExtraFields()
229 ExtraField ef = mExtraFieldGetter.apply(extra); in addExtraFieldToExistingEntry()
277 ExtraField ef = mExtraFieldGetter.apply(extra); in removeExtraFieldFromExistingEntry()
325 ExtraField ef = mExtraFieldGetter.apply(extra); in updateExtraFieldOfExistingEntry()
/tools/test/connectivity/acts/framework/acts/test_utils/gnss/
Dgnss_testlog_utils.py264 timestamp_df['phone_time'] = timestamp_df.apply(
273 time_n_row_num = current_df.apply(get_phone_time,
277 ]] = pds.DataFrame(time_n_row_num.apply(pds.Series))
308 loc_info_df['gnsstime'] = loc_info_df.apply(
342 timestamp_df['phone_time'] = timestamp_df.apply(
400 loc_info_df['gnsstime'] = loc_info_df.apply(
/tools/apksig/
Dandroid_plugin_for_gradle.gradle3 apply from: "$rootDir/buildSrc/base/baseJava.gradle"
16 apply from: "$rootDir/buildSrc/base/publish.gradle"
17 apply from: "$rootDir/buildSrc/base/bintray.gradle"
18 apply from: "$rootDir/buildSrc/base/javadoc.gradle"
/tools/tradefederation/core/test_framework/com/android/tradefed/testtype/
DDeviceJUnit4ClassRunner.java217 public Statement apply(Statement base, Description description) { in apply() method in DeviceJUnit4ClassRunner.TestMetrics
219 return super.apply(base, description); in apply()
302 public Statement apply(Statement base, Description description) { in apply() method in DeviceJUnit4ClassRunner.TestLogData
304 return super.apply(base, description); in apply()
/tools/external/fat32lib/
Dbuild.gradle1 apply from: "$rootDir/buildSrc/base/baseJava.gradle"
3 apply plugin: 'maven'
4 apply plugin: 'sdk-java-lib'
DNOTICE69apply to the modified work as a whole. If identifiable sections of that work are not derived from …
75 3. You may opt to apply the terms of the ordinary GNU General Public License instead of this Licens…
120 …tance, the balance of the section is intended to apply, and the section as a whole is intended to
/tools/trebuchet/trebuchet/viewer/
Dbuild.gradle17 apply plugin: 'java'
18 apply plugin: 'application'
19 apply plugin: 'kotlin-platform-jvm'
/tools/trebuchet/trebuchet/analyzer/
Dbuild.gradle17 apply plugin: 'java'
18 apply plugin: 'application'
19 apply plugin: 'kotlin-platform-jvm'
/tools/trebuchet/trebuchet/startup-analyzer/
Dbuild.gradle17 apply plugin: 'java'
18 apply plugin: 'application'
19 apply plugin: 'kotlin-platform-jvm'
/tools/trebuchet/trebuchet/startup-summarizer/
Dbuild.gradle17 apply plugin: 'java'
18 apply plugin: 'application'
19 apply plugin: 'kotlin-platform-jvm'
/tools/trebuchet/trebuchet/system-server-analyzer/
Dbuild.gradle17 apply plugin: 'java'
18 apply plugin: 'application'
19 apply plugin: 'kotlin-platform-jvm'
/tools/trebuchet/trebuchet/traceutils/
Dbuild.gradle17 apply plugin: 'java'
18 apply plugin: 'application'
19 apply plugin: 'kotlin-platform-jvm'
/tools/trebuchet/trebuchet/user-switch-analyzer/
Dbuild.gradle17 apply plugin: 'java'
18 apply plugin: 'application'
19 apply plugin: 'kotlin-platform-jvm'
/tools/metalava/src/main/java/com/android/tools/metalava/
DReleaseType.kt34 return super.getIssueConfiguration().apply { in getIssueConfiguration()
62 return super.getIssueConfiguration().apply { in getIssueConfiguration()
79 return IssueConfiguration().apply { in getIssueConfiguration()
DOptions.kt755 val baselineBuilder = Baseline.Builder().apply { description = "base" } in <lambda>()
756 val baselineApiLintBuilder = Baseline.Builder().apply { description = "api-lint" } in <lambda>()
757 …val baselineCompatibilityReleasedBuilder = Baseline.Builder().apply { description = "compatibility… in <lambda>()
/tools/apkzlib/src/main/java/com/android/tools/build/apkzlib/zip/
DZFile.java658 overlappingEntryDescription = describe.apply((StoredEntry) foundEntry); in readData()
669 + describe.apply(entry) in readData()
2239 IOExceptionRunnable r = function.apply(fl); in notify()
2465 boolean mayCompressFile = Verify.verifyNotNull(mayCompress.apply(file), in addAllRecursively()
2487 mayCompressFile = Verify.verifyNotNull(mayCompress.apply(f), in addAllRecursively()
/tools/tradefederation/core/tests/src/com/android/tradefed/device/
DDeviceStateMonitorTest.java553 mMonitor = creator.apply(0); in testWaitForStoreMount_PermDenied()
557 mMonitor = creator.apply(1); in testWaitForStoreMount_PermDenied()
561 mMonitor = creator.apply(2); in testWaitForStoreMount_PermDenied()
/tools/apkzlib/src/main/java/com/android/tools/build/apkzlib/utils/
DIOExceptionFunction.java36 @Nullable T apply(@Nullable F input) throws IOException; in apply() method
47 return f.apply(i); in asFunction()
/tools/trebuchet/trebuchet/startup-common/
Dbuild.gradle17 apply plugin: 'java'
18 apply plugin: 'kotlin-platform-jvm'
/tools/metalava/src/main/java/com/android/resources/
DResourceType.java239 String tagName = nameFunction.apply(tag); in fromXmlTag()
244 String typeAttribute = attributeFunction.apply(tag, SdkConstants.ATTR_TYPE); in fromXmlTag()
/tools/test/connectivity/acts/tests/google/wifi/aware/
DREADME.md13 fail criteria - that criteria may not apply to all implementations.
17 not provided or may not apply to all implementations or test environments.
/tools/acloud/
DLICENSE179 APPENDIX: How to apply the Apache License to your work.
181 To apply the Apache License to your work, attach the following
/tools/test/openhst/
DLICENSE179 APPENDIX: How to apply the Apache License to your work.
181 To apply the Apache License to your work, attach the following

123