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

  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
AccountWithDataSet.java 30 private final String mAccountName;
35 mAccountName = emptyToNull(accountName);
53 return mAccountName;
65 return (mAccountName == null) && (mAccountType == null);
72 return Objects.equal(mAccountName, other.getAccountName())
81 int result = mAccountName != null ? mAccountName.hashCode() : 0;
89 return "AccountWithDataSet {name=" + mAccountName + ", type=" + mAccountType + ", dataSet="
  /packages/apps/Contacts/src/com/android/contacts/
GroupMetaData.java 23 private String mAccountName;
33 this.mAccountName = accountName;
43 return mAccountName;
  /packages/apps/Contacts/src/com/android/contacts/group/
GroupListItem.java 23 private final String mAccountName;
33 mAccountName = accountName;
43 return mAccountName;
SuggestedMemberListAdapter.java 80 private String mAccountName;
99 mAccountName = accountName;
191 args = new String[] {mAccountName, mAccountType, searchQuery, searchQuery};
195 mAccountName, mAccountType, mDataSet, searchQuery, searchQuery
GroupEditorFragment.java 185 private String mAccountName;
246 mAccountName = account.name;
274 outState.putString(KEY_ACCOUNT_NAME, mAccountName);
292 mAccountName = state.getString(KEY_ACCOUNT_NAME);
326 mAccountName = accounts.get(0).name;
341 mAccountName = account.name;
415 if (!TextUtils.isEmpty(mAccountName)) {
417 mContext.getString(R.string.from_account_format, mAccountName));
431 mAutoCompleteAdapter.setAccountName(mAccountName);
480 mAccountName = cursor.getString(GroupMetaDataLoader.ACCOUNT_NAME)
    [all...]
  /packages/apps/Browser/src/com/android/browser/
BookmarksLoader.java 52 String mAccountName;
58 mAccountName = accountName;
63 super.setUri(addAccount(uri, mAccountType, mAccountName));
  /packages/apps/Contacts/tests/src/com/android/contacts/util/
StreamItemEntryBuilder.java 32 private String mAccountName;
56 mAccountName = value;
67 mAccountType, mAccountName, mDataSet, mResPackage, mIconRes, mLabelRes);
  /packages/apps/Contacts/src/com/android/contacts/util/
StreamItemEntry.java 44 private final String mAccountName;
75 mAccountName = accountName;
91 mAccountName = getString(cursor, StreamItems.ACCOUNT_NAME);
129 return mAccountName;
  /packages/apps/Email/src/com/android/email/widget/
EmailWidgetLoader.java 73 private final String mAccountName;
80 mAccountName = accountName;
94 return mAccountName;
EmailWidget.java 118 private String mAccountName;
192 mAccountName = mCursor.getAccountName();
286 setTextViewTextAndDesc(views, R.id.widget_tap, mAccountName);
553 return "View=" + mAccountName;
  /frameworks/base/cmds/requestsync/src/com/android/commands/requestsync/
RequestSync.java 33 private String mAccountName = null;
64 final Account account = mAccountName != null && mAccountType != null
65 ? new Account(mAccountName, mAccountType) : null;
94 mAccountName = nextArgRequired();
  /packages/apps/Contacts/src/com/android/contacts/editor/
RawContactReadOnlyEditorView.java 67 private String mAccountName;
128 mAccountName = values.getAsString(RawContacts.ACCOUNT_NAME);
133 if (TextUtils.isEmpty(mAccountName)) {
140 mAccountNameTextView.setText(mAccountName);
147 if (!TextUtils.isEmpty(mAccountName)) {
150 mContext.getString(R.string.from_account_format, mAccountName));
282 new AccountWithDataSet(mAccountName, mAccountType, mDataSet),
GroupMembershipView.java 132 private String mAccountName;
204 mAccountName = values.getAsString(RawContacts.ACCOUNT_NAME);
213 || mAccountName == null) {
228 if (accountName.equals(mAccountName) && accountType.equals(mAccountType)
298 if (accountName.equals(mAccountName) && accountType.equals(mAccountType)
422 mAccountName,
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountSettingsFragment.java 97 private EditTextPreference mAccountName;
381 mAccountName = (EditTextPreference) findPreference(PREFERENCE_NAME);
385 mAccountName.setSummary(senderName);
386 mAccountName.setText(senderName);
387 mAccountName.setOnPreferenceChangeListener(new Preference.OnPreferenceChangeListener() {
391 mAccountName.setSummary(summary);
392 mAccountName.setText(summary);
651 mAccount.setSenderName(mAccountName.getText().trim());
    [all...]
  /packages/apps/Exchange/exchange2/src/com/android/exchange/
ExchangeService.java     [all...]

Completed in 1011 milliseconds