HomeSort by relevance Sort by last modified time
    Searched defs:mBundle (Results 1 - 22 of 22) 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...]
  /frameworks/testing/androidtestlib/tests/src/com/android/test/
MyBundleTestCase.java 27 private Bundle mBundle = null;
35 mBundle = bundle;
39 assertNotNull(mBundle);
  /frameworks/support/v7/mediarouter/src/android/support/v7/media/
MediaRouteDiscoveryRequest.java 31 private final Bundle mBundle;
45 mBundle = new Bundle();
47 mBundle.putBundle(KEY_SELECTOR, selector.asBundle());
48 mBundle.putBoolean(KEY_ACTIVE_SCAN, activeScan);
52 mBundle = bundle;
65 mSelector = MediaRouteSelector.fromBundle(mBundle.getBundle(KEY_SELECTOR));
78 return mBundle.getBoolean(KEY_ACTIVE_SCAN);
120 return mBundle;
MediaRouteDescriptor.java 52 private final Bundle mBundle;
56 mBundle = bundle;
69 return mBundle.getString(KEY_ID);
80 return mBundle.getString(KEY_NAME);
91 return mBundle.getString(KEY_DESCRIPTION);
98 return mBundle.getBoolean(KEY_ENABLED, true);
105 return mBundle.getBoolean(KEY_CONNECTING, false);
118 mControlFilters = mBundle.<IntentFilter>getParcelableArrayList(KEY_CONTROL_FILTERS);
129 return mBundle.getInt(KEY_PLAYBACK_TYPE, MediaRouter.RouteInfo.PLAYBACK_TYPE_REMOTE);
136 return mBundle.getInt(KEY_PLAYBACK_STREAM, -1)
    [all...]
MediaItemStatus.java 64 private final Bundle mBundle;
195 mBundle = bundle;
205 return mBundle.getLong(KEY_TIMESTAMP);
218 return mBundle.getInt(KEY_PLAYBACK_STATE, PLAYBACK_STATE_ERROR);
228 return mBundle.getLong(KEY_CONTENT_POSITION, -1);
238 return mBundle.getLong(KEY_CONTENT_DURATION, -1);
247 return mBundle.getBundle(KEY_EXTRAS);
293 return mBundle;
310 private final Bundle mBundle;
319 mBundle = new Bundle()
    [all...]
MediaRouteProviderDescriptor.java 36 private final Bundle mBundle;
41 mBundle = bundle;
55 ArrayList<Bundle> routeBundles = mBundle.<Bundle>getParcelableArrayList(KEY_ROUTES);
105 return mBundle;
122 private final Bundle mBundle;
129 mBundle = new Bundle();
141 mBundle = new Bundle(descriptor.mBundle);
192 mBundle.putParcelableArrayList(KEY_ROUTES, routeBundles);
194 return new MediaRouteProviderDescriptor(mBundle, mRoutes)
    [all...]
MediaRouteSelector.java 47 private final Bundle mBundle;
56 mBundle = bundle;
72 mControlCategories = mBundle.getStringArrayList(KEY_CONTROL_CATEGORIES);
194 return mBundle;
  /frameworks/base/tests/CanvasCompare/src/com/android/test/hwuicompare/
Test.java 10 private Bundle mBundle;
19 mBundle = new Bundle();
25 mBundle.putFloat(key, value);
29 synchronized(mBundle) {
30 mBundle.notify();
37 synchronized(mBundle) {
39 mBundle.wait();
44 getInstrumentation().sendStatus(0, mBundle);
  /packages/apps/Mms/src/com/android/mms/transaction/
TransactionBundle.java 70 private final Bundle mBundle;
78 mBundle = new Bundle();
79 mBundle.putInt(TRANSACTION_TYPE, transactionType);
94 mBundle.putString(URI, uri);
103 mBundle = bundle;
109 mBundle.putString(MMSC_URL, mmscUrl);
110 mBundle.putString(PROXY_ADDRESS, proxyAddress);
111 mBundle.putInt(PROXY_PORT, proxyPort);
122 return mBundle;
126 return mBundle.getInt(TRANSACTION_TYPE)
    [all...]
  /frameworks/testing/androidtestlib/src/com/android/test/runner/junit3/
AndroidJUnit3Builder.java 34 private final Bundle mBundle;
38 mBundle = bundle;
47 return new AndroidJUnit3ClassRunner(testClass, mBundle, mInstr);
49 return new AndroidJUnit3ClassRunner(testClass, mBundle, mInstr);
51 return new AndroidJUnit3ClassRunner(testClass, mBundle, mInstr);
AndroidTestSuite.java 40 private final Bundle mBundle;
44 mBundle = bundle;
50 mBundle = bundle;
63 ((BundleTest)test).injectBundle(mBundle);
73 return mBundle;
  /frameworks/testing/androidtestlib/src/com/android/test/runner/junit4/
AndroidJUnit4Builder.java 36 private final Bundle mBundle;
41 mBundle = bundle;
51 return new AndroidJUnit4ClassRunner(testClass, mInstrumentation, mBundle);
AndroidJUnit4ClassRunner.java 42 private final Bundle mBundle;
55 mBundle = bundle;
119 setFieldValue(test, bundleField.getField(), mBundle);
  /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[]>();
94 mBundle.put(key, bytes);
101 outStates.putSerializable(DATA_KEY, mBundle);
121 mBundle = (HashMap) savedStates.getSerializable(DATA_KEY);
179 return mBundle.containsKey(KeyChain.EXTRA_PKCS12);
183 return mBundle.containsKey(Credentials.EXTRA_PUBLIC_KEY)
184 && mBundle.containsKey(Credentials.EXTRA_PRIVATE_KEY);
211 return !mBundle.isEmpty();
215 return mBundle.get(key);
219 mBundle.put(KeyChain.EXTRA_PKCS12, data)
    [all...]
  /frameworks/testing/androidtestlib/tests/src/com/android/test/runner/
TestRequestBuilderTest.java 80 public Bundle mBundle;
89 TestRequest request = b.build(mInstr, mBundle);
103 TestRequest request = b.build(mInstr, mBundle);
118 TestRequest request = b.build(mInstr, mBundle);
133 TestRequest request = b.build(mInstr, mBundle);
158 TestRequest request = b.build(mInstr, mBundle);
173 TestRequest request = b.build(mInstr, 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 733 listener.mScLocale, listener.mScListener, listener.mBundle);
    [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 1700 milliseconds