OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:account
(Results
801 - 825
of
4748
) sorted by null
<<
31
32
33
34
35
36
37
38
39
40
>>
/packages/apps/Email/res/values-zh-rCN/
strings.xml
152
<string name="account_security_dialog_content_fmt" msgid="4107093049191103780">"<xliff:g id="
ACCOUNT
">%s</xliff:g> ???????????"</string>
153
<string name="security_unsupported_ticker_fmt" msgid="3249185558872836884">"???<xliff:g id="
ACCOUNT
">%s</xliff:g>?????????????"</string>
154
<string name="security_needed_ticker_fmt" msgid="7099561996532829229">"???<xliff:g id="
ACCOUNT
">%s</xliff:g>??????????"</string>
155
<string name="security_changed_ticker_fmt" msgid="3823930420292838192">"???<xliff:g id="
ACCOUNT
">%s</xliff:g>?????????????????????"</string>
162
<string name="password_expire_warning_ticker_fmt" msgid="5543005790538884060">"?<xliff:g id="
ACCOUNT
">%s</xliff:g>????????? PIN ????"</string>
167
<string name="password_expire_warning_dialog_content_fmt" msgid="1093389293050776319">"??????????? PIN ???????????? <xliff:g id="
ACCOUNT
">%s</xliff:g> ???????????"</string>
169
<string name="password_expired_dialog_content_fmt" msgid="8322213184626443346">"<xliff:g id="
ACCOUNT
">%s</xliff:g> ?????????????????????? PIN ??????????????????"</string>
236
<string name="trash_folder_selection_title" msgid="686039558899469073">"?? <xliff:g id="
ACCOUNT
">%s</xliff:g> ??????????????"</string>
237
<string name="sent_folder_selection_title" msgid="9207482909822072856">"?? <xliff:g id="
ACCOUNT
">%s</xliff:g> ?????????????"</string>
/packages/apps/Email/res/values-zh-rHK/
strings.xml
152
<string name="account_security_dialog_content_fmt" msgid="4107093049191103780">"????? <xliff:g id="
ACCOUNT
">%s</xliff:g> ??????"</string>
153
<string name="security_unsupported_ticker_fmt" msgid="3249185558872836884">"??????????????<xliff:g id="
ACCOUNT
">%s</xliff:g>??????"</string>
154
<string name="security_needed_ticker_fmt" msgid="7099561996532829229">"?<xliff:g id="
ACCOUNT
">%s</xliff:g>???????????????"</string>
155
<string name="security_changed_ticker_fmt" msgid="3823930420292838192">"?<xliff:g id="
ACCOUNT
">%s</xliff:g>??????????????????????"</string>
162
<string name="password_expire_warning_ticker_fmt" msgid="5543005790538884060">"??????<xliff:g id="
ACCOUNT
">%s</xliff:g>?????? PIN ????"</string>
167
<string name="password_expire_warning_dialog_content_fmt" msgid="1093389293050776319">"??????????? PIN ?????? <xliff:g id="
ACCOUNT
">%s</xliff:g> ???????????????"</string>
169
<string name="password_expired_dialog_content_fmt" msgid="8322213184626443346">"<xliff:g id="
ACCOUNT
">%s</xliff:g> ????????????????????????????? PIN ???????????"</string>
236
<string name="trash_folder_selection_title" msgid="686039558899469073">"?? <xliff:g id="
ACCOUNT
">%s</xliff:g> ??????????"</string>
237
<string name="sent_folder_selection_title" msgid="9207482909822072856">"?? <xliff:g id="
ACCOUNT
">%s</xliff:g> ???????????"</string>
/packages/apps/Email/res/values-zh-rTW/
strings.xml
152
<string name="account_security_dialog_content_fmt" msgid="4107093049191103780">"????? <xliff:g id="
ACCOUNT
">%s</xliff:g> ???????"</string>
153
<string name="security_unsupported_ticker_fmt" msgid="3249185558872836884">"????????????????????<xliff:g id="
ACCOUNT
">%s</xliff:g>????"</string>
154
<string name="security_needed_ticker_fmt" msgid="7099561996532829229">"?<xliff:g id="
ACCOUNT
">%s</xliff:g>??????????????"</string>
155
<string name="security_changed_ticker_fmt" msgid="3823930420292838192">"?<xliff:g id="
ACCOUNT
">%s</xliff:g>??????????????????????????"</string>
162
<string name="password_expire_warning_ticker_fmt" msgid="5543005790538884060">"??????<xliff:g id="
ACCOUNT
">%s</xliff:g>?????? PIN ????"</string>
167
<string name="password_expire_warning_dialog_content_fmt" msgid="1093389293050776319">"??????????? PIN ?????? <xliff:g id="
ACCOUNT
">%s</xliff:g> ????????????????"</string>
169
<string name="password_expired_dialog_content_fmt" msgid="8322213184626443346">"<xliff:g id="
ACCOUNT
">%s</xliff:g> ????????????????????????????? PIN ???????????"</string>
236
<string name="trash_folder_selection_title" msgid="686039558899469073">"?? <xliff:g id="
ACCOUNT
">%s</xliff:g> ??????????"</string>
237
<string name="sent_folder_selection_title" msgid="9207482909822072856">"?? <xliff:g id="
ACCOUNT
">%s</xliff:g> ???????????"</string>
/packages/apps/Email/provider_src/com/android/email/mail/store/
ImapStore.java
41
import com.android.emailcommon.provider.
Account
;
99
public static Store newInstance(
Account
account
, Context context) throws MessagingException {
100
return new ImapStore(context,
account
);
104
* Creates a new store for the given
account
. Always use
105
* {@link #newInstance(
Account
, Context)} to create an IMAP store.
107
private ImapStore(Context context,
Account
account
) throws MessagingException {
109
mAccount =
account
;
111
HostAuth recvAuth =
account
.getOrCreateHostAuthRecv(context)
[
all
...]
/packages/apps/Settings/src/com/android/settings/accounts/
AccountPreferenceController.java
19
import android.accounts.
Account
;
102
* The preference that displays the add
account
button.
126
* The map from
account
key to
account
preference
487
// Skip showing any
account
that does not have any of the requested authorities
498
final
Account
[] accounts = AccountManager.get(mContext)
503
// Add a preference row for each individual
account
504
for (
Account
account
: accounts) {
506
preferenceToRemove.remove(AccountTypePreference.buildKey(
account
));
[
all
...]
/development/apps/Development/src/com/android/development/
SyncAdapterDriver.java
47
import android.accounts.
Account
;
138
Account
accounts[] = AccountManager.get(this).getAccountsByType(
166
Account
account
= new
Account
(accountName,
local
170
account
, new Bundle());
/docs/source.android.com/src/devices/tech/admin/
multi-user.jd
47
<li><em>
Account
</em>. Accounts are contained within a user but are not defined
48
by a user, nor is a user defined by or linked to any given
account
. Users and
52
<a href="https://developer.android.com/reference/android/accounts/
Account
.html">
Account
144
state of those apps differs by user. For example, email destined for an
account
145
of a user not currently in focus won?t be available until that user and
account
/external/llvm/test/CodeGen/X86/
avx.ll
32
; On X32,
account
for the argument's move to registers
45
; On X32,
account
for the argument's move to registers
58
; On X32,
account
for the argument's move to registers
73
; On X32,
account
for the arguments' move to registers
91
; On X32,
account
for the arguments' move to registers
109
; On X32,
account
for the arguments' move to registers
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
ContentResolverTest.java
18
import android.accounts.
Account
;
42
private
Account
a, b;
51
a = new
Account
("a", "type");
52
b = new
Account
("b", "type");
287
assertThat(first.
account
, equalTo(a));
301
bundle.putParcelable("
account
", a);
/packages/apps/Car/libs/car-apps-common/src/com/android/car/apps/common/
BitmapWorkerTask.java
18
import android.accounts.
Account
;
323
Account
thisAccount = null;
324
for (
Account
account
: AccountManager.get(context).
326
if (
account
.name.equals(accountName)) {
327
thisAccount =
account
;
DrawableLoader.java
18
import android.accounts.
Account
;
361
Account
thisAccount = null;
362
for (
Account
account
: AccountManager.get(context).
364
if (
account
.name.equals(accountName)) {
365
thisAccount =
account
;
UriUtils.java
38
private static final String SCHEME_ACCOUNT_IMAGE = "image.
account
";
110
* Gets a URI with the
account
image scheme.
119
* Gets a URI with the
account
image scheme, and specifying an URI to be
134
* Checks if the URI refers to an
account
image.
149
throw new IllegalArgumentException("Invalid
account
image URI. " + uri);
165
throw new IllegalArgumentException("Invalid
account
image URI. " + uri);
/packages/apps/Contacts/src/com/android/contacts/interactions/
ImportDialogFragment.java
46
import com.android.contacts.model.
account
.AccountInfo;
47
import com.android.contacts.model.
account
.AccountWithDataSet;
264
// - just one
account
-> use the
account
without asking the user
265
// - no
account
-> use phone-local storage without asking the user
268
// Send over to the
account
selector
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
GlobalSearchSupportTest.java
19
import android.accounts.
Account
;
48
Account
account
= new
Account
("actname", "acttype");
local
51
createGroup(
account
, "any", "any", 0 /* visible */, true /* auto-add */, false /* fav */);
53
long rawContactId = RawContactUtil.createRawContact(mResolver,
account
);
/packages/services/Telephony/sip/src/com/android/services/telephony/sip/
SipAccountRegistry.java
135
log("verifyAndPurgeInvalidPhoneAccounts, deleting
account
: " + accountHandle);
147
* @param enableProfile Sip
account
should be enabled
154
* Removes a {@link SipProfile} from the
account
registry. Does not stop/close the associated
209
* @param enableProfile Sip
account
should be enabled.
226
* register the associated SIP
account
.
230
* @param enableProfile Sip
account
should be enabled.
/packages/apps/Contacts/src/com/android/contacts/activities/
PeopleActivity.java
19
import android.accounts.
Account
;
86
import com.android.contacts.model.
account
.AccountInfo;
87
import com.android.contacts.model.
account
.AccountWithDataSet;
189
// The
account
the new group will be created under.
713
// actually at least one real
account
(not "local"
account
) on device.
729
// even without an
account
.
1113
final Account
account
= extras == null ? null :
local
[
all
...]
/packages/services/Telecomm/src/com/android/server/telecom/
TelecomServiceImpl.java
255
// parent user's in call UI need to be able to get phone
account
from the
256
// profile's phone
account
handle.
364
public void registerPhoneAccount(PhoneAccount
account
) {
376
account
.getAccountHandle().getComponentName().getPackageName());
377
if (
account
.hasCapabilities(PhoneAccount.CAPABILITY_SELF_MANAGED)) {
379
if (
account
.hasCapabilities(PhoneAccount.CAPABILITY_CALL_PROVIDER) ||
380
account
.hasCapabilities(
382
account
.hasCapabilities(
389
// For self-managed CS, the phone
account
registrar will override the
390
// label the user has set for the phone
account
. This ensures th
[
all
...]
/frameworks/base/tests/AppLaunch/src/com/android/tests/applaunch/
AppLaunch.java
18
import android.accounts.
Account
;
68
// optional parameter: comma separated list of required
account
types before proceeding
491
// ensure that the device has the required
account
types before starting test
492
// e.g. device must have a valid Google
account
sign in to measure a meaningful launch time
500
Account
[] accounts = am.getAccounts();
503
for (
Account
account
: accounts) {
504
if (mRequiredAccounts.contains(
account
.type)) {
505
foundAccounts.add(
account
.type);
508
// check if
account
type matches, if not, fail test with message on what account type
[
all
...]
/packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/common/
Utils.java
27
import android.accounts.
Account
;
367
* Removes an
account
.
369
* <p>This removes the given
account
from the calling user's list of accounts.
372
* @param
account
the
account
to be removed
375
public void removeAccount(Context context,
Account
account
) {
379
AccountManagerFuture<Bundle> bundle = accountManager.removeAccount(
account
,
383
ProvisionLogger.logw("
Account
removed from the primary user.");
388
ProvisionLogger.logi("Starting activity to remove
account
");
[
all
...]
/developers/build/prebuilts/gradle/CardReader/Application/src/main/java/com/example/android/cardreader/
CardReaderFragment.java
99
public void onAccountReceived(final String
account
) {
105
mAccountField.setText(
account
);
/developers/samples/android/connectivity/nfc/CardReader/Application/src/main/java/com/example/android/cardreader/
CardReaderFragment.java
99
public void onAccountReceived(final String
account
) {
105
mAccountField.setText(
account
);
/developers/samples/android/content/multiuser/AppRestrictions/
template-params.xml
31
When launched under the primary User
account
, you can toggle between standard app restriction
69
When launched under the primary User
account
, you can toggle between standard app restriction
/development/samples/browseable/CardReader/src/com.example.android.cardreader/
CardReaderFragment.java
99
public void onAccountReceived(final String
account
) {
105
mAccountField.setText(
account
);
/development/scripts/
add-accounts
102
print "A dasher
account
is already configured on this device;"
109
print "A google
account
is already configured on this device;"
add-accounts-sdk
99
print "A hosted
account
is already configured on this device;"
106
print "A google
account
is already configured on this device;"
Completed in 951 milliseconds
<<
31
32
33
34
35
36
37
38
39
40
>>