HomeSort by relevance Sort by last modified time
    Searched refs:AuthInfo (Results 1 - 2 of 2) sorted by null

  /frameworks/base/core/java/android/accounts/
ChooseAccountTypeActivity.java 48 private HashMap<String, AuthInfo> mTypeToAuthenticatorInfo = new HashMap<String, AuthInfo>();
49 private ArrayList<AuthInfo> mAuthenticatorInfosToDisplay;
76 mAuthenticatorInfosToDisplay = new ArrayList<AuthInfo>(mTypeToAuthenticatorInfo.size());
77 for (Map.Entry<String, AuthInfo> entry: mTypeToAuthenticatorInfo.entrySet()) {
79 final AuthInfo info = entry.getValue();
149 AuthInfo authInfo = new AuthInfo(desc, name, icon);
150 mTypeToAuthenticatorInfo.put(desc.type, authInfo);
    [all...]
  /external/chromium/chrome/browser/ui/login/
login_prompt_browsertest.cc 28 auth_map_[L"foo"] = AuthInfo(L"testuser", L"foopassword");
29 auth_map_[L"bar"] = AuthInfo(L"testuser", L"barpassword");
35 struct AuthInfo {
39 AuthInfo() {}
41 AuthInfo(const std::wstring username,
46 std::map<std::wstring, AuthInfo> auth_map_;
55 std::map<std::wstring, AuthInfo>::iterator i =
59 const AuthInfo& info = i->second;

Completed in 2982 milliseconds