OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ACCOUNT
(Results
1 - 7
of
7
) sorted by null
/cts/tests/tests/content/src/android/content/cts/
ContentResolverSyncTestCase.java
19
import android.accounts.
Account
;
39
private static final
Account
ACCOUNT
= new
Account
(MockAccountAuthenticator.ACCOUNT_NAME,
57
// Need to clean up created
account
58
removeAccount(sAccountManager,
ACCOUNT
, null /* callback */);
75
private void addAccountExplicitly(
Account
account
, String password, Bundle userdata) {
76
assertTrue(sAccountManager.addAccountExplicitly(
account
, password, userdata));
79
private boolean removeAccount(AccountManager am,
Account
account
[
all
...]
ContentResolverTest.java
22
import android.accounts.
Account
;
69
private static final
Account
ACCOUNT
= new
Account
("cts", "cts");
[
all
...]
/cts/tests/tests/accounts/src/android/accounts/cts/
AccountManagerTest.java
19
import android.accounts.
Account
;
50
public static final String ACCOUNT_NAME = "android.accounts.cts.
account
.name";
51
public static final String ACCOUNT_NEW_NAME = "android.accounts.cts.
account
.name.rename";
52
public static final String ACCOUNT_NAME_OTHER = "android.accounts.cts.
account
.name.other";
54
public static final String ACCOUNT_TYPE = "android.accounts.cts.
account
.type";
55
public static final String ACCOUNT_TYPE_OTHER = "android.accounts.cts.
account
.type.other";
57
public static final String ACCOUNT_PASSWORD = "android.accounts.cts.
account
.password";
84
public static final
Account
ACCOUNT
= new
Account
(ACCOUNT_NAME, ACCOUNT_TYPE)
[
all
...]
/external/chromium_org/sync/test/android/javatests/src/org/chromium/sync/test/util/
MockGrantCredentialsPermissionActivity.java
7
import android.accounts.
Account
;
29
static final String
ACCOUNT
= "
account
";
37
Account
account
= (
Account
) getIntent().getParcelableExtra(
ACCOUNT
);
local
39
String accountName =
account
== null ? null :
account
.name;
40
String message = "
account
= " + accountName + ", authTokenType = " + authTokenType
[
all
...]
MockAccountManager.java
7
import android.accounts.
Account
;
60
* authtokentype for a given
account
, use prepareGrantAppPermission(...).
65
* If you want to auto-approve all auth token types for a given
account
, use the {@link
89
public MockAccountManager(Context context, Context testContext,
Account
... accounts) {
99
for (
Account
account
: accounts) {
100
mAccounts.add(AccountHolder.create().
account
(
account
).alwaysAccept(true).build());
112
public
Account
[] getAccounts() {
117
public
Account
[] getAccountsByType(@Nullable String type)
[
all
...]
/external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/
AwContentsClientCallbackHelperTest.java
70
static final String
ACCOUNT
= "
account
";
189
mClientHelper.postOnReceivedLoginRequest(REALM,
ACCOUNT
, ARGS);
192
assertEquals(
ACCOUNT
, receivedLoginRequestHelper.getAccount());
/external/chromium_org/third_party/android_platform/webview/
frameworks.jar
Completed in 1825 milliseconds