OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mAccountTypeToAuthorities
(Results
1 - 2
of
2
) sorted by null
/packages/apps/Settings/src/com/android/settings/accounts/
AccountPreferenceBase.java
54
private HashMap<String, ArrayList<String>>
mAccountTypeToAuthorities
= null;
106
if (
mAccountTypeToAuthorities
== null) {
107
mAccountTypeToAuthorities
= Maps.newHashMap();
111
ArrayList<String> authorities =
mAccountTypeToAuthorities
.get(sa.accountType);
114
mAccountTypeToAuthorities
.put(sa.accountType, authorities);
123
return
mAccountTypeToAuthorities
.get(type);
ChooseAccountActivity.java
55
private HashMap<String, ArrayList<String>>
mAccountTypeToAuthorities
= null;
169
if (
mAccountTypeToAuthorities
== null) {
170
mAccountTypeToAuthorities
= Maps.newHashMap();
174
ArrayList<String> authorities =
mAccountTypeToAuthorities
.get(sa.accountType);
177
mAccountTypeToAuthorities
.put(sa.accountType, authorities);
186
return
mAccountTypeToAuthorities
.get(type);
Completed in 29 milliseconds