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

1234567

/frameworks/base/services/core/java/com/android/server/
H A DPendingIntentUtils.java30 * @param bundle when provided, will merge the extra options to restrict background
31 * PendingIntent into the existing bundle.
34 public static Bundle createDontSendToRestrictedAppsBundle(@Nullable Bundle bundle) { argument
37 if (bundle == null) {
40 bundle.putAll(options.toBundle());
41 return bundle;
/frameworks/support/dynamic-animation/src/androidTest/java/androidx/dynamicanimation/tests/
H A DAnimationActivity.java26 public void onCreate(Bundle bundle) { argument
27 super.onCreate(bundle);
/frameworks/support/room/migration/src/main/java/androidx/room/migration/bundle/
H A DSchemaEquality.java17 package androidx.room.migration.bundle;
H A DBundleUtil.java17 package androidx.room.migration.bundle;
H A DSchemaBundle.java17 package androidx.room.migration.bundle;
88 public static void serialize(SchemaBundle bundle, File file) throws IOException { argument
92 GSON.toJson(bundle, osw);
H A DPrimaryKeyBundle.java17 package androidx.room.migration.bundle;
H A DSchemaEqualityUtil.java17 package androidx.room.migration.bundle;
/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/frameworks/support/samples/Support4Demos/src/main/java/com/example/android/supportv4/widget/
H A DSwipeRefreshLayoutActivityList.java31 public void onCreate(Bundle bundle) { argument
32 super.onCreate(bundle);
/frameworks/support/room/migration/src/test/java/androidx/room/migration/bundle/
H A DFieldBundleTest.java17 package androidx.room.migration.bundle;
30 FieldBundle bundle = new FieldBundle("foo", "foo", "text", false);
32 assertThat(bundle.isSchemaEqual(copy), is(true));
37 FieldBundle bundle = new FieldBundle("foo", "foo", "text", false);
39 assertThat(bundle.isSchemaEqual(copy), is(false));
44 FieldBundle bundle = new FieldBundle("foo", "foo", "text", false);
46 assertThat(bundle.isSchemaEqual(copy), is(false));
51 FieldBundle bundle = new FieldBundle("foo", "foo", "text", false);
53 assertThat(bundle.isSchemaEqual(copy), is(false));
58 FieldBundle bundle
[all...]
H A DPrimaryKeyBundleTest.java17 package androidx.room.migration.bundle;
32 PrimaryKeyBundle bundle = new PrimaryKeyBundle(true,
36 assertThat(bundle.isSchemaEqual(other), is(true));
41 PrimaryKeyBundle bundle = new PrimaryKeyBundle(true,
45 assertThat(bundle.isSchemaEqual(other), is(false));
50 PrimaryKeyBundle bundle = new PrimaryKeyBundle(true,
54 assertThat(bundle.isSchemaEqual(other), is(false));
59 PrimaryKeyBundle bundle = new PrimaryKeyBundle(true,
63 assertThat(bundle.isSchemaEqual(other), is(false));
H A DForeignKeyBundleTest.java17 package androidx.room.migration.bundle;
32 ForeignKeyBundle bundle = new ForeignKeyBundle("table", "onDelete",
38 assertThat(bundle.isSchemaEqual(other), is(true));
43 ForeignKeyBundle bundle = new ForeignKeyBundle("table", "onDelete",
49 assertThat(bundle.isSchemaEqual(other), is(false));
54 ForeignKeyBundle bundle = new ForeignKeyBundle("table", "onDelete2",
60 assertThat(bundle.isSchemaEqual(other), is(false));
65 ForeignKeyBundle bundle = new ForeignKeyBundle("table", "onDelete",
71 assertThat(bundle.isSchemaEqual(other), is(false));
76 ForeignKeyBundle bundle
[all...]
H A DIndexBundleTest.java17 package androidx.room.migration.bundle;
32 IndexBundle bundle = new IndexBundle("index1", false,
36 assertThat(bundle.isSchemaEqual(other), is(true));
41 IndexBundle bundle = new IndexBundle("index1", false,
45 assertThat(bundle.isSchemaEqual(other), is(false));
50 IndexBundle bundle = new IndexBundle(IndexBundle.DEFAULT_PREFIX + "x", false,
54 assertThat(bundle.isSchemaEqual(other), is(true));
59 IndexBundle bundle = new IndexBundle("index1", false,
63 assertThat(bundle.isSchemaEqual(other), is(false));
68 IndexBundle bundle
[all...]
/frameworks/support/samples/Support4Demos/src/main/java/com/example/android/supportv4/widget/
H A DSwipeRefreshLayoutActivityList.java31 public void onCreate(Bundle bundle) { argument
32 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/tests/servicestests/src/com/android/server/pm/
H A DUserManagerServiceTest.java57 Bundle bundle = createBundle();
58 UserManagerService.writeApplicationRestrictionsLAr(bundle, atomicFile);
62 bundle = UserManagerService.readApplicationRestrictionsLAr(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.cpp30 int doVersion(Bundle* bundle) argument
32 if (bundle->getFileSpecCount() != 0) {
253 int handleCommand(Bundle* bundle) argument
256 // bundle->getCommand(), bundle->getVerbose(), bundle->getForce());
257 //for (int i = 0; i < bundle->getFileSpecCount(); i++)
258 // printf(" %d: '%s'\n", i, bundle->getFileSpecEntry(i));
260 switch (bundle->getCommand()) {
261 case kCommandVersion: return doVersion(bundle);
282 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/rs/tests/java_api/RSUnitTests/gui/com/android/rs/unittest/
H A DRSListActivity.java26 public void onCreate(Bundle bundle) { argument
28 super.onCreate(bundle);
/frameworks/support/compat/src/main/java/androidx/core/app/
H A DBundleCompat.java47 public static IBinder getBinder(Bundle bundle, String key) { argument
60 return (IBinder) sGetIBinderMethod.invoke(bundle, key);
70 public static void putBinder(Bundle bundle, String key, IBinder binder) { argument
84 sPutIBinderMethod.invoke(bundle, key, binder);
99 * @param bundle The bundle to get the {@link IBinder}.
104 public static IBinder getBinder(@NonNull Bundle bundle, @Nullable String key) { argument
106 return bundle.getBinder(key);
108 return BundleCompatBaseImpl.getBinder(bundle, key);
115 * @param bundle Th
119 putBinder(@onNull Bundle bundle, @Nullable String key, @Nullable IBinder binder) argument
[all...]
/frameworks/support/frameworks/support/samples/ViewPager2Demos/src/main/java/com/example/androidx/viewpager2/
H A DCardActivity.java43 public void onCreate(Bundle bundle) { argument
44 super.onCreate(bundle);
H A DCardFragmentActivity.java48 public void onCreate(Bundle bundle) { argument
49 super.onCreate(bundle);
/frameworks/support/samples/ViewPager2Demos/src/main/java/com/example/androidx/viewpager2/
H A DCardActivity.java43 public void onCreate(Bundle bundle) { argument
44 super.onCreate(bundle);
H A DCardFragmentActivity.java48 public void onCreate(Bundle bundle) { argument
49 super.onCreate(bundle);
/frameworks/layoutlib/bridge/src/android/view/textservice/
H A DTextServicesManager.java39 public SpellCheckerSession newSpellCheckerSession(Bundle bundle, Locale locale, argument

Completed in 3376 milliseconds

1234567