Searched refs:sets (Results 1 - 19 of 19) sorted by path

/frameworks/base/cmds/bmgr/src/com/android/commands/bmgr/
H A DBmgr.java552 String arg = nextArg(); // sets, transports, packages set#
566 if ("sets".equals(arg)) {
613 System.out.println("Unable to request restore sets");
616 printRestoreSets(observer.sets);
624 private void printRestoreSets(RestoreSet[] sets) { argument
625 if (sets == null || sets.length == 0) {
626 System.out.println("No restore sets");
629 for (RestoreSet s : sets) {
636 RestoreSet[] sets field in class:Bmgr.RestoreObserver
[all...]
/frameworks/base/core/tests/coretests/src/android/animation/
H A DAnimatorSetActivityTest.java618 private boolean onlyContains(ArrayList<Animator> animators, AnimatorSet... sets) { argument
619 if (sets.length != animators.size()) {
623 for (int i = 0; i < sets.length; i++) {
624 AnimatorSet set = sets[i];
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNavigationBarInflaterView.java259 String[] sets = newLayout.split(GRAVITY_SEPARATOR, 3);
260 if (sets.length != 3) {
263 sets = newLayout.split(GRAVITY_SEPARATOR, 3);
265 String[] start = sets[0].split(BUTTON_SEPARATOR);
266 String[] center = sets[1].split(BUTTON_SEPARATOR);
267 String[] end = sets[2].split(BUTTON_SEPARATOR);
/frameworks/base/services/backup/java/com/android/server/backup/internal/
H A DBackupHandler.java301 RestoreSet[] sets = null;
307 sets = transport.getAvailableRestoreSets();
310 params.session.setRestoreSets(sets);
312 if (sets == null) {
320 params.observer.restoreSetsAvailable(sets);
/frameworks/base/services/backup/java/com/android/server/backup/utils/
H A DSparseArrayUtils.java34 * @param sets The array of sets from which to take the union.
38 public static<V> HashSet<V> union(SparseArray<HashSet<V>> sets) { argument
40 int n = sets.size();
42 HashSet<V> ithSet = sets.valueAt(i);
/frameworks/base/services/core/java/com/android/server/fingerprint/
H A DFingerprintService.java581 * it calls cancel() and sets mPendingClient to begin when the current task finishes
1413 JSONArray sets = new JSONArray();
1435 sets.put(set);
1438 dump.put("prints", sets);
/frameworks/base/services/core/java/com/android/server/slice/
H A DSliceClientPermissions.java313 String[] sets = s.split(DELIMITER, -1);
314 for (int i = 0; i < sets.length; i++) {
315 sets[i] = Uri.decode(sets[i]);
317 return sets;
/frameworks/base/tests/backup/
H A Dtest_restore.sh69 restore_set=$(a shell bmgr list sets | head -n1 | awk '{print $1}')
/frameworks/base/tests/net/java/com/android/server/net/
H A DNetworkStatsServiceTest.java1168 final int[] sets;
1170 sets = new int[] { SET_ALL, SET_DEFAULT, SET_FOREGROUND };
1172 sets = new int[] { set };
1197 for (int s : sets) {
/frameworks/base/tools/aapt2/link/
H A DManifestFixer_test.cpp503 <key-sets>
512 </key-sets>
/frameworks/base/tools/apilint/
H A Dapilint.py713 sets = [ m for m in clazz.methods if is_set(m) ]
725 error_if_exists(sets, m.name, expected, "setHas" + target)
729 error_if_exists(sets, m.name, expected, "setIs" + target)
730 error_if_exists(sets, m.name, expected, "set" + target)
734 error_if_exists(sets, m.name, expected, "setIs" + target)
735 error_if_exists(sets, m.name, expected, "setHas" + target)
741 error_if_exists(sets, m.name, expected, "is" + target)
742 error_if_exists(sets, m.name, expected, "has" + target)
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...
/frameworks/ex/camera2/utils/tests/src/com/android/ex/camera2/utils/
H A DCamera2UtilsTest.java404 Camera2RequestSettingsSet[] sets = { new Camera2RequestSettingsSet(),
406 sets[0].union(sets[1]);
407 assertEquals(1, sets[0].getRevision());
408 assertEquals(0, sets[1].getRevision());
427 Camera2RequestSettingsSet[] sets = { new Camera2RequestSettingsSet(),
430 sets[0].set(CaptureRequest.CONTROL_AE_LOCK, true);
431 sets[1].set(CaptureRequest.CONTROL_AWB_LOCK, true);
432 sets[0].union(sets[
[all...]
/frameworks/native/services/vr/performanced/
H A Dcpu_set.cpp100 std::vector<CpuSet*> sets(path_map_.size());
103 sets.push_back(pair.second);
106 return sets;
111 std::vector<CpuSet*> sets; local
115 sets.push_back(pair.second);
118 std::sort(sets.begin(), sets.end(), [](const CpuSet* a, const CpuSet* b) {
139 for (const auto set : sets) {
/frameworks/rs/script_api/
H A Drs_atomic.spec139 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.
H A Drs_graphics.spec744 summary: Return the number of index sets
746 Meshes could have multiple index sets, this function returns
H A Drs_math.spec25 // The following call sets<br/>
1065 For example, <code>fract(1.3f, &amp;val)</code> returns 0.3f and sets val to 1.f.
1066 <code>fract(-1.3f, &amp;val)</code> returns 0.7f and sets val to -2.f.
2924 Example: <code>remquo(-23.5f, 8.f, &amp;quot)</code> sets the lowest three bits of quot to 3
H A Drs_matrix.spec396 For the matrix by matrix variant, sets m to the matrix product <code>m * rhs</code>.
/frameworks/support/slices/core/src/main/java/androidx/slice/compat/
H A DCompatPermissionManager.java213 String[] sets = s.split("/", -1);
214 for (int i = 0; i < sets.length; i++) {
215 sets[i] = Uri.decode(sets[i]);
217 return sets;

Completed in 484 milliseconds