HomeSort by relevance Sort by last modified time
    Searched refs:bundle (Results 226 - 250 of 1551) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /sdk/eclipse/scripts/
build_adt.sh 43 echo Launching Tycho to build ADT plugins and bundle
46 echo Copying ADT plugins and bundle into destination folder
  /cts/hostsidetests/devicepolicy/app/ManagedProfile/src/com/android/cts/managedprofile/
ProvisioningTest.java 107 PersistableBundle bundle = loadBundle(mContext); local
108 assertNotNull(bundle);
109 assertEquals(ADMIN_EXTRAS_BUNDLE_VALUE_1, bundle.getString(ADMIN_EXTRAS_BUNDLE_KEY_1));
156 private static void saveBundle(Context context, PersistableBundle bundle) {
157 if (bundle == null) {
163 .putString(ADMIN_EXTRAS_BUNDLE_KEY_1, bundle.getString(ADMIN_EXTRAS_BUNDLE_KEY_1))
169 PersistableBundle bundle = new PersistableBundle(); local
170 bundle.putString(ADMIN_EXTRAS_BUNDLE_KEY_1,
172 return bundle;
  /frameworks/base/core/java/android/app/
ActivityTransitionState.java 19 import android.os.Bundle;
132 public void readState(Bundle bundle) {
133 if (bundle != null) {
135 mEnteringNames = bundle.getStringArrayList(ENTERING_SHARED_ELEMENTS);
138 mExitingFrom = bundle.getStringArrayList(EXITING_MAPPED_FROM);
139 mExitingTo = bundle.getStringArrayList(EXITING_MAPPED_TO);
144 public void saveState(Bundle bundle) {
146 bundle.putStringArrayList(ENTERING_SHARED_ELEMENTS, mEnteringNames)
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/backup/utils/
BackupManagerMonitorUtilsTest.java 32 import android.os.Bundle;
66 doThrow(new RemoteException()).when(mMonitorMock).onEvent(any(Bundle.class));
71 verify(mMonitorMock).onEvent(any(Bundle.class));
81 ArgumentCaptor<Bundle> bundleCaptor = ArgumentCaptor.forClass(Bundle.class);
83 Bundle eventBundle = bundleCaptor.getValue();
94 Bundle extras = new Bundle();
102 ArgumentCaptor<Bundle> bundleCaptor = ArgumentCaptor.forClass(Bundle.class)
116 Bundle bundle = new Bundle(); local
138 Bundle bundle = new Bundle(); local
158 Bundle bundle = new Bundle(); local
    [all...]
  /frameworks/support/compat/java/android/support/v4/app/
SharedElementCallback.java 26 import android.os.Bundle;
175 Bundle bundle = new Bundle(); local
176 bundle.putParcelable(BUNDLE_SNAPSHOT_BITMAP, bitmap);
177 bundle.putString(BUNDLE_SNAPSHOT_IMAGE_SCALETYPE,
183 bundle.putFloatArray(BUNDLE_SNAPSHOT_IMAGE_MATRIX, values);
185 return bundle;
258 if (snapshot instanceof Bundle) {
259 Bundle bundle = (Bundle) snapshot local
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/selectcalendars/
SelectCalendarsSyncFragment.java 33 import android.os.Bundle;
92 public SelectCalendarsSyncFragment(Bundle bundle) {
93 mAccount = new Account(bundle.getString(Calendars.ACCOUNT_NAME),
94 bundle.getString(Calendars.ACCOUNT_TYPE));
99 LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
112 public void onActivityCreated(Bundle savedInstanceState) {
148 Bundle bundle = getArguments(); local
149 if (bundle != null && bundle.containsKey(Calendars.ACCOUNT_NAME
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/app/settings/
DialerSettingsActivity.java 23 import android.os.Bundle;
53 protected void onCreate(Bundle savedInstanceState) {
166 Bundle bundle = new Bundle(); local
167 bundle.putString(
169 bundle.putString(
172 bundle.putBundle(PhoneAccountSelectionFragment.PARAM_ARGUMENTS, new Bundle());
173 bundle.putInt
181 Bundle bundle = new Bundle(); local
    [all...]
  /packages/services/Telephony/src/com/android/phone/
GsmUmtsCallForwardOptions.java 10 import android.os.Bundle;
46 private Bundle mIcicle;
52 protected void onCreate(Bundle icicle) {
111 Bundle bundle = mIcicle.getParcelable(pref.getKey()); local
112 pref.setToggled(bundle.getBoolean(KEY_TOGGLE));
114 cf.number = bundle.getString(KEY_NUMBER);
115 cf.status = bundle.getInt(KEY_STATUS);
126 protected void onSaveInstanceState(Bundle outState) {
130 Bundle bundle = new Bundle() local
136 outState.putParcelable(pref.getKey(), bundle); local
    [all...]
  /external/icu/icu4c/source/tools/genrb/
reslist.cpp 46 * Align binary data at a 16-byte offset from the start of the resource bundle,
53 // and it makes no sense to move it to the pool bundle.
55 // the smaller the savings, and the smaller the pool bundle.
56 // We trade some total size reduction to reduce the pool bundle a bit,
58 // removing bundle files without rebuilding the pool bundle.
84 * for use in non-error cases when no resource is to be added to the bundle.
150 SResource::SResource(SRBRoot *bundle, const char *tag, int8_t type, const UString* comment,
153 fKey(bundle != NULL ? bundle->addTag(tag, errorCode) : -1), fKey16(-1)
1300 const struct SRBRoot *bundle=(const struct SRBRoot *)context; local
    [all...]
  /frameworks/base/tools/aapt/
Resource.cpp 220 static status_t parsePackage(Bundle* bundle, const sp<AaptAssets>& assets,
267 bundle->setRevisionCode(String8(block.getAttributeStringValue(revisionCodeIndex, &len)).string());
280 bundle->setManifestMinSdkVersion(minSdk8);
293 static status_t makeFileResources(Bundle* bundle, const sp<AaptAssets>& assets,
306 if (bundle->getVerbose()) {
344 PreProcessImageWorkUnit(const Bundle* bundle, const sp<AaptAssets>& assets,
346 mBundle(bundle), mAssets(assets), mFile(file), mHasErrors(hasErrors)
    [all...]
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/wifi/
WifiRttManagerFacade.java 28 import android.os.Bundle;
77 public static Bundle packRttResult(RttResult result) {
78 Bundle rttResult = new Bundle();
115 Bundle msg = new Bundle();
127 Bundle msg = new Bundle();
137 new Bundle());
162 Bundle bundle = new Bundle() local
174 Bundle bundle = new Bundle(); local
    [all...]
  /cts/hostsidetests/devicepolicy/app/DeviceAndProfileOwner/src/com/android/cts/deviceandprofileowner/
TrustAgentInfoTest.java 82 PersistableBundle bundle = actual.get(0); local
83 assertEquals(BUNDLE_VALUE, bundle.getString(BUNDLE_KEY));
  /cts/hostsidetests/incident/apps/batterystatsapp/src/com/android/server/cts/device/batterystats/
BatteryStatsForegroundActivity.java 27 import android.os.Bundle;
35 public void onCreate(Bundle bundle) {
36 super.onCreate(bundle);
  /development/samples/devbytes/animation/ActivityAnimations/src/com/example/android/activityanim/
PictureDetailsActivity.java 28 import android.os.Bundle;
69 public void onCreate(Bundle savedInstanceState) {
79 Bundle bundle = getIntent().getExtras(); local
81 bundle.getInt(PACKAGE_NAME + ".resourceId"));
82 String description = bundle.getString(PACKAGE_NAME + ".description");
83 final int thumbnailTop = bundle.getInt(PACKAGE_NAME + ".top");
84 final int thumbnailLeft = bundle.getInt(PACKAGE_NAME + ".left");
85 final int thumbnailWidth = bundle.getInt(PACKAGE_NAME + ".width");
86 final int thumbnailHeight = bundle.getInt(PACKAGE_NAME + ".height")
    [all...]
  /development/samples/training/threadsample/src/com/example/android/threadsample/
PhotoThumbnailFragment.java 24 import android.os.Bundle;
96 public Loader<Cursor> onCreateLoader(int loaderID, Bundle bundle)
124 public View onCreateView(LayoutInflater inflater, ViewGroup viewGroup, Bundle bundle) {
127 super.onCreateView(inflater, viewGroup, bundle);
199 if (bundle == null) {
207 } else if (bundle.getBoolean(STATE_IS_HIDDEN, false)) {
329 public void onSaveInstanceState(Bundle bundle) {
    [all...]
  /external/curl/docs/cmdline-opts/
insecure.d 8 certificate bundle installed by default. This makes all connections considered
  /external/icu/icu4c/source/common/
wintz.c 277 UResourceBundle* bundle = NULL; local
320 bundle = ures_openDirect(NULL, "windowsZones", &status);
321 ures_getByKey(bundle, "mapTimezones", bundle, &status);
325 and can be used to directly map a name in our bundle. Try to use that first
336 UResourceBundle* winTZ = ures_getByKey(bundle, regStdName, NULL, &status);
363 /* Note: We get the winid not from static tables but from resource bundle. */
364 while (U_SUCCESS(status) && ures_hasNext(bundle)) {
367 UResourceBundle* winTZ = ures_getNextResource(bundle, NULL, &status);
436 ures_close(bundle);
    [all...]
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/
MultiReportVisitor.java 66 public void visitBundle(final IBundleCoverage bundle,
69 v.visitBundle(bundle, locator);
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/check/
RulesChecker.java 83 public void visitBundle(final IBundleCoverage bundle,
85 bundleChecker.checkBundle(bundle);
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowAccountManager.java 11 import android.os.Bundle;
50 public AccountManagerFuture<Bundle> getAuthToken(Account account, String authTokenType, Bundle options, Activity activity, AccountManagerCallback<Bundle> callback, Handler handler) {
53 return new AccountManagerFuture<Bundle>() {
68 public Bundle getResult(long timeout, TimeUnit unit) throws OperationCanceledException,
70 Bundle result = new Bundle();
79 public Bundle getResult() throws OperationCanceledException,
81 Bundle result = new Bundle()
    [all...]
  /frameworks/base/core/java/com/android/internal/textservice/
ITextServicesManager.aidl 23 import android.os.Bundle;
37 in ISpellCheckerSessionListener scListener, in Bundle bundle);
  /frameworks/support/room/compiler/src/main/kotlin/android/arch/persistence/room/vo/
ForeignKey.kt 19 import android.arch.persistence.room.migration.bundle.ForeignKeyBundle
PrimaryKey.kt 18 import android.arch.persistence.room.migration.bundle.PrimaryKeyBundle
  /packages/apps/CertInstaller/src/com/android/certinstaller/
CertInstallerMain.java 22 import android.os.Bundle;
69 protected void onCreate(Bundle savedInstanceState) {
85 Bundle bundle = intent.getExtras(); local
95 if (bundle != null && !installAsUserClassName.equals(calledClass)) {
96 bundle.remove(Credentials.EXTRA_INSTALL_AS_UID);
99 // If bundle is empty of any actual credentials, ask user to open.
102 if (bundle == null
103 || bundle.isEmpty()
104 || (bundle.size() ==
    [all...]
  /packages/services/Car/car-cluster-logging-renderer/src/android/car/cluster/loggingrenderer/
LoggingClusterRenderingService.java 22 import android.os.Bundle;
75 public void onEvent(int eventType, Bundle bundle) {
76 Log.i(TAG, "onEvent, eventType: " + eventType + ", bundle: " + bundle);

Completed in 634 milliseconds

1 2 3 4 5 6 7 8 91011>>