HomeSort by relevance Sort by last modified time
    Searched defs:Account (Results 1 - 25 of 39) sorted by null

1 2

  /cts/tests/tests/accounts/src/android/accounts/cts/
AccountTest.java 3 import android.accounts.Account;
10 private Account account; field in class:AccountTest
14 account = new Account("abc@xyz.org", "com.my.auth");
19 new Account(null, "com.my.auth");
27 new Account("abc@xyz.org", null);
34 assertEquals(0, account.describeContents());
40 account.writeToParcel(parcel, 0);
43 // Create a new account object from just populated parcel
    [all...]
  /frameworks/base/core/java/android/accounts/
Account.java 34 * Value type that represents an Account in the {@link AccountManager}. This object is
38 public class Account implements Parcelable {
39 private static final String TAG = "Account";
42 private static final Set<Account> sAccessedAccounts = new ArraySet<>();
50 if (!(o instanceof Account)) return false;
51 final Account other = (Account)o;
62 public Account(String name, String type) {
69 public Account(@NonNull Account other, @NonNull String accessId)
    [all...]
  /external/tensorflow/tensorflow/core/profiler/internal/
tfprof_scope.cc 87 std::vector<ScopeNode*> roots = Account(root_->children, opts);
196 std::vector<ScopeNode*> TFScope::Account(const std::vector<ScopeNode*>& roots,
202 std::vector<ScopeNode*> act_cnodes = Account(node->children, opts);
204 node->account = ReAccount(node, opts);
205 if (node->account || !act_cnodes.empty()) {
tfprof_graph.cc 86 // 1. Account and aggregate the stats based on the graph structure.
89 std::vector<GraphNode*> roots = Account(root_->children, opts, &visits);
213 std::vector<GraphNode*> TFGraph::Account(const std::vector<GraphNode*>& roots,
221 std::vector<GraphNode*> act_cnodes = Account(node->children, opts, visits);
223 node->account = ReAccount(node, opts);
224 if (node->account) {
tfprof_code.cc 476 std::vector<CodeNode*> roots = Account(root_->children, opts);
597 std::vector<CodeNode*> TFCode::Account(const std::vector<CodeNode*>& roots,
603 std::vector<CodeNode*> act_cnodes = Account(node->children, opts);
604 node->account = ReAccount(node, opts);
605 if (node->account || !act_cnodes.empty()) {
622 if (node->account) {
655 if (node->account) {
665 if (node->account) {
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue82/
PropOrderInfluenceWhenAliasedInGenericCollectionTest.java 38 public static interface Account {
41 public static class GeneralAccount implements Account {
53 public Collection<Account> aAll;
64 public Collection<Account> bAll;
68 public Collection<Account> aAll;
78 public Collection<Account> aAll;
88 public Account acc;
102 ArrayList<Account> all = new ArrayList<Account>();
124 ArrayList<Account> all = new ArrayList<Account>()
    [all...]
  /packages/apps/Email/tests/src/com/android/email/provider/
ProviderTests.java 38 import com.android.emailcommon.provider.Account;
188 * Test simple account save/retrieve
192 Account account1 = ProviderTestUtils.setupAccount("account-save", true, mMockContext);
195 Account account2 = Account.restoreAccountWithId(mMockContext, account1Id);
201 * Test simple account save/retrieve with predefined hostauth records
205 Account account1 = ProviderTestUtils.setupAccount("account-hostauth", false, mMockContext);
208 ProviderTestUtils.setupHostAuth("account-hostauth-recv", -1, false, mMockContext)
230 Account account = ProviderTestUtils.setupAccount("account-hostauth", false, mMockContext); local
264 Account account = ProviderTestUtils.setupAccount("account-hostauth", false, mMockContext); local
564 Account account = ProviderTestUtils.setupAccount("message-snippet", true, mMockContext); local
1739 Account account = ProviderTestUtils.setupAccount("triggers", true, mMockContext); local
2158 Account account = ProviderTestUtils.setupAccount(name, false, c); local
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
Account.java 49 public class Account implements Parcelable {
53 * Human readable account name. Not guaranteed to be the account's email address, nor to match
54 * the system account manager.
59 * The real name associated with the account, e.g. "John Doe"
64 * Account manager name. MUST MATCH SYSTEM ACCOUNT MANAGER NAME
69 * An unique ID to represent this account.
74 * Account type. MUST MATCH SYSTEM ACCOUNT MANAGER TYP
    [all...]
  /packages/apps/Email/provider_src/com/android/email/activity/setup/
AccountSecurity.java 40 import com.android.emailcommon.provider.Account;
52 * 1. Confirm the account of interest has any security policies defined - exit early if not
73 private static final String SAVESTATE_ACCOUNT_TAG = "account";
83 private Account mAccount;
107 * @param accountId The account of interest
110 * is not clear (e.g. any time after the account has been set up).
111 * @return an Intent which can be used to view that account
229 implements LoaderManager.LoaderCallbacks<Account> {
231 public Loader<Account> onCreateLoader(final int id, final Bundle args) {
244 public void onLoadFinished(final Loader<Account> loader, final Account account)
295 final Account account = Account.restoreAccountWithId(mContext, mAccountId); local
    [all...]
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
Account.java 43 public final class Account extends EmailContent implements Parcelable {
44 public static final String TABLE_NAME = "Account";
46 // Define all pseudo account IDs here to avoid conflict with one another.
48 * Pseudo account ID to represent a "combined account" that includes messages and mailboxes
55 * Pseudo account ID to represent "no account". This may be used any time the account ID
56 * may not be known or when we want to specifically select "no" account.
63 * Whether or not the user has asked for notifications of new mail in this account
511 Account account = Account.restoreAccountWithId(context, accountId); local
    [all...]
EmailContent.java 152 * Query parameter for the UI accounts query to enable suppression of the combined account.
188 Account.initAccount();
670 // Foreign key to the Account holding this message
    [all...]
  /external/robolectric/v3/runtime/
android-all-4.1.2_r1-robolectric-0.jar 
android-all-4.2.2_r1.2-robolectric-0.jar 
android-all-4.3_r2-robolectric-0.jar 
  /prebuilts/misc/common/robolectric/android-all/
android-all-4.1.2_r1-robolectric-0.jar 
android-all-4.2.2_r1.2-robolectric-0.jar 
android-all-4.3_r2-robolectric-0.jar 
android-all-stubs.jar 
  /prebuilts/tools/common/m2/repository/net/java/dev/jna/platform/3.4.0/
platform-3.4.0.jar 
  /external/robolectric/v1/lib/main/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/12/
android.jar 
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/18/
android.jar 
  /prebuilts/sdk/19/
android.jar 

Completed in 449 milliseconds

1 2