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

  /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...]
  /cts/tests/tests/os/src/android/os/cts/
BundleTest.java 51 private Bundle mBundle;
57 mBundle = new Bundle();
80 mBundle.putBoolean("android", true);
82 mBundle.readFromParcel(p);
83 assertTrue(mBundle.isEmpty());
88 mBundle.putBoolean("android", true);
89 mBundle.putBoolean(KEY, true);
90 assertFalse(mBundle.isEmpty());
91 mBundle.clear();
92 assertTrue(mBundle.isEmpty())
    [all...]
  /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);
  /frameworks/support/v7/mediarouter/src/android/support/v7/media/
MediaSessionStatus.java 51 private final Bundle mBundle;
86 mBundle = bundle;
96 return mBundle.getLong(KEY_TIMESTAMP);
106 return mBundle.getInt(KEY_SESSION_STATE, SESSION_STATE_INVALIDATED);
115 return mBundle.getBoolean(KEY_QUEUE_PAUSED);
124 return mBundle.getBundle(KEY_EXTRAS);
159 return mBundle;
176 private final Bundle mBundle;
185 mBundle = new Bundle();
199 mBundle = new Bundle(status.mBundle)
    [all...]
MediaItemStatus.java 67 private final Bundle mBundle;
199 mBundle = bundle;
209 return mBundle.getLong(KEY_TIMESTAMP);
222 return mBundle.getInt(KEY_PLAYBACK_STATE, PLAYBACK_STATE_ERROR);
232 return mBundle.getLong(KEY_CONTENT_POSITION, -1);
242 return mBundle.getLong(KEY_CONTENT_DURATION, -1);
251 return mBundle.getBundle(KEY_EXTRAS);
297 return mBundle;
314 private final Bundle mBundle;
323 mBundle = new Bundle()
    [all...]
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...]
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;
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/testing/androidtestlib/tests/src/com/android/test/
MyBundleTestCase.java 27 private Bundle mBundle = null;
35 mBundle = bundle;
39 assertNotNull(mBundle);
  /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);
  /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;
  /frameworks/testing/androidtestlib/tests/src/com/android/test/runner/
TestRequestBuilderTest.java 120 public Bundle mBundle;
129 TestRequest request = b.build(mInstr, mBundle);
143 TestRequest request = b.build(mInstr, mBundle);
158 TestRequest request = b.build(mInstr, mBundle);
173 TestRequest request = b.build(mInstr, mBundle);
198 TestRequest request = b.build(mInstr, mBundle);
211 TestRequest request = b.build(mInstr, mBundle);
226 TestRequest request = b.build(mInstr, mBundle);
241 TestRequest request = b.build(mInstr, mBundle);
  /frameworks/base/core/tests/coretests/src/android/os/
MessageQueueTest.java 148 Bundle mBundle;
166 mBundle = new Bundle();
167 msg.data = mBundle;
200 if (newMsg.data == mBundle) {
202 "newMsg.data should NOT be mBundle after copyFrom"));
204 if (!newMsg.data.getString("key").equals(mBundle.getString("key"))) {
207 " mBundle.getString(\"key\") which is %s after copyFrom",
208 newMsg.data.getString("key"), mBundle.getString("key"))));
248 if (!msg.data.getString("key").equals(mBundle.getString("key"))) {
251 " mBundle.getString(\"key\") which is %s when processing # %d"
    [all...]
  /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...]
  /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 735 listener.mScLocale, listener.mScListener, listener.mBundle);
    [all...]
  /frameworks/base/tools/aapt/
ResourceTable.cpp     [all...]
ResourceTable.h 551 Bundle* mBundle;
Resource.cpp 315 mBundle(bundle), mAssets(assets), mFile(file), mHasErrors(hasErrors) {
319 status_t status = preProcessImage(mBundle, mAssets, mFile, NULL);
327 const Bundle* mBundle;
    [all...]

Completed in 1120 milliseconds