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

  /packages/apps/Contacts/src/com/android/contacts/editor/
RawContactReadOnlyEditorView.java 118 final Pair<String,String> accountInfo = EditorUiUtils.getAccountInfo(getContext(),
120 if (accountInfo == null) {
124 if (accountInfo.first == null) {
128 mAccountHeaderNameTextView.setText(accountInfo.first);
130 mAccountHeaderTypeTextView.setText(accountInfo.second);
RawContactEditorView.java 193 final Pair<String,String> accountInfo = EditorUiUtils.getAccountInfo(getContext(),
195 if (accountInfo == null) {
199 if (accountInfo.first == null) {
203 mAccountHeaderNameTextView.setText(accountInfo.first);
205 mAccountHeaderTypeTextView.setText(accountInfo.second);
CompactRawContactsEditorView.java 358 final Pair<String,String> accountInfo = EditorUiUtils.getAccountInfo(getContext(),
362 if (accountInfo == null) {
368 if (accountInfo.first == null) {
372 mAccountNameView.setText(accountInfo.first);
374 mAccountTypeView.setText(accountInfo.second);
377 accountInfo.first, accountInfo.second));
    [all...]
  /frameworks/base/services/core/java/com/android/server/content/
SyncStorageEngine.java 215 static class AccountInfo {
220 AccountInfo(AccountAndUser accountAndUser) {
435 private final HashMap<AccountAndUser, AccountInfo> mAccounts
436 = new HashMap<AccountAndUser, AccountInfo>();
847 for (AccountInfo accountInfo : mAccounts.values()) {
848 if (account != null && !account.equals(accountInfo.accountAndUser.account)
849 && userId != accountInfo.accountAndUser.userId) {
852 for (AuthorityInfo authorityInfo : accountInfo.authorities.values()) {
    [all...]

Completed in 380 milliseconds