Home
last modified time | relevance | path

Searched defs:source (Results 1 – 25 of 103) sorted by relevance

12345

/tools/metalava/src/test/java/com/android/tools/metalava/
DApiFromTextTest.kt26 val source = """ in Loading a signature file and writing the API back out() constant
47 val source = """ in Handle lambdas as default values() constant
69 val source = """ in Invoking function with multiple parameters as parameter default value() constant
90 val source = """ in Handle enum constants as default values() constant
125 val source = """ in Handle complex expressions as default values() constant
159 val source = """ in Annotation signatures requiring more complicated token matching() constant
178 val source = """ in Multiple extends() constant
253 val source = """ in Vararg modifier() constant
297 val source = """ in Loading a signature file with alternate modifier order() constant
323 val source = """ in Test generics, superclasses and interfaces() constant
[all …]
DJDiffXmlTest.kt164 val source = """ in Test generics, superclasses and interfaces() constant
378 val source = """ in Test enums() constant
483 val source = """ in Test enums compat mode() constant
/tools/platform-compat/javatest/android/processor/compat/changeid/
DChangeIdProcessorTest.java88 JavaFileObject[] source = { in testCompatConfigXmlOutput() local
129 JavaFileObject[] source = { in testCompatConfigXmlOutput_multiplePackages() local
180 JavaFileObject[] source = { in testCompatConfigXmlOutput_innerClass() local
214 JavaFileObject[] source = { in testCompatConfigXmlOutput_interface() local
246 JavaFileObject[] source = { in testCompatConfigXmlOutput_enum() local
279 JavaFileObject[] source = { in testBothDisabledAndEnabledAfter() local
304 JavaFileObject[] source = { in testBothLoggingOnlyAndEnabledAfter() local
329 JavaFileObject[] source = { in testBothLoggingOnlyAndDisabled() local
354 JavaFileObject[] source = { in testLoggingOnly() local
382 JavaFileObject[] source = { in testIgnoredParams() local
[all …]
/tools/tradefederation/core/tests/src/com/android/tradefed/config/
DOptionCopierTest.java136 OptionSource source = new OptionSource(); in testCopyOptions_string() local
145 OptionSource source = new OptionSource(); in testCopyOptions_int() local
154 OptionSource source = new OptionSource(); in testCopyOptions_collection() local
167 OptionSource source = new OptionSource(); in testCopyOptions_enum() local
176 OptionSource source = new OptionSource(); in testCopyOptions_enumCollection() local
189 OptionSource source = new OptionSource(); in testCopyOptions_enumMap() local
201 OptionSource source = new OptionSource(); in testCopyOptions_wrongType() local
214 OptionSource source = new OptionSource(); in testCopyOptions_collectionToPrimitive() local
228 OptionCollectionWrongTypeDest source = new OptionCollectionWrongTypeDest(); in testCopyOptions_primitiveToCollection_null() local
247 OptionCollectionWrongTypeDest source = new OptionCollectionWrongTypeDest(); in testCopyOptions_primitiveToCollection() local
[all …]
/tools/tradefederation/core/common_util/com/android/tradefed/config/
DOptionDef.java29 public final String source; field in OptionDef
32 public OptionDef(String optionName, String optionValue, String source) { in OptionDef()
36 public OptionDef(String optionName, String optionKey, String optionValue, String source) { in OptionDef()
41 String optionName, String optionKey, String optionValue, String source, String type) { in OptionDef()
/tools/tradefederation/core/test_framework/com/android/tradefed/device/metric/
DIonHeapInfoMetricCollector.java49 try (InputStreamSource source = new FileInputStreamSource(outputFile, true)) { in collectIonAudio()
54 source); in collectIonAudio() local
67 try (InputStreamSource source = new FileInputStreamSource(outputFile, true)) { in collectIonSystem()
72 source); in collectIonSystem() local
DTraceMetricCollector.java42 try (InputStreamSource source = new FileInputStreamSource(outputFile, true)) { in collect()
47 source); in collect() local
DGraphicsStatsMetricCollector.java41 try (InputStreamSource source = new FileInputStreamSource(outputFile, true)) { in collect()
46 source); in collect() local
DBuddyInfoMetricCollector.java42 try (InputStreamSource source = new FileInputStreamSource(outputFile, true)) { in collect()
47 source); in collect() local
DPagetypeInfoMetricCollector.java41 try (InputStreamSource source = new FileInputStreamSource(outputFile, true)) { in collect()
46 source); in collect() local
DMemInfoMetricCollector.java41 try (InputStreamSource source = new FileInputStreamSource(outputFile, true)) { in collect()
46 source); in collect() local
DPerfettoPullerMetricCollector.java197 try (InputStreamSource source = new FileInputStreamSource(convertedMetricFile, in processMetricFile()
199 testLog(convertedMetricFile.getName(), getLogDataType(), source); in processMetricFile() local
272 try (InputStreamSource source = new FileInputStreamSource(metricFile, true)) { in processMetricFile()
275 testLog(metricFile.getName(), LogDataType.GZIP, source); in processMetricFile() local
281 testLog(metricFile.getName(), LogDataType.PERFETTO, source); in processMetricFile() local
/tools/tradefederation/core/tests/src/com/android/tradefed/util/
DStreamUtilTest.java43 try (final InputStreamSource source = new ByteArrayInputStreamSource(contentBytes)) { in testGetByteArrayListFromSource()
78 try (InputStreamSource source = new ByteArrayInputStreamSource(contents.getBytes())) { in testGetStringFromSource()
92 try (InputStreamSource source = new ByteArrayInputStreamSource(contents.getBytes())) { in testGetBufferedReaderFromInputStream()
108 final InputStreamSource source = new ByteArrayInputStreamSource(contents.getBytes()); in testCountLinesFromSource() local
141 final String source = getLargeText(); in testCalculateCrc32() local
155 final String source = "testtesttesttesttest"; in testCalculateMd5() local
169 final String source = "testtesttesttesttest"; in testCalculateBase64Md5() local
/tools/apkzlib/src/main/java/com/android/tools/build/apkzlib/zip/compress/
DExecutorCompressor.java49 public ListenableFuture<CompressionResult> compress( in compress()
70 protected abstract CompressionResult immediateCompress(@Nonnull CloseableByteSource source) in immediateCompress()
/tools/apkzlib/src/main/java/com/android/tools/build/apkzlib/zip/
DCompressionResult.java37 private final CloseableByteSource source; field in CompressionResult
51 public CompressionResult(@Nonnull CloseableByteSource source, @Nonnull CompressionMethod method, in CompressionResult()
DCompressor.java37 ListenableFuture<CompressionResult> compress(@Nonnull CloseableByteSource source); in compress()
/tools/trebuchet/core/common/src/test/kotlin/trebuchet/testutils/
DStringToStreamAdapter.kt25 val source = this in makeReader() constant
/tools/tradefederation/core/test_framework/com/android/tradefed/testtype/
DCodeCoverageTest.java82 try (FileInputStreamSource source = new FileInputStreamSource(coverageFile)) { in run()
86 source); in run() local
/tools/tradefederation/core/src/com/android/tradefed/device/metric/
DFilePullerLogCollector.java39 try (InputStreamSource source = new FileInputStreamSource(metricFile, true)) { in processMetricFile()
49 testLog(metricFile.getName(), type, source); in processMetricFile() local
DDebugHostLogOnFailureCollector.java41 try (InputStreamSource source = getLogger().getLog()) { in onTestRunStart()
57 try (InputStreamSource source = getLogger().getLog()) { in onTestFail()
/tools/tradefederation/core/src/com/android/tradefed/util/
DICompressionStrategy.java34 public File compress(File source) throws IOException; in compress()
DZipCompressionStrategy.java32 public File compress(File source) throws IOException { in compress()
/tools/test/connectivity/acts/framework/acts/controllers/relay_lib/
Dhelpers.py24 def validate_key(key, dictionary, expected_type, source): argument
/tools/acloud/
Dsetup.py45 def GenerateProto(source): argument
/tools/tradefederation/core/tests/src/com/android/tradefed/result/
DSnapshotInputStreamSourceTest.java50 InputStreamSource source = in testCancel() local

12345