OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:AccountInfo
(Results
1 - 3
of
3
) sorted by null
/frameworks/base/core/java/android/accounts/
ChooseAccountActivity.java
69
AccountInfo
[] mAccountInfos = new
AccountInfo
[mAccounts.length];
71
mAccountInfos[i] = new
AccountInfo
(((Account) mAccounts[i]).name,
140
private static class
AccountInfo
{
144
AccountInfo
(String name, Drawable drawable) {
155
private static class AccountArrayAdapter extends ArrayAdapter<
AccountInfo
> {
157
private
AccountInfo
[] mInfos;
159
public AccountArrayAdapter(Context context, int textViewResourceId,
AccountInfo
[] infos) {
ChooseTypeAndAccountActivity.java
110
private ArrayList<
AccountInfo
> mAccountInfos;
178
// Create a list of
AccountInfo
objects for each account that is allowable. Filter out
182
mAccountInfos = new ArrayList<
AccountInfo
>(accounts.length);
192
mAccountInfos.add(new
AccountInfo
(account,
385
AccountInfo
accountInfo
= mAccountInfos.get(position);
386
Log.d(TAG, "selected account " +
accountInfo
.account);
387
setResultAndFinish(
accountInfo
.account.name,
accountInfo
.account.type);
420
private static class
AccountInfo
{
[
all
...]
/frameworks/base/core/java/android/content/
SyncStorageEngine.java
164
static class
AccountInfo
{
169
AccountInfo
(Account account) {
226
private final HashMap<Account,
AccountInfo
> mAccounts =
227
new HashMap<Account,
AccountInfo
>();
497
for (
AccountInfo
accountInfo
: mAccounts.values()) {
498
if (account != null && !account.equals(
accountInfo
.account)) continue;
499
for (AuthorityInfo authorityInfo :
accountInfo
.authorities.values()) {
531
for (
AccountInfo
accountInfo
: mAccounts.values())
[
all
...]
Completed in 797 milliseconds