/cts/suite/audio_quality/lib/src/task/ |
D | TaskSave.cpp | 86 std::list<TaskCase::BufferPair>::iterator it = buffersp->begin(); in handleFile() local 88 for (; it != end; it++) { in handleFile() 90 fileName.appendPath(it->first); in handleFile() 91 if (!it->second->saveToFile(fileName)) { in handleFile() 124 std::list<TaskCase::ValuePair>::iterator it = values->begin(); in handleReport() local 127 for (; it != end; it++) { in handleReport() 128 if (it->second.getType() == TaskCase::Value::ETypeDouble) { in handleReport() 129 details.appendFormat(" %s: %f\n", it->first.string(), it->second.getDouble()); in handleReport() 131 details.appendFormat(" %s: %" PRId64 "\n", it->first.string(), in handleReport() 132 it->second.getInt64()); in handleReport()
|
D | TaskCase.cpp | 71 typename std::map<android::String8, T>::iterator it; in registerGeneric() local 72 it = map.find(name); in registerGeneric() 73 if (it != map.end()) { in registerGeneric() 86 typename std::map<android::String8, T>::iterator it; in findGeneric() local 87 it = map.find(name); in findGeneric() 88 if (it == map.end()) { in findGeneric() 91 data = it->second; in findGeneric() 99 typename std::map<android::String8, T>::iterator it; in updateGeneric() local 100 it = map.find(name); in updateGeneric() 101 if (it == map.end()) { in updateGeneric() [all …]
|
D | TaskGeneric.cpp | 127 std::set<android::String8, android::String8>::iterator it = mAllowedStringAttributes.find(key); in addStringAttribute() local 128 if (it == mAllowedStringAttributes.end()) { in addStringAttribute() 137 std::map<android::String8, android::String8>::const_iterator it = mStringAttributes.find(key); in findStringAttribute() local 138 if (it == mStringAttributes.end()) { in findStringAttribute() 141 value = it->second; in findStringAttribute()
|
D | TaskSequential.cpp | 94 std::list<TaskAsync*>::iterator it; in queueAsyncTask() local 95 it = std::find(mAsyncTasks.begin(), mAsyncTasks.end(), task); in queueAsyncTask() 96 if (it != mAsyncTasks.end()) { // already queued in queueAsyncTask()
|
/cts/suite/audio_quality/lib/src/ |
D | Report.cpp | 93 std::list<StringPair>::const_iterator it; in writeResult() local 94 for (it = begin; it != end; it++) { in writeResult() 96 printf(" <test title=\"%s\" result=\"pass\" >", it->first.string()); in writeResult() 98 printf(" <test title=\"%s\" result=\"fail\" >", it->first.string()); in writeResult() 100 printf(" <details>\n%s", it->second.string()); in writeResult()
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/fov/ |
D | CtsTestHelper.java | 30 Intent it = new Intent(); in storeCtsTestResult() local 31 it.putExtra(REPORTED_FOV_EXTRA, reportedFOV); in storeCtsTestResult() 32 it.putExtra(MEASURED_FOV_EXTRA, measuredFOV); in storeCtsTestResult() 33 activity.setResult(Activity.RESULT_OK, it); in storeCtsTestResult()
|
/cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/ |
D | ApiPackage.java | 82 Iterator<Entry<String, ApiClass>> it = mApiClassMap.entrySet().iterator(); in resolveSuperClasses() local 83 while (it.hasNext()) { in resolveSuperClasses() 84 Map.Entry<String, ApiClass> entry = it.next(); in resolveSuperClasses()
|
/cts/suite/audio_quality/lib/src/audio/ |
D | RemoteAudio.cpp | 222 std::map<android::String8, int>::iterator it; in getDataId() local 223 it = mIdMap.find(name); in getDataId() 224 if (it == mIdMap.end()) { in getDataId() 228 return it->second; in getDataId() 241 std::map<int, android::sp<Buffer> >::iterator it; in startPlayback() local 242 it = mBufferList.find(id); in startPlayback() 243 if (it == mBufferList.end()) { in startPlayback() 255 handler->getParam().mBuffer = it->second; in startPlayback()
|
/cts/hostsidetests/sustainedperf/dhrystone/ |
D | Rationale | 15 satisfies a need for an easy-to-use integer benchmark; it gives a first 19 With the increasing use of the benchmark, it seems necessary to 20 reconsider the benchmark and to check whether it can still fulfill this 22 evaluation, it has been made for two reasons: 43 o As far as it is possible without changes to the Dhrystone statistics, 62 wouldn't give it the name "Dhrystone" since this denotes the program 80 Weicker have been different, it follows the version distributed by 93 However, it turned out that it is not enough just to inclose the main 107 role of some operands has been changed, and it was made sure that the 146 (This probably will not happen for the C version, but it did happen [all …]
|
D | LICENSE.TXT | 49 have its own individual LICENSE.TXT file in the directory in which it appears.
|
/cts/apps/CameraITS/tests/inprog/scene2/ |
D | README | 7 If a test requires that the camera be in any particular orientaion, it will
|
/cts/hostsidetests/compilation/assets/ |
D | README.txt | 10 # once the profile appears and is nonempty, grab it:
|
/cts/tests/tests/drm/src/android/drm/cts/ |
D | DRMTest.java | 191 for (Iterator it = request.keySet().iterator(); it.hasNext(); ) { in executeAcquireDrmInfo() 192 String key = (String) it.next(); in executeAcquireDrmInfo()
|
/cts/apps/CtsVerifier/ |
D | proguard.flags | 36 # Jack seems less rigorous than proguard when it comes to warning about
|
/cts/tests/tests/media/src/android/media/cts/ |
D | AudioPlaybackConfigurationTest.java | 401 Iterator<AudioPlaybackConfiguration> it = configs.iterator(); in hasAttr() local 402 while (it.hasNext()) { in hasAttr() 403 final AudioPlaybackConfiguration apc = it.next(); in hasAttr()
|
/cts/tests/tests/util/src/android/util/cts/ |
D | StrictJarFileTest.java | 118 Iterator<ZipEntry> it = jarFile.iterator(); in checkIteration() local 120 while (it.hasNext()) { in checkIteration() 121 final ZipEntry ze = it.next(); in checkIteration()
|
D | ArraySetTest.java | 270 Iterator<ControlledHash> it = arraySet.iterator(); in testBasicArraySet() 271 while (it.hasNext()) { in testBasicArraySet() 272 if (it.next().equals(lookup)) { in testBasicArraySet() 273 it.remove(); in testBasicArraySet()
|
D | ArrayMapTest.java | 415 Iterator<ControlledHash> it = arrayMap.keySet().iterator(); in testBasicArrayMap() 416 while (it.hasNext()) { in testBasicArrayMap() 417 if (it.next().equals(lookup)) { in testBasicArrayMap() 418 it.remove(); in testBasicArrayMap()
|
/cts/tools/dasm/src/java_cup/ |
D | parser.cup | 53 build up parts of the current production while it is being parsed. 425 /* if it wasn't declared, emit a message */ 461 and build a special start production for it. */ 561 /* build a production_part and put it in the table */ 586 /* put it in the non_terms table */ 589 /* build a production_part and put it in the symbols table */
|
/cts/tests/tests/slice/src/android/slice/cts/ |
D | SliceBindingTest.java | 221 Iterator<Uri> it = allUris.iterator(); in testGetDescendants() local 223 assertEquals(SliceProvider.PATHS[i], it.next().getPath()); in testGetDescendants()
|
/cts/tests/tests/renderscript/src/android/renderscript/cts/refocus/ |
D | pixel_format_f32.rsh | 7 // 1. Initially, it stores the input color (red, green, blue) and the depth
|
D | luts_for_speedup_f32.rsh | 50 // filtering. So always sets it to 1.
|
/cts/tests/jdwp/runner/host-side/resources/expectations/ |
D | external_oj_libjdwp_art_failures.txt | 14 …description: "This test is incorrect since it blindly requests local variables without checking th…
|
/cts/libs/testserver/src/android/webkit/cts/ |
D | CtsTestServer.java | 461 Iterator<String> it = mQueries.iterator(); in wasResourceRequested() local 462 while (it.hasNext()) { in wasResourceRequested() 463 String request = it.next(); in wasResourceRequested()
|
/cts/tests/camera/src/android/hardware/camera2/cts/ |
D | MultiViewTest.java | 498 for (int it : YUVFormats) { in testSharedSurfaceYUVImageReaderSwitch() 500 it, StaticMetadata.StreamDirection.Output); in testSharedSurfaceYUVImageReaderSwitch() 503 yuvFormat = it; in testSharedSurfaceYUVImageReaderSwitch()
|