HomeSort by relevance Sort by last modified time
    Searched defs:users (Results 1 - 25 of 114) sorted by null

1 2 3 4 5

  /external/chromium_org/third_party/WebKit/Tools/TestResultServer/handlers/
menu.py 31 from google.appengine.api import users namespace
51 user = users.get_current_user()
55 login_url = users.create_logout_url(self.request.uri)
59 login_url = users.create_login_url(self.request.uri)
testfilehandler.py 35 from google.appengine.api import users namespace
108 "admin": users.is_current_user_admin(),
  /packages/apps/Settings/src/com/android/settings/users/
UserUtils.java 17 package com.android.settings.users;
ProfileUpdateReceiver.java 17 package com.android.settings.users;
UserPreference.java 17 package com.android.settings.users;
RestrictionUtils.java 17 package com.android.settings.users;
  /external/chromium/chrome/browser/ui/webui/options/chromeos/
user_image_source.cc 19 chromeos::UserVector users = chromeos::UserManager::Get()->GetUsers(); local
20 for (size_t i = 0; i < users.size(); ++i) {
21 if (users[i].email() == email) {
22 gfx::PNGCodec::EncodeBGRASkBitmap(users[i].image(), false, &user_image);
accounts_options_handler.cc 101 UserVector users = UserManager::Get()->GetUsers(); local
102 for (UserVector::const_iterator it = users.begin();
103 it != users.end(); ++it) {
117 UserVector users = UserManager::Get()->GetUsers(); local
118 for (UserVector::const_iterator it = users.begin();
119 it < users.end(); ++it) {
  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/
main.py 8 from google.appengine.api import users namespace
111 user = users.get_current_user()
130 'user_logout': users.create_logout_url(self.request.uri),
135 login_url = users.create_login_url(dest_url='/',
  /external/chromium_org/chrome/browser/ui/webui/options/chromeos/
accounts_options_handler.cc 131 const UserList& users = UserManager::Get()->GetUsers(); local
132 for (UserList::const_iterator it = users.begin(); it < users.end(); ++it)
  /external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-python/
main.py 8 from google.appengine.api import users namespace
114 user = users.get_current_user()
133 'user_logout': users.create_logout_url(self.request.uri),
138 login_url = users.create_login_url(dest_url='/',
  /external/eigen/Eigen/src/Core/products/
Parallelizer.h 76 GemmParallelInfo() : sync(-1), users(0), rhs_start(0), rhs_length(0) {}
79 int volatile users; member in struct:Eigen::internal::GemmParallelInfo
  /external/chromium/chrome/browser/chromeos/login/
base_login_display_host.cc 121 std::vector<chromeos::UserManager::User> users = local
124 // Fix for users who updated device and thus never passed register screen.
125 // If we already have users, we assume that it is not a second part of
127 if (!WizardController::IsDeviceRegistered() && !users.empty()) {
128 VLOG(1) << "Mark device registered because there are remembered users: "
129 << users.size();
137 sign_in_controller_->Init(users);
  /external/chromium_org/chrome/browser/chromeos/login/
crash_restore_browsertest.cc 141 const UserList& users = user_manager->GetLoggedInUsers(); local
142 ASSERT_EQ(3UL, users.size());
145 EXPECT_EQ(kUserId3, users[0]->email());
147 users[0]->username_hash());
148 EXPECT_EQ(kUserId2, users[1]->email());
150 users[1]->username_hash());
151 EXPECT_EQ(kUserId1, users[2]->email());
153 users[2]->username_hash());
screen_locker.h 41 explicit ScreenLocker(const UserList& users);
90 // Returns the users to authenticate.
91 const UserList& users() const { return users_; } function in class:chromeos::ScreenLocker
139 // Returns true if |username| is found among logged in users.
145 // Logged in users. First user in list is active user.
user_manager_unittest.cc 158 const UserList* users = &UserManager::Get()->GetUsers(); local
159 ASSERT_EQ(3U, users->size());
160 EXPECT_EQ((*users)[0]->email(), "user1@invalid.domain");
161 EXPECT_EQ((*users)[1]->email(), "user0@invalid.domain");
162 EXPECT_EQ((*users)[2]->email(), "owner@invalid.domain");
167 users = &UserManager::Get()->GetUsers();
168 EXPECT_EQ(1U, users->size());
169 EXPECT_EQ((*users)[0]->email(), "owner@invalid.domain");
183 const UserList* users = &UserManager::Get()->GetUsers(); local
184 EXPECT_EQ(1U, users->size())
    [all...]
default_pinned_apps_field_trial.cc 34 // Name of a local state pref to store the list of users that participate
53 const base::ListValue* users = local
55 return users && users->Find(base::StringValue(username)) != users->end();
60 ListPrefUpdate users(g_browser_process->local_state(), kExperimentUsers);
61 users->AppendString(username);
66 ListPrefUpdate users(g_browser_process->local_state(), kExperimentUsers);
67 users->Remove(base::StringValue(username), NULL);
141 // Existing users already have their default pinned apps and have the tria
    [all...]
  /development/samples/SampleSyncAdapter/samplesyncadapter_server/
web_services.py 30 from google.appengine.api import users namespace
  /development/scripts/app_engine_server/gae_shell/
shell.py 26 The logging, os, sys, db, and users modules are imported automatically.
48 from google.appengine.api import users namespace
74 'from google.appengine.api import users',
190 'user': users.get_current_user(),
191 'login_url': users.create_login_url(session_url),
192 'logout_url': users.create_logout_url(session_url),
  /external/chromium_org/chrome/browser/chromeos/net/
onc_utils.cc 157 const chromeos::UserList& users = local
159 for (chromeos::UserList::const_iterator it = users.begin(); it != users.end();
  /external/iproute2/ip/
ipmaddr.c 67 int users; member in struct:ma_info
100 sscanf(buf, "%d%s%d%d%s", &m.index, m.name, &m.users, &st,
151 sscanf(buf, "%08x%d", (__u32*)&m.addr.data, &m.users);
175 sscanf(buf, "%d%s%s%d", &m.index, m.name, hexa, &m.users);
224 if (list->users != 1)
225 fprintf(fp, " users %d", list->users);
  /external/smack/src/org/jivesoftware/smackx/workgroup/agent/
WorkgroupQueue.java 37 private Set<QueueUser> users = Collections.emptySet(); field in class:WorkgroupQueue
74 * Returns the number of users waiting in the queue waiting to be routed to
77 * @return the number of users waiting in the queue.
80 if (users == null) {
83 return users.size();
87 * Returns an Iterator for the users in the queue waiting to be routed to
90 * @return an Iterator for the users waiting in the queue.
93 if (users == null) {
96 return Collections.unmodifiableSet(users).iterator();
99 void setUsers(Set<QueueUser> users) {
    [all...]
  /external/smack/src/org/jivesoftware/smackx/workgroup/packet/
QueueDetails.java 34 * Queue details packet extension, which contains details about the users
53 * The list of users in the queue.
55 private Set<QueueUser> users; field in class:QueueDetails
61 users = new HashSet<QueueUser>();
65 * Returns the number of users currently in the queue that are waiting to
68 * @return the number of users in the queue.
71 return users.size();
75 * Returns the set of users in the queue that are waiting to
78 * @return a Set for the users waiting in a queue.
81 synchronized (users) {
    [all...]
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
KeyguardMultiUserSelectorView.java 75 ArrayList<UserInfo> users = new ArrayList<UserInfo>(userList); local
76 Collections.sort(users, mOrderAddedComparator);
78 for (UserInfo user: users) {
  /external/chromium_org/chrome/browser/ui/webui/chromeos/login/
locally_managed_user_creation_screen_handler.cc 165 const UserList& users = UserManager::Get()->GetUsers(); local
169 for (UserList::const_iterator it = users.begin(); it != users.end(); ++it) {

Completed in 2700 milliseconds

1 2 3 4 5