HomeSort by relevance Sort by last modified time
    Searched full:account (Results 251 - 275 of 4748) sorted by null

<<11121314151617181920>>

  /packages/apps/Email/provider_src/com/android/email/activity/setup/
AccountSettingsUtils.java 32 import com.android.emailcommon.provider.Account;
52 * Commits the UI-related settings of an account to the provider. This is static so that it
53 * can be used by the various account activities. If the account has never been saved, this
56 * @param account the account whose settings will be committed
58 public static void commitSettings(Context context, Account account) {
59 if (!account.isSaved()) {
60 account.save(context)
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
ConversationAccountController.java 20 import com.android.mail.providers.Account;
23 Account getAccount();
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
AllAccountObserver.java 28 * {@link #onChanged(Account[])} when the list of Accounts changes. Initializing the object
30 * The object will then begin to receive {@link #onChanged(Account[])} till {@link
32 * .AllAccountObserver}, you need to implement the {@link #onChanged(Account[])} method.
51 * a call to {@link #onChanged(Account[])} when the controller changes the list of accounts.
55 public Account[] initialize(AccountController controller) {
77 public abstract void onChanged(Account[] allAccounts);
83 public final Account[] getAllAccounts() {
91 * Unregisters for list of Account changes and makes the object unusable.
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
FolderSelectionDialog.java 29 import com.android.mail.providers.Account;
42 private static final String ARG_ACCOUNT_TAG = "account";
50 protected Account mAccount;
54 public static FolderSelectionDialog getInstance(final Account account,
59 * present on the account, so we should be able to remove the check here.
62 if (isMoveTo || !account.supportsCapability(
70 args.putParcelable(ARG_ACCOUNT_TAG, account);
  /bionic/tests/libs/
dlopen_b.cpp 8 // for libtest_dt_runpath_x.so which should be taken into account
  /developers/build/prebuilts/gradle/CardEmulation/Application/src/main/java/com/example/android/cardemulation/
AccountStorage.java 25 * Utility class for persisting account numbers to disk.
41 Log.i(TAG, "Setting account number: " + s);
52 String account = prefs.getString(PREF_ACCOUNT_NUMBER, DEFAULT_ACCOUNT_NUMBER); local
53 sAccount = account;
  /developers/samples/android/connectivity/nfc/CardEmulation/Application/src/main/java/com/example/android/cardemulation/
AccountStorage.java 25 * Utility class for persisting account numbers to disk.
41 Log.i(TAG, "Setting account number: " + s);
52 String account = prefs.getString(PREF_ACCOUNT_NUMBER, DEFAULT_ACCOUNT_NUMBER); local
53 sAccount = account;
  /development/samples/browseable/AppRestrictions/
_index.jd 11 When launched under the primary User account, you can toggle between standard app restriction
  /development/samples/browseable/BasicSyncAdapter/
_index.jd 9 doesn\'t require a user-visible account type or 2-way synchronization.
  /development/samples/browseable/CardEmulation/src/com.example.android.cardemulation/
AccountStorage.java 25 * Utility class for persisting account numbers to disk.
41 Log.i(TAG, "Setting account number: " + s);
52 String account = prefs.getString(PREF_ACCOUNT_NUMBER, DEFAULT_ACCOUNT_NUMBER); local
53 sAccount = account;
  /external/autotest/client/site_tests/platform_CryptohomeMount/
platform_CryptohomeMount.py 17 # Get the hash for the test user account
21 # Remove the test user account
24 # Mount the test user account
44 # Remove the test user account
  /frameworks/base/drm/java/android/drm/
ProcessedData.java 36 * @param accountId Account ID of the user.
47 * @param accountId Account ID of the user.
66 * Retrieves the account ID associated with this object.
68 * @return The account ID of the user.
  /packages/apps/Contacts/src/com/android/contacts/model/account/
AccountWithDataSet.java 17 package com.android.contacts.model.account;
19 import android.accounts.Account;
41 * Wrapper for an account that includes a data set (which may be null).
91 public Account getAccountOrNull() {
93 return new Account(name, type);
124 * Return {@code true} if this account has any contacts in the database.
177 private static StringBuilder addStringified(StringBuilder sb, AccountWithDataSet account) {
178 if (!TextUtils.isEmpty(account.name)) sb.append(account.name);
180 if (!TextUtils.isEmpty(account.type)) sb.append(account.type)
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/util/
DeviceLocalAccountTypeFactory.java 21 import com.android.contacts.model.account.AccountType;
22 import com.android.contacts.model.account.DeviceLocalAccountType;
30 * account
74 throw new IllegalArgumentException(accountType + " is not a device account type.");
  /packages/apps/UnifiedEmail/src/com/android/mail/drawer/
HelpItem.java 21 import com.android.mail.providers.Account;
28 HelpItem(ControllableActivity activity, Account account,
30 super(activity, account, drawerListener,
SettingsItem.java 21 import com.android.mail.providers.Account;
28 SettingsItem(ControllableActivity activity, Account account,
30 super(activity, account, drawerListener,
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
PhoneAccountRegistrationReceiver.java 29 * This will be launched when a new phone account is registered in telecom. It is used by the call
31 * associated phone-account is registered with telecom.
34 * registers the corresponding SIP account, or registers a corresponding alternative phone-account.
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-avr/
relax_diff.d 1 #name: AVR Account for relaxation in label differences
  /cts/hostsidetests/devicepolicy/app/AccountManagement/res/xml/
authenticator.xml 17 <!-- for the Account Manager. -->
19 <account-authenticator xmlns:android="http://schemas.android.com/apk/res/android"
20 android:accountType="com.android.cts.devicepolicy.accountmanagement.account.type"
  /cts/hostsidetests/devicepolicy/app/ManagedProfile/src/com/android/cts/managedprofile/
ProvisioningTest.java 31 import android.accounts.Account;
123 for (Account account : am.getAccountsByType(AccountAuthenticator.ACCOUNT_TYPE)) {
124 if (AccountAuthenticator.TEST_ACCOUNT.equals(account)) {
128 fail("can't find migrated account");
134 assertTrue("test account still exists after account migration",
152 private Account addAndGetTestAccount() {
153 Account account = AccountAuthenticator.TEST_ACCOUNT local
    [all...]
  /cts/tests/tests/accounts/res/xml/
authenticator.xml 21 <!-- for the Account Manager. -->
23 <account-authenticator xmlns:android="http://schemas.android.com/apk/res/android"
24 android:accountType="android.accounts.cts.account.type"
custom_token_authenticator.xml 21 <!-- for the Account Manager. -->
23 <account-authenticator xmlns:android="http://schemas.android.com/apk/res/android"
24 android:accountType="android.accounts.cts.custom.account.type"
  /cts/tests/tests/content/res/xml/
authenticator.xml 21 <!-- for the Account Manager. -->
23 <account-authenticator xmlns:android="http://schemas.android.com/apk/res/android"
24 android:accountType="android.content.cts.account.type"
  /cts/tests/tests/telecom/src/android/telecom/cts/
PhoneAccountOperationsTest.java 109 assertNull("Test account not deregistered.", retrievedPhoneAccount);
134 assertNotNull("Failed to retrieve test account.", retrievedPhoneAccount);
135 assertFalse("Phone account should not be automatically enabled.",
163 assertNotNull("Failed to retrieve test account.", retrievedPhoneAccount);
164 assertFalse("3rd party app cannot enable its own phone account.",
176 assertFalse("Enabled Phone accounts should not contain the test account.",
181 assertNotNull("No enabled Phone account found.", newAccounts);
182 assertEquals("1 new enabled Phone account expected.", newAccounts.size(),
184 assertTrue("Enabled Phone accounts do not contain the test account.",
195 assertTrue("Phone account should have call provider & video calling capability."
    [all...]
  /development/samples/SipDemo/res/xml/
preferences.xml 21 android:summary="Username for your SIP Account"
27 android:summary="Domain for your SIP Account"
33 android:summary="Password for your SIP Account"

Completed in 981 milliseconds

<<11121314151617181920>>