/frameworks/base/core/java/android/app/ |
ActivityTransitionState.java | 18 import android.os.Bundle; 130 public void readState(Bundle bundle) { 131 if (bundle != null) { 133 mEnteringNames = bundle.getStringArrayList(ENTERING_SHARED_ELEMENTS); 136 mExitingFrom = bundle.getStringArrayList(EXITING_MAPPED_FROM); 137 mExitingTo = bundle.getStringArrayList(EXITING_MAPPED_TO); 142 public void saveState(Bundle bundle) { 144 bundle.putStringArrayList(ENTERING_SHARED_ELEMENTS, mEnteringNames) [all...] |
/frameworks/base/packages/StatementService/src/com/android/statementservice/ |
DirectStatementService.java | 22 import android.os.Bundle; 90 * failed, return {@link #RESULT_FAIL} and an empty {@link android.os.Bundle}. Otherwise, return 91 * {@link #RESULT_SUCCESS} and a {@link android.os.Bundle} with the result stored in {@link 98 * A boolean bundle entry that stores the result of {@link #CHECK_ALL_ACTION}. 105 * A String ArrayList bundle entry that stores sources that can't be verified. 187 Bundle extras = intent.getExtras(); 199 resultReceiver.send(RESULT_FAIL, Bundle.EMPTY); 204 resultReceiver.send(RESULT_FAIL, Bundle.EMPTY); 209 resultReceiver.send(RESULT_FAIL, Bundle.EMPTY); 250 Bundle result = new Bundle() [all...] |
/frameworks/support/v7/mediarouter/src/android/support/v7/media/ |
MediaItemStatus.java | 20 import android.os.Bundle; 67 private final Bundle mBundle; 184 * Bundle extra: HTTP response headers. 191 * The value is a {@link android.os.Bundle} of string based key-value pairs 198 private MediaItemStatus(Bundle bundle) { 199 mBundle = bundle; 246 * Gets a bundle of extras for this status object. 250 public Bundle getExtras() { 292 * Converts this object to a bundle for serialization [all...] |
RegisteredMediaRouteProvider.java | 23 import android.os.Bundle; 461 Bundle descriptorBundle) { 475 public boolean onDescriptorChanged(Bundle descriptorBundle) { 484 public boolean onControlRequestSucceeded(int requestId, Bundle data) { 494 public boolean onControlRequestFailed(int requestId, String error, Bundle data) { 516 Bundle data = new Bundle(); 534 Bundle extras = new Bundle(); 541 Bundle data = new Bundle() [all...] |
/frameworks/base/core/java/android/accounts/ |
AccountManager.java | 30 import android.os.Bundle; 167 * Bundle key used for the {@link String} account name in results 173 * Bundle key used for the {@link String} account type in results 179 * Bundle key used for the auth token value in results 185 * Bundle key used for an {@link Intent} in results from methods that 192 * Bundle key used to supply the password directly in options to 211 * Bundle key used to supply the last time the credentials of the account 226 * The Android package of the caller will be set in the options bundle by the 283 public static Bundle sanitizeResult(Bundle result) [all...] |
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowActivity.java | 10 import android.os.Bundle; 217 public void onCreate(Bundle bundle) { 427 public final boolean showDialog(int id, Bundle bundle) { 437 if (bundle == null) { 441 invoker.call("onPrepareDialog", Integer.TYPE, Dialog.class, Bundle.class) 442 .with(id, dialog, bundle); 457 * {@code Activity#showDialog(int, Bundle)} or {@code Activity#showDialog(int)} 480 final Bundle noInstanceState = null [all...] |
ShadowCursorWrapper.java | 6 import android.os.Bundle; 199 public Bundle getExtras() { 204 public Bundle respond(Bundle bundle) { 205 return wrappedCursor.respond(bundle);
|
/frameworks/base/cmds/uiautomator/library/testrunner-src/com/android/uiautomator/testrunner/ |
UiAutomatorTestRunner.java | 23 import android.os.Bundle; 64 private Bundle mParams = null; 70 public void sendStatus(int resultCode, Bundle status) { 78 public void run(List<String> testClasses, Bundle params, boolean debug, boolean monkey) { 83 Bundle results = new Bundle(); 125 Bundle testRunOutput = new Bundle(); 186 public void instrumentationStatus(ComponentName name, int resultCode, Bundle results) { 209 public void instrumentationFinished(ComponentName name, int resultCode, Bundle results) [all...] |
UiAutomatorTestCase.java | 20 import android.os.Bundle; 37 * {@link Bundle} for command line parameters. 45 private Bundle mParams; 77 * pairs, the {@link Bundle} will have the key value pairs conveniently available to the 81 public Bundle getParams() { 107 void setParams(Bundle params) {
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/nfc/ |
NdefPushReceiverActivity.java | 30 import android.os.Bundle; 50 protected void onCreate(Bundle savedInstanceState) { 97 Bundle args = new Bundle(); 116 public Dialog onCreateDialog(int id, Bundle args) { 137 protected void onPrepareDialog(int id, Dialog dialog, Bundle args) {
|
/cts/tests/tests/app/src/android/app/cts/ |
TimePickerDialogTest.java | 23 import android.os.Bundle; 69 Bundle b = tD.onSaveInstanceState(); 117 Bundle b = timePickerDialog.onSaveInstanceState(); 126 Bundle b1 = new Bundle(); 135 Bundle b2 = timePickerDialog.onSaveInstanceState();
|
/cts/tests/tests/assist/src/android/assist/cts/ |
ExtraAssistDataTest.java | 23 import android.os.Bundle; 77 Log.i(TAG, "assist bundle is: " + Utils.toBundleString(mAssistBundle)); 83 Bundle extraExpectedBundle = Utils.getExtraAssistBundle(); 84 Bundle extraAssistBundle = mAssistBundle.getBundle(Intent.EXTRA_ASSIST_CONTEXT); 86 assertTrue("Assist bundle does not contain expected extra context key: " + key, 88 assertEquals("Extra assist context bundle values do not match for key: " + key,
|
/developers/build/prebuilts/gradle/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/ui/ |
ImageDetailFragment.java | 19 import android.os.Bundle; 50 final Bundle args = new Bundle(); 67 public void onCreate(Bundle savedInstanceState) { 74 Bundle savedInstanceState) { 82 public void onActivityCreated(Bundle savedInstanceState) {
|
/developers/samples/android/ui/graphics/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/ui/ |
ImageDetailFragment.java | 19 import android.os.Bundle; 50 final Bundle args = new Bundle(); 67 public void onCreate(Bundle savedInstanceState) { 74 Bundle savedInstanceState) { 82 public void onActivityCreated(Bundle savedInstanceState) {
|
/development/samples/ApiDemos/src/com/example/android/apis/app/ |
SearchQueryResults.java | 24 import android.os.Bundle; 41 public void onCreate(Bundle savedInstanceState) { 103 // you will receive it as an "extra" bundle in the query intent. 104 // The bundle can contain any number of elements, using any number of keys; 106 final Bundle appData = queryIntent.getBundleExtra(SearchManager.APP_DATA); 108 mAppDataText.setText("<no app data bundle>");
|
/development/samples/browseable/DisplayingBitmaps/src/com.example.android.displayingbitmaps/ui/ |
ImageDetailFragment.java | 19 import android.os.Bundle; 50 final Bundle args = new Bundle(); 67 public void onCreate(Bundle savedInstanceState) { 74 Bundle savedInstanceState) { 82 public void onActivityCreated(Bundle savedInstanceState) {
|
/external/icu/icu4c/source/common/unicode/ |
resbund.h | 18 * constructor which attempts to read resource bundle 27 * 3/13/97 aliu Rewrote to load in entire resource bundle and store 57 * \brief C++ API: Resource Bundle 64 * locale. A resource bundle provides a way of accessing locale- specfic information in 65 * a data file. You create a resource bundle that manages the resources for a given 70 * More on resource bundle concepts and syntax can be found in the 88 * @param locale This is the locale this resource bundle is for. To get resources 91 * and all subsequent calls to that resource bundle will return 111 * Construct a resource bundle for the default bundle in the specified package [all...] |
/external/icu/icu4c/source/tools/genrb/ |
genrb.1.in | 12 \- compile a resource bundle 39 .IR bundle " \.\.\." 43 .I bundle 48 extension while resource bundle source files typically have a 56 .I bundle 61 for the root bundle.
|
/external/svox/pico/src/com/svox/pico/ |
CheckVoiceData.java | 23 import android.os.Bundle; 58 protected void onCreate(Bundle savedInstanceState) { 69 Bundle bundle = getIntent().getExtras(); local 70 if (bundle != null){ 71 ArrayList<String> langCountryVars = bundle.getStringArrayList(
|
/external/zxing/qr_scanner/src/com/google/zxing/client/android/ |
DecodeHandler.java | 26 import android.os.Bundle; 91 Bundle bundle = new Bundle(); local 92 bundle.putParcelable(DecodeThread.BARCODE_BITMAP, source.renderCroppedGreyscaleBitmap()); 93 message.setData(bundle);
|
/frameworks/base/services/core/java/com/android/server/location/ |
MockProvider.java | 22 import android.os.Bundle; 46 private final Bundle mExtras = new Bundle(); 92 public int getStatus(Bundle extras) { 123 public void setStatus(int status, Bundle extras, long updateTime) { 158 public boolean sendExtraCommand(String command, Bundle extras) {
|
/frameworks/base/tests/utils/SleepUtils/SleepHelper/src/com/android/testing/sleephelper/ |
SetAlarm.java | 25 import android.os.Bundle; 45 private Bundle mArgs = null; 86 finish(Activity.RESULT_OK, new Bundle()); 90 public void onCreate(Bundle arguments) { 104 Bundle ret = new Bundle();
|
/frameworks/base/tools/aapt/ |
CacheUpdater.h | 53 // Constructor to set bundle to pass to preProcessImage 54 SystemCacheUpdater (Bundle* b) 55 : bundle(b) { }; 106 preProcessImageToCache(bundle, source, dest); 109 Bundle* bundle; member in class:SystemCacheUpdater
|
/frameworks/support/customtabs/src/android/support/customtabs/ |
CustomTabsClient.java | 24 import android.os.Bundle; 85 * use this to relay {@link CustomTabsSession#mayLaunchUrl(Uri, Bundle, List)} calls. 91 public void onNavigationEvent(int navigationEvent, Bundle extras) { 96 public void extraCallback(String callbackName, Bundle args) throws RemoteException { 109 public Bundle extraCommand(String commandName, Bundle args) {
|
/packages/apps/Contacts/tests/src/com/android/contacts/tests/allintents/ |
SelectAccountDialogFragment.java | 25 import android.os.Bundle; 43 public Dialog onCreateDialog(Bundle savedInstanceState) { 44 final Bundle parameters = getArguments(); 92 public static Bundle createBundle(int tag) { 93 final Bundle result = new Bundle();
|