HomeSort by relevance Sort by last modified time
    Searched refs:users (Results 101 - 125 of 793) sorted by null

1 2 3 45 6 7 8 91011>>

  /packages/apps/Settings/src/com/android/settings/users/
ProfileUpdateReceiver.java 17 package com.android.settings.users;
  /packages/apps/Settings/tests/robotests/src/com/android/settings/users/
UserCapabilitiesTest.java 17 package com.android.settings.users;
UserFeatureProviderImplTest.java 17 package com.android.settings.users;
UserPreferenceTest.java 17 package com.android.settings.users;
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/users/
RestrictionUtils.java 17 package com.android.tv.settings.users;
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Transforms/InstCombine/
InstCombineWorklist.h 85 /// AddUsersToWorkList - When an instruction is simplified, add all users of
90 for (User *U : I.users())
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Transforms/InstCombine/
InstCombineWorklist.h 85 /// AddUsersToWorkList - When an instruction is simplified, add all users of
90 for (User *U : I.users())
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Transforms/InstCombine/
InstCombineWorklist.h 85 /// AddUsersToWorkList - When an instruction is simplified, add all users of
90 for (User *U : I.users())
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Transforms/InstCombine/
InstCombineWorklist.h 85 /// AddUsersToWorkList - When an instruction is simplified, add all users of
90 for (User *U : I.users())
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/Transforms/InstCombine/
InstCombineWorklist.h 85 /// AddUsersToWorkList - When an instruction is simplified, add all users of
90 for (User *U : I.users())
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/Transforms/InstCombine/
InstCombineWorklist.h 85 /// AddUsersToWorkList - When an instruction is simplified, add all users of
90 for (User *U : I.users())
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/Transforms/InstCombine/
InstCombineWorklist.h 85 /// AddUsersToWorkList - When an instruction is simplified, add all users of
90 for (User *U : I.users())
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Transforms/InstCombine/
InstCombineWorklist.h 85 /// AddUsersToWorkList - When an instruction is simplified, add all users of
90 for (User *U : I.users())
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/Transforms/InstCombine/
InstCombineWorklist.h 85 /// AddUsersToWorkList - When an instruction is simplified, add all users of
90 for (User *U : I.users())
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/Transforms/InstCombine/
InstCombineWorklist.h 85 /// AddUsersToWorkList - When an instruction is simplified, add all users of
90 for (User *U : I.users())
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/Transforms/InstCombine/
InstCombineWorklist.h 85 /// AddUsersToWorkList - When an instruction is simplified, add all users of
90 for (User *U : I.users())
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/Transforms/InstCombine/
InstCombineWorklist.h 85 /// AddUsersToWorkList - When an instruction is simplified, add all users of
90 for (User *U : I.users())
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/Transforms/InstCombine/
InstCombineWorklist.h 85 /// AddUsersToWorkList - When an instruction is simplified, add all users of
90 for (User *U : I.users())
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/Transforms/InstCombine/
InstCombineWorklist.h 85 /// AddUsersToWorkList - When an instruction is simplified, add all users of
90 for (User *U : I.users())
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/diff/
__init__.py 40 from .users import UsersDifference
  /test/vti/test_serving/gae/webapp/src/handlers/
base.py 25 from google.appengine.api import users
166 user = users.get_current_user()
168 url = users.create_logout_url(self.request.uri)
171 url = users.create_login_url(self.request.uri)
  /frameworks/support/room/integration-tests/testapp/src/androidTest/java/androidx/room/integration/testapp/test/
LiveDataQueryTest.java 157 User[] users = TestUtil.createUsersArray(3, 5, 7, 9); local
158 users[0].setAge(10);
159 users[0].setWeight(15);
161 users[1].setAge(20);
162 users[1].setWeight(25);
164 users[2].setAge(20);
165 users[2].setWeight(26);
167 users[3].setAge(10);
168 users[3].setWeight(21);
180 mUserDao.insertAll(users);
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/car/
UserGridRecyclerView.java 44 import com.android.settingslib.users.UserManagerHelper;
52 * Displays a GridLayout with icons for the users in the system to allow switching between users.
69 * Register listener for any update to the users
78 * Unregisters listener checking for any change to the users
117 // Add add user record if the foreground user can add users
174 public UserAdapter(Context context, List<UserRecord> users) {
177 updateUsers(users);
186 public void updateUsers(List<UserRecord> users) {
187 mUsers = users;
    [all...]
  /frameworks/base/core/java/android/hardware/soundtrigger/
SoundTrigger.java 95 /** Maximum number of users per key phrase */
303 /** Users this key phrase has been trained for. countains sound trigger specific user IDs
305 public final int[] users; field in class:SoundTrigger.Keyphrase
307 public Keyphrase(int id, int recognitionModes, String locale, String text, int[] users) {
312 this.users = users;
331 int[] users = null; local
334 users = new int[numUsers];
335 in.readIntArray(users);
337 return new Keyphrase(id, recognitionModes, locale, text, users);
    [all...]
  /compatibility/cdd/3_software/
3_10_accessibility.md 3 Android provides an accessibility layer that helps users with disabilities to
36 * SHOULD provide a mechanism in the out-of-box setup flow for users to enable

Completed in 885 milliseconds

1 2 3 45 6 7 8 91011>>