/cts/common/device-side/device-info/src/com/android/compatibility/common/deviceinfo/ |
D | StorageDeviceInfo.java | 36 int total = 0; in collectDeviceInfo() local 37 total = Math.max(total, getContext().getExternalCacheDirs().length); in collectDeviceInfo() 38 total = Math.max(total, getContext().getExternalFilesDirs(null).length); in collectDeviceInfo() 39 total = Math.max( in collectDeviceInfo() 40 total, getContext().getExternalFilesDirs(Environment.DIRECTORY_PICTURES).length); in collectDeviceInfo() 41 total = Math.max(total, getContext().getObbDirs().length); in collectDeviceInfo() 46 if (total == 1) { in collectDeviceInfo() 50 physical = total - 1; in collectDeviceInfo() 53 physical = total; in collectDeviceInfo()
|
/cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/ |
D | ApiPackage.java | 64 int total = 0; in getTotalMethods() local 66 total += apiClass.getTotalMethods(); in getTotalMethods() 68 return total; in getTotalMethods()
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/helpers/ |
D | PowerTestHostLink.java | 145 int total = 0; in run() local 147 while (streamIn.available() > 0 || total == 0) { in run() 148 if (total < BUFFER_SIZE) { in run() 149 int bytesRead = streamIn.read(buffer, total, in run() 150 (BUFFER_SIZE - total)); in run() 152 total += bytesRead; in run() 159 clientRequest = clientRequest.substring(0, total); in run()
|
/cts/hostsidetests/appsecurity/test-apps/StorageApp/src/com/android/cts/storageapp/ |
D | Utils.java | 195 int total = 0; in copy() local 199 total += c; in copy() 202 return total; in copy()
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Utils/ |
D | MathsUtils.java | 198 double total = 0.0; in dotProduct() local 200 total += vector1[i] * vector2[i]; in dotProduct() 202 return total; in dotProduct()
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/ |
D | TestResultsReport.java | 206 (total, current) -> { in getTestResultHistories() argument 207 prefixes.add(total); in getTestResultHistories() 208 return total + ":" + current; in getTestResultHistories()
|
/cts/tests/tests/telecom/src/android/telecom/cts/ |
D | MockConnectionService.java | 271 private static final Semaphore[] initializeSemaphore(int total) { in initializeSemaphore() argument 272 Semaphore[] locks = new Semaphore[total]; in initializeSemaphore() 273 for (int i = 0; i < total; i++) { in initializeSemaphore()
|
/cts/tests/tests/app.usage/src/android/app/usage/cts/ |
D | NetworkUsageStatsTest.java | 664 public final long total; field in NetworkUsageStatsTest.QueryResult 669 total = getTotalAndAssertNotEmpty(stats, tag, state); in QueryResult() 674 tagToString(tag), stateToString(state), total); in toString() 694 long total = 0; in assertAlmostNoUnexpectedTraffic() local 698 total += bucket.getRxBytes() + bucket.getTxBytes(); in assertAlmostNoUnexpectedTraffic() 700 if (total <= maxUnexpected) return; in assertAlmostNoUnexpectedTraffic() 746 long firstTotal = resultsWithTraffic.get(0).total; in testUidTagStateDetails() 748 assertWithinPercentage(queryResult + "", firstTotal, queryResult.total, 10); in testUidTagStateDetails()
|
/cts/tests/tests/database/src/android/database/cts/ |
D | DatabaseCursorTest.java | 286 int total; field in DatabaseCursorTest.TestObserver 292 total = total_; in TestObserver() 298 if (total == count) { in onChanged()
|
/cts/libs/json/src/com/android/json/stream/ |
D | JsonReader.java | 699 int total; in fillBuffer() local 700 while ((total = in.read(buffer, limit, buffer.length - limit)) != -1) { in fillBuffer() 701 limit += total; in fillBuffer()
|
/cts/hostsidetests/appsecurity/test-apps/ExternalStorageApp/src/com/android/cts/externalstorageapp/ |
D | CommonExternalStorageTest.java | 488 int total = 0; in copy() local 492 total += c; in copy() 495 return total; in copy()
|
/cts/tests/app/src/android/app/cts/ |
D | DownloadManagerTestBase.java | 206 int total = 0; in getTotalBytes() local 210 total += bytesRead; in getTotalBytes() 212 return total; in getTotalBytes()
|
/cts/tests/tests/telephony/current/src/android/telephony/cts/ |
D | SmsMessageTest.java | 176 private boolean checkRemaining(int total, int messageLength, int remaining) { in checkRemaining() argument 177 return total - messageLength == remaining; in checkRemaining()
|
/cts/tests/tests/content/src/android/content/pm/cts/ |
D | PackageManagerShellCommandTest.java | 146 long total = 0; in writeFullStream() local 150 total += length; in writeFullStream() 153 assertEquals(expected, total); in writeFullStream()
|
D | PackageManagerShellCommandIncrementalTest.java | 1114 long total = 0; in writeFullStream() local 1116 while ((length = inputStream.read(buffer)) != -1 && (expected < 0 || total < expected)) { in writeFullStream() 1118 total += length; in writeFullStream() 1121 assertEquals(expected, total); in writeFullStream()
|
D | ChecksumsTest.java | 1229 long total = 0; in writeFullStream() local 1233 total += length; in writeFullStream() 1236 Assert.assertEquals(expected, total); in writeFullStream()
|
/cts/tests/tests/media/src/android/media/cts/ |
D | HeifWriterTest.java | 308 int total = 0; in copy() local 312 total += c; in copy() 315 return total; in copy()
|
D | MediaMetadataRetrieverTest.java | 1251 int total = 0; in copy() local 1255 total += c; in copy() 1258 return total; in copy()
|
/cts/tools/vm-tests-tf/lib/ |
D | junit.jar | ... w
int h
public void start (int)
int total
public void step (boolean)
boolean successful
int x ... |
/cts/apps/CameraITS/build/scripts/ |
D | gpylint_rcfile | 76 # respectively contain the number of errors / warnings messages and the total
|
/cts/tests/tests/webkit/src/android/webkit/cts/ |
D | WebSettingsTest.java | 802 long estimatedSize, long total, WebStorage.QuotaUpdater updater) { in testDatabaseDisabled()
|
/cts/apps/CtsVerifier/libs/ |
D | opencv3-android.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/opencv/
org/ ... |