Searched defs:bundle (Results 1 - 25 of 93) sorted by relevance

1234

/frameworks/support/dynamic-animation/tests/src/android/support/dynamicanimation/tests/
H A DAnimationActivity.java25 public void onCreate(Bundle bundle) { argument
26 super.onCreate(bundle);
/frameworks/base/core/java/android/view/autofill/
H A DHelper.java34 static StringBuilder append(StringBuilder builder, Bundle bundle) { argument
35 if (bundle == null || !sDebug) {
40 final Set<String> keySet = bundle.keySet();
43 final Object value = bundle.get(key);
/frameworks/base/telephony/java/android/telephony/
H A DCellLocation.java55 * @param bundle Bundle from intent notifier
60 public static CellLocation newFromBundle(Bundle bundle) { argument
65 return new CdmaCellLocation(bundle);
67 return new GsmCellLocation(bundle);
76 public abstract void fillInNotifierBundle(Bundle bundle); argument
/frameworks/support/compat/jellybean/android/support/v4/app/
H A DBundleUtil.java10 * Get an array of Bundle objects from a parcelable array field in a bundle.
11 * Update the bundle to have a typed array so fetches in the future don't need
14 public static Bundle[] getBundleArrayFromBundle(Bundle bundle, String key) { argument
15 Parcelable[] array = bundle.getParcelableArray(key);
21 bundle.putParcelableArray(key, typedArray);
/frameworks/support/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/widget/
H A DSwipeRefreshLayoutActivityList.java31 public void onCreate(Bundle bundle) { argument
32 super.onCreate(bundle);
H A DBaseSwipeRefreshLayoutActivity.java88 public void onCreate(Bundle bundle) { argument
89 super.onCreate(bundle);
/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/widget/
H A DSwipeRefreshLayoutActivityList.java31 public void onCreate(Bundle bundle) { argument
32 super.onCreate(bundle);
H A DBaseSwipeRefreshLayoutActivity.java88 public void onCreate(Bundle bundle) { argument
89 super.onCreate(bundle);
/frameworks/base/core/java/android/os/
H A DSynchronousResultReceiver.java37 @Nullable public Bundle bundle; field in class:SynchronousResultReceiver.Result
39 public Result(int resultCode, @Nullable Bundle bundle) { argument
41 this.bundle = bundle;
/frameworks/base/services/autofill/java/com/android/server/autofill/
H A DHelper.java53 static void append(StringBuilder builder, Bundle bundle) { argument
54 if (bundle == null || !sVerbose) {
58 final Set<String> keySet = bundle.keySet();
61 final Object value = bundle.get(key);
69 static String bundleToString(Bundle bundle) { argument
71 append(builder, bundle);
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/
H A DUserManagerServiceTest.java57 Bundle bundle = createBundle();
58 UserManagerService.writeApplicationRestrictionsLP(bundle, atomicFile);
62 bundle = UserManagerService.readApplicationRestrictionsLP(atomicFile);
63 System.out.println("readApplicationRestrictionsLocked bundle: " + bundle);
64 assertBundle(bundle);
87 Bundle bundle = new Bundle();
88 bundle.putString("bundle_string", "bundle_string");
89 bundle.putInt("bundle_int", 1);
90 result.putBundle("bundle", bundl
102 assertBundle(Bundle bundle) argument
[all...]
/frameworks/base/tools/aapt/
H A DMain.cpp236 int handleCommand(Bundle* bundle) argument
239 // bundle->getCommand(), bundle->getVerbose(), bundle->getForce());
240 //for (int i = 0; i < bundle->getFileSpecCount(); i++)
241 // printf(" %d: '%s'\n", i, bundle->getFileSpecEntry(i));
243 switch (bundle->getCommand()) {
244 case kCommandVersion: return doVersion(bundle);
245 case kCommandList: return doList(bundle);
246 case kCommandDump: return doDump(bundle);
265 Bundle bundle; local
[all...]
H A DCacheUpdater.h53 // Constructor to set bundle to pass to preProcessImage
55 : bundle(b) { };
106 preProcessImageToCache(bundle, source, dest);
109 Bundle* bundle; member in class:SystemCacheUpdater
/frameworks/support/compat/java/android/support/v4/app/
H A DBundleCompat.java41 public static IBinder getBinder(Bundle bundle, String key) { argument
54 return (IBinder) sGetIBinderMethod.invoke(bundle, key);
64 public static void putBinder(Bundle bundle, String key, IBinder binder) { argument
78 sPutIBinderMethod.invoke(bundle, key, binder);
93 * @param bundle The bundle to get the {@link IBinder}.
97 public static IBinder getBinder(Bundle bundle, String key) { argument
99 return bundle.getBinder(key);
101 return BundleCompatBaseImpl.getBinder(bundle, key);
108 * @param bundle Th
112 putBinder(Bundle bundle, String key, IBinder binder) argument
[all...]
/frameworks/base/tools/layoutlib/bridge/src/android/view/textservice/
H A DTextServicesManager.java39 public SpellCheckerSession newSpellCheckerSession(Bundle bundle, Locale locale, argument
/frameworks/support/frameworks/support/samples/SupportLeanbackDemos/src/com/example/android/leanback/
H A DSettingsFragment.java73 public void onCreatePreferences(Bundle bundle, String rootKey) { argument
/frameworks/support/samples/SupportLeanbackDemos/src/com/example/android/leanback/
H A DSettingsFragment.java73 public void onCreatePreferences(Bundle bundle, String rootKey) { argument
/frameworks/base/core/java/android/view/textservice/
H A DTextServicesManager.java121 public SpellCheckerSession newSpellCheckerSession(Bundle bundle, Locale locale, argument
179 session.getSpellCheckerSessionListener(), bundle);
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DGenerationRegistry.java69 public void addGenerationData(Bundle bundle, int key) { argument
76 bundle.putParcelable(Settings.CALL_METHOD_TRACK_GENERATION_KEY,
78 bundle.putInt(Settings.CALL_METHOD_GENERATION_INDEX_KEY, index);
79 bundle.putInt(Settings.CALL_METHOD_GENERATION_KEY,
/frameworks/base/telecomm/java/android/telecom/
H A DAuthenticatorService.java63 String s, String s2, String[] strings, Bundle bundle)
70 Account account, Bundle bundle)
77 Account account, String s, Bundle bundle)
89 Account account, String s, Bundle bundle)
62 addAccount(AccountAuthenticatorResponse accountAuthenticatorResponse, String s, String s2, String[] strings, Bundle bundle) argument
69 confirmCredentials(AccountAuthenticatorResponse accountAuthenticatorResponse, Account account, Bundle bundle) argument
76 getAuthToken(AccountAuthenticatorResponse accountAuthenticatorResponse, Account account, String s, Bundle bundle) argument
88 updateCredentials(AccountAuthenticatorResponse accountAuthenticatorResponse, Account account, String s, Bundle bundle) argument
/frameworks/base/telephony/java/android/telephony/gsm/
H A DGsmCellLocation.java40 * Initialize the object from a bundle.
42 public GsmCellLocation(Bundle bundle) { argument
43 mLac = bundle.getInt("lac", -1);
44 mCid = bundle.getInt("cid", -1);
45 mPsc = bundle.getInt("psc", -1);
/frameworks/base/tools/layoutlib/bridge/src/android/animation/
H A DAnimationThread.java59 public int compareTo(MessageBundle bundle) { argument
60 if (mUptimeMillis < bundle.mUptimeMillis) {
118 MessageBundle bundle = mQueue.poll();
119 if (bundle == null) {
123 // sleep enough for this bundle to be on time
125 if (currentTime < bundle.mUptimeMillis) {
127 sleep(bundle.mUptimeMillis - currentTime);
146 // process the bundle. If the animation is not finished, this will enqueue
154 bundle.mTarget.handleMessage(bundle
[all...]
/frameworks/native/include/binder/
H A DPersistableBundle.h40 PersistableBundle(const PersistableBundle& bundle) = default; member in class:android::os::PersistableBundle
/frameworks/native/libs/binder/include/binder/
H A DPersistableBundle.h40 PersistableBundle(const PersistableBundle& bundle) = default; member in class:android::os::PersistableBundle
/frameworks/support/customtabs/tests/src/android/support/customtabs/
H A DTestCustomTabsService.java56 protected boolean updateVisuals(CustomTabsSessionToken sessionToken, Bundle bundle) { argument

Completed in 5395 milliseconds

1234