HomeSort by relevance Sort by last modified time
    Searched refs:account (Results 276 - 300 of 541) sorted by null

<<11121314151617181920>>

  /packages/apps/Calendar/src/com/android/calendar/selectcalendars/
SelectSyncedCalendarsMultiAccountAdapter.java 241 // Collect proper description for account types
299 * Gets the label associated with a particular account type. If none found, return null.
300 * @param accountType the type of account
311 Log.w(TAG, "No label for account type " + ", type " + accountType);
391 String account = cursor.getString(accountColumn); local
394 setText(view, R.id.account, account);
404 String account = groupCursor.getString(accountColumn); local
406 //Get all the calendars for just this account.
407 Cursor childCursor = mChildrenCursors.get(accountType + "#" + account);
408 new RefreshCalendars(groupCursor.getPosition(), account, accountType).run(); local
    [all...]
  /packages/apps/Contacts/tests/src/com/android/contacts/interactions/
ContactDeletionInteractionTest.java 34 import com.android.contacts.common.model.account.AccountType;
35 import com.android.contacts.common.model.account.BaseAccountType;
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/service/
PolicyServiceProxy.java 23 import com.android.emailcommon.provider.Account;
135 public static void setAccountHoldFlag(Context context, Account account, boolean newState) {
137 new PolicyServiceProxy(context).setAccountHoldFlag(account.mId, newState);
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountSettingsEditQuickResponsesFragment.java 21 import com.android.mail.providers.Account;
45 * Lists quick responses associated with the specified email account. Allows users to create,
49 * <li>Provide an Account as an argument named "account". This account's quick responses
56 private Account mAccount;
58 private static final String ARG_ACCOUNT = "account";
63 public static Bundle createArgs(final Account account) {
65 b.putParcelable(ARG_ACCOUNT, account);
    [all...]
AccountServerBaseFragment.java 33 import com.android.emailcommon.provider.Account;
56 * account creation as well as subsequent account modification. If this is
57 * <code>false</code>, we are in account creation mode. Otherwise, we are in account
84 * Called when user clicks "next". Starts account checker.
94 * @param settingsMode True if we're in settings, false if we're in account creation
214 // We're editing an existing account; don't allow modification of the user name
250 final Account account = mSetupData.getAccount() local
    [all...]
  /packages/apps/Settings/src/com/android/settings/
AccountPreference.java 19 import android.accounts.Account;
30 * AccountPreference is used to display a username, status and provider icon for an account on
40 private Account mAccount;
45 public AccountPreference(Context context, Account account, Drawable icon,
48 mAccount = account;
62 public Account getAccount() {
  /packages/apps/Settings/src/com/android/settings/support/
SupportDisclaimerDialogFragment.java 19 import android.accounts.Account;
50 public static SupportDisclaimerDialogFragment newInstance(Account account,
54 bundle.putParcelable(SupportDisclaimerDialogFragment.EXTRA_ACCOUNT, account);
95 (Account) bundle.getParcelable(EXTRA_ACCOUNT), bundle.getInt(EXTRA_TYPE));
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
SendersView.java 35 import com.android.mail.providers.Account;
237 Account account, final boolean showToHeader, final boolean resourceCachingRequired) {
241 displayableSenderNames, senderAvatarModel, account,
254 Account account, final TextAppearanceSpan notificationUnreadStyleSpan,
260 displayableSenderNames, senderAvatarModel, account,
273 Account account, final TextAppearanceSpan unreadStyleSpan,
374 final String senderEmail = TextUtils.isEmpty(currentName) ? account.getEmailAddress()
    [all...]
AttachmentActionHandler.java 76 public void setAccount(String account) {
77 mAccount = account;
282 public void handleOption1(Context context, String account, Message message,
ConversationPagerController.java 33 import com.android.mail.providers.Account;
103 * @param account current account
110 public void show(Account account, Folder folder, Conversation initialConversation,
116 // optimize for the case where account+folder are the same, when we can just shift
119 if (mPagerAdapter != null && mPagerAdapter.matches(account, folder)
152 account, folder, initialConversation);
202 * {@link #show(Account, Folder, Conversation, boolean, boolean)} first, and you probably want
ConversationPagerAdapter.java 32 import com.android.mail.providers.Account;
59 private final Account mAccount;
88 * <tt>true</tt> indicates the server has already sanitized all HTML email from this account.
93 * <tt>true</tt> indicates the client is permitted to sanitize all HTML email for this account.
135 public ConversationPagerAdapter(Context context, FragmentManager fm, Account account,
140 mCommonFragmentArgs = AbstractConversationViewFragment.makeBasicArgs(account);
142 mAccount = account;
150 public boolean matches(Account account, Folder folder)
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
CustomViewToolbar.java 31 import com.android.mail.providers.Account;
47 public void onChanged(Account newAccount) {
98 * Sets the search button visibility based on the current account.
104 private void setSearchButtonVisibility(Account account) {
107 account.supportsSearch();
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapMasInstance.java 117 BluetoothMapAccountItem account,
124 mAccount = account;
125 if(account != null) {
126 mBaseUri = account.mBase_uri;
  /packages/apps/Contacts/src/com/android/contacts/interactions/
GroupCreationDialogFragment.java 27 import com.android.contacts.common.model.account.AccountWithDataSet;
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/account/
AccountTypeWithDataSet.java 17 package com.android.contacts.common.model.account;
31 * Encapsulates an "account type" string and a "data set" string.
39 /** account type. Can be null for fallback type. */
55 * Return true if there are any contacts in the database with this account type and data set.
  /packages/apps/ContactsCommon/src/com/android/contacts/common/preference/
DisplayOptionsPreferenceFragment.java 27 import com.android.contacts.common.model.account.AccountWithDataSet;
69 // Remove the "Default account" setting if there aren't any writable accounts
  /packages/apps/Email/src/com/android/email/activity/
ComposeActivityEmail.java 49 mReplyFromAccount.account);
  /packages/apps/Settings/src/com/android/settings/overlay/
SupportFeatureProvider.java 19 import android.accounts.Account;
114 * Returns an {@link Account} that's eligible for support options.
116 Account getSupportEligibleAccount(Context context);
122 * @param account A account returned by {@link #getSupportEligibleAccount}
123 * @param type The type of support account needs.
125 void startSupport(Activity activity, Account account, @SupportType int type);
133 * Returns an intent that will start the add account UI.
  /packages/apps/UnifiedEmail/tests/src/com/android/mail/compose/
ComposeActivityTest.java 31 import com.android.mail.providers.Account;
59 private Account mAccount;
61 private static final Account[] EMPTY_ACCOUNT_LIST = new Account[0];
98 final Account account = getActivity().getFromAccount(); local
99 return getRefMessage(resolver, account.folderListUri);
103 // Get a mock account.
104 final Account account = getAccountForName(activity, accountName) local
179 final Account account = mAccount; local
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
ContactsProvider2_AccountRemovalTest.java 21 import android.accounts.Account;
31 import android.provider.cts.contacts.account.StaticAccountAuthenticator;
49 // other tests running when the account is removed. No other tests should use the following
51 private static final Account ACCT_1 = new Account("cp removal acct 1",
53 private static final Account ACCT_2 = new Account("cp removal acct 2",
100 * Contact has merged raw contacts from a single account. Contact should be deleted upon
101 * account removal.
112 * one account is removed. But contact should have last updated timestamp updated
    [all...]
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/accounts/
AuthenticatorHelper.java 19 import android.accounts.Account;
44 * called once accounts get updated. For setting up listening for account
70 // This guarantees that the helper is ready to use once constructed: the account types and
90 * Gets an icon associated with a particular account type. If none found, return null.
91 * @param accountType the type of account
123 * Gets the label associated with a particular account type. If none found, return null.
124 * @param accountType the type of account
136 Log.w(TAG, "No label name for account type " + accountType);
138 Log.w(TAG, "No label icon for account type " + accountType);
145 * Gets the package associated with a particular account type. If none found, return null
209 final Account account = accounts[i]; local
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/vcard/
ImportProcessor.java 18 import android.accounts.Account;
146 final Account account = request.account; local
153 new VCardEntryConstructor(estimatedVCardType, account, estimatedCharset);
  /packages/apps/Email/provider_src/com/android/email/provider/
Utilities.java 33 import com.android.emailcommon.provider.Account;
49 * into a newly created EmailProvider Message, given the account and mailbox
52 * @param account the account it will be stored into
57 public static void copyOneMessageToProvider(Context context, Message message, Account account,
69 String.valueOf(account.mId),
82 localMessage.mAccountKey = account.mId;
WidgetProvider.java 25 import com.android.emailcommon.provider.Account;
52 // Remove the account in the preference
60 protected com.android.mail.providers.Account getAccountObject(
71 protected boolean isAccountValid(Context context, com.android.mail.providers.Account account) {
72 if (account != null) {
74 final Cursor accountCursor = resolver.query(account.uri,
95 if (accountId == Account.NO_ACCOUNT || mailboxId == Mailbox.NO_MAILBOX) {
96 LogUtils.d(LOG_TAG, "Couldn't load account or mailbox. accountId: %d" +
104 // Get Account and folder objects for the account id and mailbox i
    [all...]
  /external/libweave/src/notification/
xmpp_channel.cc 33 std::string BuildXmppAuthenticateCommand(const std::string& account,
37 credentials.insert(credentials.end(), account.begin(), account.end());
91 XmppChannel::XmppChannel(const std::string& account,
96 : account_{account},

Completed in 1879 milliseconds

<<11121314151617181920>>