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

<<11121314151617181920>>

  /developers/samples/android/connectivity/sync/BasicSyncAdapter/Application/src/main/java/com/example/android/basicsyncadapter/
EntryListFragment.java 19 import android.accounts.Account;
140 * <p>This will create a new account with the system for our application, register our
147 // Create account, if needed
333 // Create a handle to the account that was created by
336 Account account = GenericAccountService.GetAccount(SyncUtils.ACCOUNT_TYPE);
337 if (account == null) {
347 account, FeedContract.CONTENT_AUTHORITY);
349 account, FeedContract.CONTENT_AUTHORITY);
  /development/samples/browseable/BasicSyncAdapter/src/com.example.android.basicsyncadapter/
EntryListFragment.java 19 import android.accounts.Account;
140 * <p>This will create a new account with the system for our application, register our
147 // Create account, if needed
333 // Create a handle to the account that was created by
336 Account account = GenericAccountService.GetAccount(SyncUtils.ACCOUNT_TYPE);
337 if (account == null) {
347 account, FeedContract.CONTENT_AUTHORITY);
349 account, FeedContract.CONTENT_AUTHORITY);
  /external/chromium_org/android_webview/java/src/org/chromium/android_webview/
AwContentsClientCallbackHelper.java 54 LoginRequestInfo(String realm, String account, String args) {
56 mAccount = account;
172 public void postOnReceivedLoginRequest(String realm, String account, String args) {
173 LoginRequestInfo info = new LoginRequestInfo(realm, account, args);
AwContentsIoThreadClient.java 41 public abstract void newLoginRequest(String realm, String account, String args);
  /external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/
TestAwContentsClient.java 216 public void notifyCalled(String realm, String account, String args) {
218 mAccount = account;
225 public void onReceivedLoginRequest(String realm, String account, String args) {
226 getOnReceivedLoginRequestHelper().notifyCalled(realm, account, args);
  /external/chromium_org/android_webview/native/
aw_contents_io_thread_client_impl.h 63 const std::string& account,
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/signin/
SigninManager.java 7 import android.accounts.Account;
59 private Account mSignInAccount;
162 * This method checks with the native side whether the account has management enabled, and may
167 * @param account The account to sign in to.
172 Activity activity, final Account account, boolean passive, final Observer observer) {
183 mSignInAccount = account;
189 if (!nativeShouldLoadPolicyForUser(account.name)) {
191 // that this account can't have management enabled based on the username
    [all...]
  /external/chromium_org/chrome/browser/chromeos/login/
existing_user_controller_auto_login_unittest.cc 76 scoped_ptr<base::DictionaryValue> account(new base::DictionaryValue);
77 account->SetStringWithoutPathExpansion(
80 account->SetIntegerWithoutPathExpansion(
84 accounts.Append(account.release());
254 // Timer should start when the account ID is set.
274 // Timer should stop when the account ID is unset.
  /external/chromium_org/chrome/browser/resources/options/
browser_options.css 26 #account-picture-wrapper {
31 html[dir=rtl] #account-picture-wrapper {
35 #account-picture-control {
43 #account-picture {
49 #account-picture:disabled {
63 /* Width of #account-picture. */
67 #account-picture:not(:disabled):hover + #change-picture-caption,
68 #account-picture:not(:disabled) + #change-picture-caption:hover {
72 #account-picture-indicator {
  /external/chromium_org/chrome/browser/resources/print_preview/search/
destination_search.css 33 #destination-search .account-select-label {
43 #destination-search .account-select {
  /external/chromium_org/components/auto_login_parser/
auto_login_parser.cc 42 // seems that "account" from the x-auto-login header might contain non-ASCII
61 } else if (pair.first == "account") {
62 local_params.account = unescaped_value;
  /frameworks/base/core/java/android/accounts/
ChooseAccountActivity.java 71 mAccountInfos[i] = new AccountInfo(((Account) mAccounts[i]).name,
72 getDrawableForType(((Account) mAccounts[i]).type));
107 Log.w(TAG, "No icon name for account type " + accountType);
112 Log.w(TAG, "No icon resource for account type " + accountType);
120 Account account = (Account) mAccounts[position]; local
121 Log.d(TAG, "selected account " + account);
123 bundle.putString(AccountManager.KEY_ACCOUNT_NAME, account.name)
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapMasInstance.java 78 BluetoothMapEmailSettingsItem account,
84 mAccount = account;
85 if(account != null) {
86 mBaseEmailUri = account.mBase_uri;
  /packages/apps/Contacts/src/com/android/contacts/group/
GroupDetailDisplayUtils.java 27 import com.android.contacts.common.model.account.AccountType;
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/account/
FallbackAccountType.java 17 package com.android.contacts.common.model.account;
56 Log.e(TAG, "Problem building account type", e);
  /packages/apps/Email/src/com/android/email/
EmailApplication.java 32 import com.android.mail.providers.Account;
53 createInlineAttachmentViewIntentBuilder(Account account, long conversationId) {
  /packages/apps/Email/src/com/android/email/activity/
ComposeActivityEmail.java 48 mReplyFromAccount.account);
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountSetupNamesFragment.java 38 import com.android.emailcommon.provider.Account;
101 final Account account = setupData.getAccount(); local
105 final String accountEmail = account.mEmailAddress;
112 // Remember whether we're an EAS account, since it doesn't require the user name field
120 if (account.getSenderName() != null) {
121 mName.setText(account.getSenderName());
  /packages/apps/UnifiedEmail/src/com/android/mail/adapter/
DrawerItem.java 27 import com.android.mail.providers.Account;
40 * This class is an enumeration of a few element types: Account, a folder, a recent folder,
43 * {@link DrawerItem#ofAccount(ControllableActivity, Account, int, boolean, BitmapCache,
53 public final Account mAccount;
55 /** True if the drawer item represents the current account, false otherwise */
65 /** An account object, which allows switching accounts rather than folders. */
81 * {@link #mType} is {@link #VIEW_FOLDER}, or an {@link #ACCOUNT} in the case of
96 public static final int ACCOUNT = 4;
131 * {@link #ACCOUNT}, or {@link #INERT_HEADER}
132 * @param account the account object, for an account drawer elemen
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/preferences/
FolderPreferences.java 25 import com.android.mail.providers.Account;
37 * Preferences relevant to one specific folder. In Email, this would only be used for an account's
38 * inbox. In Gmail, this is used for every account/label pair.
73 * @param accountEmail The account email. This must never change for the account.
89 * @param accountEmail The account email. This must never change for the account.
106 private static String buildSharedPrefsName(final String account, final String persistentId) {
107 return PREFS_NAME_PREFIX + '-' + account + '-' + persistentId;
249 public Set<String> getNotificationActions(final Account account)
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
AbstractConversationWebViewClient.java 37 import com.android.mail.providers.Account;
57 private Account mAccount;
60 public AbstractConversationWebViewClient(Account account) {
61 mAccount = account;
64 public void setAccount(Account account) {
65 mAccount = account;
ControllableActivity.java 25 import com.android.mail.providers.Account;
132 void showHelp(Account account, int viewMode);
MailActivity.java 46 import com.android.mail.providers.Account;
81 * The account name currently in use. Used to construct the NFC mailto: message. This needs
82 * to be static since the {@link ComposeActivity} needs to statically change the account name
91 * send an email to the current account.
106 private static NdefMessage getMailtoNdef(String account) {
109 accountBytes = URLEncoder.encode(account, "UTF-8").getBytes("UTF-8");
111 accountBytes = account.getBytes();
221 * email to the account provided as the argument. This message is to be shared with
225 * @param account The email address to send mail to.
227 public static void setNfcMessage(String account) {
    [all...]
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
AlbumDataAdapter.java 114 if (a.account == b.account) {
137 return a.account.compareTo(b.account);
  /packages/services/Telecomm/src/com/android/server/telecom/
TelecomServiceImpl.java 292 public void registerPhoneAccount(PhoneAccount account) {
295 account.getAccountHandle().getComponentName().getPackageName());
296 if (account.hasCapabilities(PhoneAccount.CAPABILITY_CALL_PROVIDER) ||
297 account.hasCapabilities(PhoneAccount.CAPABILITY_SIM_SUBSCRIPTION)) {
300 if (account.hasCapabilities(PhoneAccount.CAPABILITY_CONNECTION_MANAGER)) {
304 mPhoneAccountRegistrar.registerPhoneAccount(account);
306 Log.e(this, e, "registerPhoneAccount %s", account);

Completed in 345 milliseconds

<<11121314151617181920>>