HomeSort by relevance Sort by last modified time
    Searched defs:mBundle (Results 1 - 11 of 11) sorted by null

  /cts/tests/tests/os/src/android/os/cts/
BundleTest.java 51 private Bundle mBundle;
57 mBundle = new Bundle();
77 mBundle.putBoolean("android", true);
78 mBundle.putBoolean(KEY, true);
79 assertFalse(mBundle.isEmpty());
80 mBundle.clear();
81 assertTrue(mBundle.isEmpty());
87 mBundle.putBoolean(BOOLEANKEY, BOOLEANKEYVALUE);
88 mBundle.putInt(INTKEY, INTKEYVALUE);
89 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...]
  /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;
  /cts/tests/src/android/app/cts/
InstrumentationTestActivity.java 54 private Bundle mBundle;
143 mBundle = outState;
340 return mBundle;
  /frameworks/base/core/java/android/service/textservice/
SpellCheckerService.java 241 private final Bundle mBundle;
248 mBundle = bundle;
304 return mBundle;
  /frameworks/base/services/java/com/android/server/
TextServicesManagerService.java 607 listener.mScLocale, listener.mScListener, listener.mBundle);
721 private final Bundle mBundle;
726 mBundle = bundle;
    [all...]
  /frameworks/base/tools/aapt/
ResourceTable.h 551 Bundle* mBundle;
Resource.cpp 314 mBundle(bundle), mAssets(assets), mFile(file), mHasErrors(hasErrors) {
318 status_t status = preProcessImage(mBundle, mAssets, mFile, NULL);
326 const Bundle* mBundle;
    [all...]

Completed in 330 milliseconds