HomeSort by relevance Sort by last modified time
    Searched refs:Bundle (Results 1 - 25 of 4516) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/os/
Bundle.aidl 1 /* //device/java/android/android/os/Bundle.aidl
20 parcelable Bundle;
IRemoteCallback.aidl 20 import android.os.Bundle;
24 void sendResult(in Bundle data);
  /frameworks/base/core/java/android/speech/
RecognitionListener.java 19 import android.os.Bundle;
32 void onReadyForSpeech(Bundle params);
72 * ArrayList<String>} format use {@link Bundle#getStringArrayList(String)} with
76 void onResults(Bundle results);
80 * time between {@link #onBeginningOfSpeech()} and {@link #onResults(Bundle)} when partial
87 * ArrayList<String> format use {@link Bundle#getStringArrayList(String)} with
90 void onPartialResults(Bundle partialResults);
96 * @param params a Bundle containing the passed parameters
98 void onEvent(int eventType, Bundle params);
IRecognitionListener.aidl 19 import android.os.Bundle;
33 void onReadyForSpeech(in Bundle params);
69 * @param results a Bundle containing the most likely results (N-best list).
71 void onResults(in Bundle results);
76 * @param results a Bundle containing the current most likely result.
78 void onPartialResults(in Bundle results);
84 * @param params a Bundle containing the passed parameters
86 void onEvent(in int eventType, in Bundle params);
  /frameworks/base/cmds/uiautomator/instrumentation/testrunner-src/com/android/uiautomator/testrunner/
IAutomationSupport.java 19 import android.os.Bundle;
35 public void sendStatus(int resultCode, Bundle status);
  /frameworks/base/cmds/uiautomator/library/testrunner-src/com/android/uiautomator/testrunner/
IAutomationSupport.java 19 import android.os.Bundle;
35 public void sendStatus(int resultCode, Bundle status);
  /frameworks/base/tests/OneMedia/src/com/android/onemedia/playback/
PlaybackError.java 18 import android.os.Bundle;
24 public Bundle errorExtras;
IRequestCallback.aidl 18 import android.os.Bundle;
21 void onResult(in Bundle result);
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/form/
FormPageResultListener.java 19 import android.os.Bundle;
30 * @param bundleResults the results of the page completion. This bundle
35 void onBundlePageResult(FormPage page, Bundle bundleResults);
  /frameworks/base/tools/aapt/
Main.h 17 #include "Bundle.h"
31 extern int doVersion(Bundle* bundle);
32 extern int doList(Bundle* bundle);
33 extern int doDump(Bundle* bundle);
34 extern int doAdd(Bundle* bundle);
35 extern int doRemove(Bundle* bundle)
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/
plugin.properties 11 Bundle-Name= Ui Performance Test Framework Plug-in
12 Bundle-Vendor= Eclipse.org
  /frameworks/base/core/java/android/accounts/
IAccountAuthenticatorResponse.aidl 18 import android.os.Bundle;
25 void onResult(in Bundle value);
IAccountManagerResponse.aidl 18 import android.os.Bundle;
25 void onResult(in Bundle value);
  /frameworks/base/core/java/android/app/
IActivityPendingResult.aidl 20 import android.os.Bundle;
25 boolean sendResult(int code, String data, in Bundle ex);
IInstrumentationWatcher.aidl 21 import android.os.Bundle;
27 in Bundle results);
29 in Bundle results);
  /frameworks/base/core/java/com/android/internal/os/
IResultReceiver.aidl 20 import android.os.Bundle;
24 void send(int resultCode, in Bundle resultData);
  /frameworks/base/tests/Compatibility/src/com/android/compatibilitytest/
AppCompatibilityRunner.java 19 import android.os.Bundle;
24 private Bundle mArgs;
27 public void onCreate(Bundle args) {
32 public Bundle getBundle() {
  /frameworks/base/tests/MemoryUsage/src/com/android/tests/memoryusage/
MemoryUsageInstrumentation.java 18 import android.os.Bundle;
26 private Bundle arguments;
29 public void onCreate(Bundle arguments) {
34 public Bundle getBundle() {
  /frameworks/base/wifi/java/android/net/wifi/
IWifiScanner.aidl 20 import android.os.Bundle;
29 Bundle getAvailableChannels(int band);
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/service/
IAccountService.aidl 19 import android.os.Bundle;
24 Bundle getConfigurationData(String accountType);
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
MatrixCursorWithExtra.java 18 import android.os.Bundle;
21 private final Bundle mExtras;
23 public MatrixCursorWithExtra(String[] columnNames, int initialCapacity, Bundle extras) {
30 public Bundle getExtras() {
  /frameworks/support/v4/jellybean/android/support/v4/app/
BundleUtil.java 3 import android.os.Bundle;
13 * Get an array of Bundle objects from a parcelable array field in a bundle.
14 * Update the bundle to have a typed array so fetches in the future don't need
17 public static Bundle[] getBundleArrayFromBundle(Bundle bundle, String key) {
18 Parcelable[] array = bundle.getParcelableArray(key);
19 if (array instanceof Bundle[] || array == null) {
20 return (Bundle[]) array
    [all...]
  /packages/apps/Email/tests/src/com/android/email/
MockVendorPolicy.java 20 import android.os.Bundle;
26 public static Bundle passedBundle;
27 public static Bundle mockResult;
29 public static Bundle getPolicy(String policy, Bundle args) {
  /cts/tests/tests/content/src/android/content/cts/
MockAccountAuthenticator.java 25 import android.os.Bundle;
40 private Bundle createResultBundle() {
41 Bundle result = new Bundle();
50 public Bundle addAccount(AccountAuthenticatorResponse response, String accountType,
51 String authTokenType, String[] requiredFeatures, Bundle options)
57 public Bundle editProperties(AccountAuthenticatorResponse response, String accountType) {
62 public Bundle updateCredentials(AccountAuthenticatorResponse response, Account account,
63 String authTokenType, Bundle options) throws NetworkErrorException {
68 public Bundle confirmCredentials(AccountAuthenticatorResponse response, Account account
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/contacts/account/
StaticAccountAuthenticator.java 25 import android.os.Bundle;
41 private static Bundle sAccountBundle;
43 sAccountBundle = new Bundle();
49 private static Bundle createResultBundle() {
58 public Bundle editProperties(AccountAuthenticatorResponse response, String accountType) {
63 public Bundle addAccount(AccountAuthenticatorResponse response, String accountType,
64 String authTokenType, String[] requiredFeatures, Bundle options)
70 public Bundle confirmCredentials(AccountAuthenticatorResponse response, Account account,
71 Bundle options) throws NetworkErrorException {
72 Bundle result = new Bundle()
    [all...]

Completed in 594 milliseconds

1 2 3 4 5 6 7 8 91011>>