Home
last modified time | relevance | path

Searched refs:l (Results 1 – 18 of 18) sorted by relevance

/tools/tradefederation/core/tests/src/com/android/tradefed/util/
DTimeValTest.java102 long l = 1<<62; in testOverflow() local
103 l *= 2; in testOverflow()
104 l *= 2; in testOverflow()
105 l += 1; in testOverflow()
106 assertTrue(l > 0); in testOverflow()
/tools/tradefederation/contrib/src/com/android/media/tests/
DAudioLoopbackTest.java204 LogFileData l = new LogFileData(".txt", "result", LogDataType.TEXT); in getLogFileDataKeyMap() local
205 result.put(LogFileType.RESULT, l); in getLogFileDataKeyMap()
207 l = new LogFileData(".png", "graph", LogDataType.PNG); in getLogFileDataKeyMap()
208 result.put(LogFileType.GRAPH, l); in getLogFileDataKeyMap()
210 l = new LogFileData(".wav", "wave", LogDataType.UNKNOWN); in getLogFileDataKeyMap()
211 result.put(LogFileType.WAVE, l); in getLogFileDataKeyMap()
213 l = new LogFileData("_playerBufferPeriod.txt", "player_buffer", LogDataType.TEXT); in getLogFileDataKeyMap()
214 result.put(LogFileType.PLAYER_BUFFER, l); in getLogFileDataKeyMap()
216 l = new LogFileData("_playerBufferPeriod.png", "player_buffer_histogram", LogDataType.PNG); in getLogFileDataKeyMap()
217 result.put(LogFileType.PLAYER_BUFFER_HISTOGRAM, l); in getLogFileDataKeyMap()
[all …]
DCameraLatencyTest.java314 void reportMetrics(ITestInvocationListener l, TestInfo test, in setUp()
DCameraStressTest.java395 void reportMetrics(ITestInvocationListener l, TestInfo test, in setUp()
/tools/apkzlib/src/test/java/com/android/tools/build/apkzlib/sign/
DManifestGenerationTest.java70 for (String l : lines) { in elementaryManifestGeneration()
71 linesSet.add(l.trim()); in elementaryManifestGeneration()
106 for (String l : lines) { in manifestGenerationOnHalfWrittenFile()
107 linesSet.add(l.trim()); in manifestGenerationOnHalfWrittenFile()
144 for (String l : lines) { in manifestGenerationOnExistingFile()
145 linesSet.add(l.trim()); in manifestGenerationOnExistingFile()
/tools/tradefederation/core/tests/src/com/android/tradefed/testtype/
DFakeTestTest.java263 private void testPassExpectations(ITestInvocationListener l, String klass, in testPassExpectations() argument
267 l.testStarted(test); in testPassExpectations()
268 l.testEnded(EasyMock.eq(test), EasyMock.<HashMap<String, Metric>>anyObject()); in testPassExpectations()
271 private void testFailExpectations(ITestInvocationListener l, String klass, in testFailExpectations() argument
275 l.testStarted(test); in testFailExpectations()
276 l.testFailed(EasyMock.eq(test), EasyMock.<String>anyObject()); in testFailExpectations()
277 l.testEnded(EasyMock.eq(test), EasyMock.<HashMap<String, Metric>>anyObject()); in testFailExpectations()
DCodeCoverageTestBaseTest.java884 listeners.stream().forEach(l -> l.testRunStarted(getPackageName(), tests.size()));
890 .forEach(l -> l.testStarted(TestDescription.convertToIdentifier(test)));
894 l ->
895 l.testEnded(
911 listeners.stream().forEach(l -> l.testRunEnded(TEST_RUN_TIME, metrics));
/tools/tradefederation/core/src/com/android/tradefed/invoker/shard/
DShardHelper.java251 for (ITestInvocationListener l : config.getTestInvocationListeners()) { in buildMasterShardListeners()
252 if (!(l instanceof IShardableListener)) { in buildMasterShardListeners()
253 newListeners.add(l); in buildMasterShardListeners()
267 for (ITestInvocationListener l : origListeners) { in buildShardListeners()
268 if (l instanceof IShardableListener) { in buildShardListeners()
269 shardListeners.add(((IShardableListener) l).clone()); in buildShardListeners()
/tools/tradefederation/core/src/com/android/tradefed/device/
DManagedDeviceList.java88 List<IManagedTestDevice> l = new ArrayList<IManagedTestDevice>(size()); in getCopy() local
89 l.addAll(mList); in getCopy()
90 return l; in getCopy()
/tools/test/connectivity/acts/framework/acts/
Drecords.py168 l = ["%s = %s" % (k, v) for k, v in d.items()]
169 s = ', '.join(l)
355 l = ["%s %s" % (k, v) for k, v in self.summary_dict().items()]
357 msg = ", ".join(sorted(l))
Dconfig_parser.py66 for l in name:
67 if l not in utils.valid_filename_chars:
69 "Char '%s' is not allowed in test bed names." % l)
/tools/tradefederation/core/src/com/android/tradefed/util/
DConditionPriorityBlockingQueue.java330 List<T> l = new ArrayList<T>(size()); in getCopy() local
331 l.addAll(mList); in getCopy()
332 return l; in getCopy()
/tools/apkzlib/src/test/java/com/android/tools/build/apkzlib/zip/
DZipToolsTest.java179 for (String l : lines) { in testReadZFile()
180 Matcher m = Pattern.compile(mUnzipLineRegex).matcher(l); in testReadZFile()
/tools/tradefederation/core/res/jacoco/
Djacocoagent.jarMETA-INF/MANIFEST.MF META-INF/MTNMINDS.SF META-INF/MTNMINDS ...
Djacocoant.jarMETA-INF/MANIFEST.MF META-INF/MTNMINDS.SF META-INF/MTNMINDS ...
/tools/test/connectivity/acts/framework/acts/test_utils/wifi/
Dwifi_power_test_utils.py160 l = layout([[dt], [plot]])
161 save(l)
/tools/test/connectivity/acts/framework/acts/test_utils/coex/
Dcoex_test_utils.py802 l = re.split("[:/=]", lines)
803 if l[len(l) - 1] != "0%":
/tools/test/connectivity/acts/framework/acts/controllers/
Dmonsoon.py509 for l in lines:
511 timestamp, value = l.split(' ')