Home | History | Annotate | Download | only in login

Lines Matching defs:users

44 // A vector pref of the users who have logged into the device.
244 std::vector<User> users;
246 return users;
283 users.push_back(user);
287 return users;
308 // Get a copy of the current users.
309 std::vector<User> users = GetUsers();
311 // Clear the prefs view of the users.
322 for (std::vector<User>::iterator it = users.begin();
323 it != users.end();
341 // Get a copy of the current users.
342 std::vector<User> users = GetUsers();
349 if (users.size() < 2)
353 for (size_t i = 0; !user_found && i < users.size(); ++i)
354 user_found = (email == users[i].email());
363 // Get a copy of the current users.
364 std::vector<User> users = GetUsers();
366 // Clear the prefs view of the users.
371 for (std::vector<User>::iterator it = users.begin();
372 it != users.end();
399 std::vector<User> users = GetUsers();
400 for (std::vector<User>::iterator it = users.begin();
401 it < users.end();
456 // We want to distribute default images between users uniformly so that if
457 // there're more users with red image, we won't add red one for sure.