/frameworks/ex/camera2/utils/tests/src/com/android/ex/camera2/utils/ |
D | Camera2UtilsTest.java | 404 Camera2RequestSettingsSet[] sets = { new Camera2RequestSettingsSet(), in requestSettingsSetUnionChangesRecorded() local 406 sets[0].union(sets[1]); in requestSettingsSetUnionChangesRecorded() 407 assertEquals(1, sets[0].getRevision()); in requestSettingsSetUnionChangesRecorded() 408 assertEquals(0, sets[1].getRevision()); in requestSettingsSetUnionChangesRecorded() 427 Camera2RequestSettingsSet[] sets = { new Camera2RequestSettingsSet(), in requestSettingsSetUnionChangesReflected() local 430 sets[0].set(CaptureRequest.CONTROL_AE_LOCK, true); in requestSettingsSetUnionChangesReflected() 431 sets[1].set(CaptureRequest.CONTROL_AWB_LOCK, true); in requestSettingsSetUnionChangesReflected() 432 sets[0].union(sets[1]); in requestSettingsSetUnionChangesReflected() 433 sets[1].set(CaptureRequest.CONTROL_AE_LOCK, false); in requestSettingsSetUnionChangesReflected() 434 requestSettingsSetsCheckPairOfProperties(sets[0], sets[1], in requestSettingsSetUnionChangesReflected() [all …]
|
/frameworks/base/services/backup/java/com/android/server/backup/utils/ |
D | SparseArrayUtils.java | 38 public static<V> HashSet<V> union(SparseArray<HashSet<V>> sets) { in union() argument 40 int n = sets.size(); in union() 42 HashSet<V> ithSet = sets.valueAt(i); in union()
|
/frameworks/native/services/vr/performanced/ |
D | cpu_set.cpp | 100 std::vector<CpuSet*> sets(path_map_.size()); in GetCpuSets() local 103 sets.push_back(pair.second); in GetCpuSets() 106 return sets; in GetCpuSets() 111 std::vector<CpuSet*> sets; in DumpState() local 115 sets.push_back(pair.second); in DumpState() 118 std::sort(sets.begin(), sets.end(), [](const CpuSet* a, const CpuSet* b) { in DumpState() 139 for (const auto set : sets) { in DumpState()
|
/frameworks/base/cmds/bmgr/src/com/android/commands/bmgr/ |
D | Bmgr.java | 613 printRestoreSets(observer.sets); in doListRestoreSets() 621 private void printRestoreSets(RestoreSet[] sets) { in printRestoreSets() argument 622 if (sets == null || sets.length == 0) { in printRestoreSets() 626 for (RestoreSet s : sets) { in printRestoreSets() 633 RestoreSet[] sets = null; field in Bmgr.RestoreObserver 637 sets = result; in restoreSetsAvailable() 744 RestoreSet[] sets = null; in doRestoreAll() local 749 sets = observer.sets; in doRestoreAll() 750 if (sets != null) { in doRestoreAll() 751 for (RestoreSet s : sets) { in doRestoreAll() [all …]
|
/frameworks/base/services/backup/java/com/android/server/backup/internal/ |
D | BackupHandler.java | 280 RestoreSet[] sets = null; in handleMessage() local 283 sets = params.transport.getAvailableRestoreSets(); in handleMessage() 286 params.session.mRestoreSets = sets; in handleMessage() 288 if (sets == null) { in handleMessage() 296 params.observer.restoreSetsAvailable(sets); in handleMessage()
|
/frameworks/base/core/res/res/raw/ |
D | fallback_categories.csv | 1 # Default app categories used if neither the package nor installer sets anything
|
/frameworks/av/media/libmedia/docs/ |
D | paused.dot | 25 ATsetMarkerPosition [label="AudioTrack::setMarkerPosition()\n[sets marker variables]"]; 28 ATsetPositionUpdatePeriod [label="AudioTrack::setPositionUpdatePeriod()\n[sets update period variab…
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | NavigationBarInflaterView.java | 221 String[] sets = newLayout.split(GRAVITY_SEPARATOR, 3); in inflateLayout() local 222 String[] start = sets[0].split(BUTTON_SEPARATOR); in inflateLayout() 223 String[] center = sets[1].split(BUTTON_SEPARATOR); in inflateLayout() 224 String[] end = sets[2].split(BUTTON_SEPARATOR); in inflateLayout()
|
/frameworks/base/tests/backup/ |
D | test_restore.sh | 69 restore_set=$(a shell bmgr list sets | head -n1 | awk '{print $1}')
|
/frameworks/base/tools/apilint/ |
D | apilint.py | 685 sets = [ m for m in clazz.methods if is_set(m) ] 697 error_if_exists(sets, m.name, expected, "setHas" + target) 701 error_if_exists(sets, m.name, expected, "setIs" + target) 702 error_if_exists(sets, m.name, expected, "set" + target) 706 error_if_exists(sets, m.name, expected, "setIs" + target) 707 error_if_exists(sets, m.name, expected, "setHas" + target) 713 error_if_exists(sets, m.name, expected, "is" + target) 714 error_if_exists(sets, m.name, expected, "has" + target)
|
/frameworks/rs/tests/java_api/Refocus/dataExtraction/ |
D | RefocusTestTimingProcess.txt | 14 …of numbers and average them, organize 3 sets of data like the following(all tests in the file need…
|
/frameworks/webview/chromium/tools/ |
D | memreport.py | 30 from sets import Set
|
/frameworks/support/buildSrc/src/main/groovy/android/support/ |
D | FlatfootAndroidLibraryPlugin.groovy | 25 * Flatfoot Android library specific plugin that sets common configurations needed for
|
D | SupportKotlinLibraryPlugin.groovy | 25 * Support kotlin library specific plugin that sets common configurations needed for
|
D | SupportJavaLibraryPlugin.groovy | 25 * Support java library specific plugin that sets common configurations needed for
|
D | SupportAndroidLibraryPlugin.groovy | 32 * Support library specific com.android.library plugin that sets common configurations needed for
|
/frameworks/base/tools/aapt2/link/ |
D | ManifestFixer_test.cpp | 428 <key-sets> 437 </key-sets>
|
/frameworks/rs/script_api/ |
D | rs_atomic.spec | 139 Atomicly sets the value at addr to the maximum of *addr and value, i.e. 159 Atomicly sets the value at addr to the minimum of *addr and value, i.e.
|
/frameworks/base/core/tests/coretests/src/android/animation/ |
D | AnimatorSetActivityTest.java | 618 private boolean onlyContains(ArrayList<Animator> animators, AnimatorSet... sets) { 619 if (sets.length != animators.size()) { 623 for (int i = 0; i < sets.length; i++) { 624 AnimatorSet set = sets[i];
|
/frameworks/support/annotations/ |
D | build.gradle | 20 // configuration for the javadoc to include all source sets.
|
/frameworks/data-binding/ |
D | propLoader.gradle | 2 * Helper build script that reads data binding variables and sets up the projects.
|
/frameworks/rs/script_api/include/ |
D | rs_atomic.rsh | 151 * Atomicly sets the value at addr to the maximum of *addr and value, i.e. 173 * Atomicly sets the value at addr to the minimum of *addr and value, i.e.
|
/frameworks/support/buildSrc/src/main/groovy/android/support/checkapi/ |
D | CheckApiTask.groovy | 46 /** Character that sets console output color to red. */ 49 /** Character that sets console output color to yellow. */
|
/frameworks/rs/tests/java_api/Refocus/src/com/android/rs/test/ |
D | luts_for_speedup_f32.rsh | 50 // filtering. So always sets it to 1.
|
/frameworks/base/tests/net/java/com/android/server/net/ |
D | NetworkStatsServiceTest.java | 1103 final int[] sets; in assertValues() local 1105 sets = new int[] { SET_ALL, SET_DEFAULT, SET_FOREGROUND }; in assertValues() 1107 sets = new int[] { set }; in assertValues() 1124 for (int s : sets) { in assertValues()
|