Home
last modified time | relevance | path

Searched refs:childBundle (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/core/tests/coretests/src/android/content/
DRestrictionsManagerTest.java74 Bundle childBundle = bundle.getBundle("bundle_key"); in testConvertRestrictionsToBundle() local
75 assertNotNull(childBundle); in testConvertRestrictionsToBundle()
76 assertEquals(2, childBundle.size()); in testConvertRestrictionsToBundle()
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/
DUserManagerServiceTest.java128 Bundle childBundle = bundle.getBundle("bundle"); in assertBundle() local
129 assertEquals("bundle_string", childBundle.getString("bundle_string")); in assertBundle()
130 assertEquals(1, childBundle.getInt("bundle_int")); in assertBundle()
/frameworks/base/core/java/android/content/
DRestrictionsManager.java723 Bundle childBundle = convertRestrictionsToBundle(Arrays.asList(restrictions)); in addRestrictionToBundle() local
724 bundle.putBundle(entry.getKey(), childBundle); in addRestrictionToBundle() local
/frameworks/base/services/core/java/com/android/server/pm/
DUserManagerService.java4165 Bundle childBundle = readBundleEntry(parser, values); in readEntry() local
4166 bundleList.add(childBundle); in readEntry()
4185 Bundle childBundle = new Bundle(); in readBundleEntry() local
4188 readEntry(childBundle, values, parser); in readBundleEntry()
4190 return childBundle; in readBundleEntry()