OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:mBundle
(Results
1 - 10
of
10
) sorted by null
/cts/tests/tests/os/src/android/os/cts/
BundleTest.java
57
private Bundle
mBundle
;
63
mBundle
= new Bundle();
121
mBundle
.putBoolean("android", true);
122
mBundle
.putBoolean(KEY, true);
123
assertFalse(
mBundle
.isEmpty());
124
mBundle
.clear();
125
assertTrue(
mBundle
.isEmpty());
136
mBundle
.putBoolean(BOOLEANKEY, BOOLEANKEYVALUE);
137
mBundle
.putInt(INTKEY, INTKEYVALUE);
138
Bundle cloneBundle = (Bundle)
mBundle
.clone()
[
all
...]
/packages/apps/Mms/src/com/android/mms/transaction/
TransactionBundle.java
68
private final Bundle
mBundle
;
76
mBundle
= new Bundle();
77
mBundle
.putInt(TRANSACTION_TYPE, transactionType);
92
mBundle
.putString(URI, uri);
101
mBundle
= bundle;
107
mBundle
.putString(MMSC_URL, mmscUrl);
108
mBundle
.putString(PROXY_ADDRESS, proxyAddress);
109
mBundle
.putInt(PROXY_PORT, proxyPort);
120
return
mBundle
;
124
return
mBundle
.getInt(TRANSACTION_TYPE)
[
all
...]
/cts/tests/SignatureTest/src/android/tests/sigtest/
SignatureTestActivity.java
150
Bundle
mBundle
;
159
mBundle
= new Bundle();
160
mBundle
.putStringArrayList(BUNDLE_KEY_MISSING_FIELD, new ArrayList<String>());
161
mBundle
.putStringArrayList(BUNDLE_KEY_MISSING_METHOD, new ArrayList<String>());
162
mBundle
.putStringArrayList(BUNDLE_KEY_MISMATCH_CLASS,
164
mBundle
.putStringArrayList(BUNDLE_KEY_MISMATCH_FIELD,
166
mBundle
.putStringArrayList(BUNDLE_KEY_MISMATCH_METHOD,
168
mBundle
.putStringArrayList(BUNDLE_KEY_MISSING_CLASS, new ArrayList<String>());
169
mBundle
.putStringArrayList(BUNDLE_KEY_MISSING_INTERFACE,
171
mBundle
.putStringArrayList(BUNDLE_KEY_MISMATCH_INTERFACE
[
all
...]
/packages/apps/QuickSearchBox/tests/partial/src/com/android/quicksearchbox/tests/partial/
PartialSuggestionProvider.java
63
Bundle
mBundle
;
71
if (
mBundle
== null)
mBundle
= new Bundle();
72
return
mBundle
;
/packages/apps/CertInstaller/src/com/android/certinstaller/
CredentialHelper.java
64
private HashMap<String, byte[]>
mBundle
= new HashMap<String, byte[]>();
90
mBundle
.put(key, bytes);
97
outStates.putSerializable(DATA_KEY,
mBundle
);
117
mBundle
= (HashMap) savedStates.getSerializable(DATA_KEY);
175
return
mBundle
.containsKey(KeyChain.EXTRA_PKCS12);
179
return
mBundle
.containsKey(Credentials.EXTRA_PUBLIC_KEY)
180
&&
mBundle
.containsKey(Credentials.EXTRA_PRIVATE_KEY);
207
return !
mBundle
.isEmpty();
211
return
mBundle
.get(key);
215
mBundle
.put(KeyChain.EXTRA_PKCS12, data)
[
all
...]
/frameworks/base/core/java/android/service/textservice/
SpellCheckerService.java
168
private final Bundle
mBundle
;
175
mBundle
= bundle;
200
return
mBundle
;
/cts/tests/src/android/app/cts/
InstrumentationTestActivity.java
54
private Bundle
mBundle
;
143
mBundle
= outState;
340
return
mBundle
;
/libcore/luni/src/main/native/
libcore_icu_ICU.cpp
64
ScopedResourceBundle(UResourceBundle* bundle) :
mBundle
(bundle) {
68
if (
mBundle
!= NULL) {
69
ures_close(
mBundle
);
74
return
mBundle
;
78
UResourceBundle*
mBundle
;
[
all
...]
/frameworks/base/services/java/com/android/server/
TextServicesManagerService.java
575
listener.mScLocale, listener.mScListener, listener.
mBundle
);
677
private final Bundle
mBundle
;
683
mBundle
= bundle;
717
public final Bundle
mBundle
;
726
mBundle
= bundle;
/frameworks/base/tools/aapt/
ResourceTable.h
546
Bundle*
mBundle
;
Completed in 209 milliseconds