Home
last modified time | relevance | path

Searched refs:Bundle (Results 1 – 25 of 955) sorted by relevance

12345678910>>...39

/external/libtextclassifier/java/src/com/android/textclassifier/
DExtrasUtils.java21 import android.os.Bundle;
56 static Bundle createForeignLanguageExtra(String language, float score, int modelVersion) { in createForeignLanguageExtra()
57 final Bundle bundle = new Bundle(); in createForeignLanguageExtra()
71 static void putForeignLanguageExtra(Bundle container, Bundle extra) { in putForeignLanguageExtra()
83 public static Bundle getForeignLanguageExtra(@Nullable TextClassification classification) { in getForeignLanguageExtra()
93 static void putTopLanguageScores(Bundle container, EntityConfidence languageScores) { in putTopLanguageScores()
111 final Bundle tcBundle = intent.getBundleExtra(TextClassifier.EXTRA_FROM_TEXT_CLASSIFIER); in getTopLanguage()
115 final Bundle textLanguagesExtra = tcBundle.getBundle(TEXT_LANGUAGES); in getTopLanguage()
136 public static void putTextLanguagesExtra(Bundle container, Bundle extra) { in putTextLanguagesExtra()
144 static void putActionsIntents(Bundle container, ArrayList<Intent> actionsIntents) { in putActionsIntents()
[all …]
/external/deqp/android/package/src/com/drawelements/deqp/testercore/
DDeqpInstrumentation.java27 import android.os.Bundle;
45 public void onCreate (Bundle arguments) { in onCreate()
144 finish(0, new Bundle()); in onStart()
150 Bundle info = new Bundle(); in onStart()
170 Bundle info = new Bundle(); in testCaseResult()
181 Bundle info = new Bundle(); in beginTestCase()
191 Bundle info = new Bundle(); in endTestCase()
218 Bundle info = new Bundle(); in testLogData()
234 Bundle info = new Bundle(); in beginSession()
242 Bundle info = new Bundle(); in endSession()
[all …]
/external/cronet/net/test/android/javatests/src/org/chromium/net/test/
DDummySpnegoAuthenticator.java15 import android.os.Bundle;
50 public Bundle addAccount(AccountAuthenticatorResponse arg0, String accountType, String arg2, in addAccount()
51 String[] arg3, Bundle arg4) { in addAccount()
52 Bundle result = new Bundle(); in addAccount()
59 public Bundle confirmCredentials(AccountAuthenticatorResponse arg0, Account arg1, Bundle arg2) { in confirmCredentials()
60 Bundle result = new Bundle(); in confirmCredentials()
66 public Bundle editProperties(AccountAuthenticatorResponse arg0, String arg1) { in editProperties()
67 return new Bundle(); in editProperties()
71 public Bundle getAuthToken(AccountAuthenticatorResponse response, Account account, in getAuthToken()
72 String authTokenType, Bundle options) { in getAuthToken()
[all …]
/external/mobly-bundled-snippets/src/main/java/com/google/android/mobly/snippet/bundled/utils/
DJsonSerializer.java33 import android.os.Bundle;
134 public static Bundle serializeBluetoothDevice(BluetoothDevice data) { in serializeBluetoothDevice()
135 Bundle result = new Bundle(); in serializeBluetoothDevice()
156 public ArrayList<Bundle> serializeBluetoothDeviceList( in serializeBluetoothDeviceList()
158 ArrayList<Bundle> results = new ArrayList<>(); in serializeBluetoothDeviceList()
166 public Bundle serializeBleScanResult(android.bluetooth.le.ScanResult scanResult) { in serializeBleScanResult()
167 Bundle result = new Bundle(); in serializeBleScanResult()
189 private Bundle serializeBleScanRecord(ScanRecord record) { in serializeBleScanRecord()
190 Bundle result = new Bundle(); in serializeBleScanRecord()
201 private ArrayList<Bundle> serializeBleScanServices(ScanRecord record) { in serializeBleScanServices()
[all …]
/external/setupcompat/main/java/com/google/android/setupcompat/logging/internal/
DMetricBundleConverter.java3 import android.os.Bundle;
13 public static Bundle createBundleForLogging(CustomEvent customEvent) { in createBundleForLogging()
14 Bundle bundle = new Bundle(); in createBundleForLogging()
19 public static Bundle createBundleForLoggingCounter(MetricKey counterName, int times) { in createBundleForLoggingCounter()
20 Bundle bundle = new Bundle(); in createBundleForLoggingCounter()
26 public static Bundle createBundleForLoggingTimer(MetricKey timerName, long timeInMillis) { in createBundleForLoggingTimer()
27 Bundle bundle = new Bundle(); in createBundleForLoggingTimer()
33 public static Bundle createBundleForLoggingSetupMetric(ScreenKey screenKey, SetupMetric metric) { in createBundleForLoggingSetupMetric()
34 Bundle bundle = new Bundle(); in createBundleForLoggingSetupMetric()
/external/robolectric/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowAccountManager.java20 import android.os.Bundle;
58 private List<Bundle> addAccountOptionsList = new ArrayList<>();
118 protected boolean addAccountExplicitly(Account account, String password, Bundle userdata) { in addAccountExplicitly()
187 protected AccountManagerFuture<Bundle> removeAccount(
190 AccountManagerCallback<Bundle> callback,
196 new BaseRoboAccountManagerFuture<Bundle>(callback, handler) {
198 public Bundle doWork() {
199 Bundle result = new Bundle();
375 protected AccountManagerFuture<Bundle> startAddAccountSession(
379 Bundle options,
[all …]
/external/setupcompat/main/java/com/google/android/setupcompat/portal/
DPortalResultHelper.java19 import android.os.Bundle;
26 public static boolean isSuccess(Bundle bundle) { in isSuccess()
30 public static String getErrorMessage(Bundle bundle) { in getErrorMessage()
34 public static Bundle createSuccessBundle() { in createSuccessBundle()
35 Bundle resultBundle = new Bundle(); in createSuccessBundle()
40 public static Bundle createFailureBundle(String errorMessage) { in createFailureBundle()
41 Bundle resultBundle = new Bundle(); in createFailureBundle()
/external/deqp/android/package/src/com/drawelements/deqp/platformutil/
DDeqpPlatformCapabilityQueryInstrumentation.java27 import android.os.Bundle;
45 public void onCreate (Bundle arguments) { in onCreate()
58 Bundle resultInfo; in onStart()
67 resultInfo = new Bundle(); in onStart()
76 resultInfo = new Bundle(); in onStart()
84 private Bundle doRenderConfigSupportedQuery () in doRenderConfigSupportedQuery()
93 final Bundle resultInfo = new Bundle(); in doRenderConfigSupportedQuery()
99 final Bundle resultInfo = new Bundle(); in doRenderConfigSupportedQuery()
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/common/src/main/java/com/google/android/exoplayer2/util/
DBundleableUtil.java21 import android.os.Bundle;
38 public static Bundle toNullableBundle(@Nullable Bundleable bundleable) { in toNullableBundle()
48 Bundleable.Creator<T> creator, @Nullable Bundle bundle) { in fromNullableBundle()
57 Bundleable.Creator<T> creator, @Nullable Bundle bundle, T defaultValue) { in fromNullableBundle()
62 public static <T extends Bundleable> ImmutableList<Bundle> toBundleList(List<T> bundleableList) { in toBundleList()
63 ImmutableList.Builder<Bundle> builder = ImmutableList.builder(); in toBundleList()
73 Bundleable.Creator<T> creator, List<Bundle> bundleList) { in fromBundleList()
76 Bundle bundle = checkNotNull(bundleList.get(i)); // Fail fast during parsing. in fromBundleList()
88 Bundleable.Creator<T> creator, @Nullable List<Bundle> bundleList, List<T> defaultValue) { in fromBundleNullableList()
98 @Nullable SparseArray<Bundle> bundleSparseArray, in fromBundleNullableSparseArray()
[all …]
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/common/src/main/java/com/google/android/exoplayer2/util/
DBundleableUtil.java21 import android.os.Bundle;
38 public static Bundle toNullableBundle(@Nullable Bundleable bundleable) { in toNullableBundle()
48 Bundleable.Creator<T> creator, @Nullable Bundle bundle) { in fromNullableBundle()
57 Bundleable.Creator<T> creator, @Nullable Bundle bundle, T defaultValue) { in fromNullableBundle()
62 public static <T extends Bundleable> ImmutableList<Bundle> toBundleList(List<T> bundleableList) { in toBundleList()
63 ImmutableList.Builder<Bundle> builder = ImmutableList.builder(); in toBundleList()
73 Bundleable.Creator<T> creator, List<Bundle> bundleList) { in fromBundleList()
76 Bundle bundle = checkNotNull(bundleList.get(i)); // Fail fast during parsing. in fromBundleList()
88 Bundleable.Creator<T> creator, @Nullable List<Bundle> bundleList, List<T> defaultValue) { in fromBundleNullableList()
98 @Nullable SparseArray<Bundle> bundleSparseArray, in fromBundleNullableSparseArray()
[all …]
/external/robolectric-shadows/shadows/playservices/src/main/java/org/robolectric/shadows/gms/
DShadowGoogleAuthUtil.java6 import android.os.Bundle;
72 Bundle extras) throws IOException, UserRecoverableAuthException, GoogleAuthException { in getToken()
84 Bundle extras) throws IOException, UserRecoverableAuthException, GoogleAuthException { in getToken()
90 String scope, Bundle extras) in getTokenWithNotification()
97 String scope, Bundle extras, Intent callback) in getTokenWithNotification()
105 String scope, Bundle extras, String authority, Bundle syncBundle) in getTokenWithNotification()
113 String scope, Bundle extras, Intent callback) in getTokenWithNotification()
121 String scope, Bundle extras) in getTokenWithNotification()
128 String scope, Bundle extras, String authority, Bundle syncBundle) in getTokenWithNotification()
161 public String getToken(Context context, Account account, String scope, Bundle extras) in getToken()
[all …]
/external/robolectric/shadows/playservices/src/main/java/org/robolectric/shadows/gms/
DShadowGoogleAuthUtil.java6 import android.os.Bundle;
72 Bundle extras) throws IOException, UserRecoverableAuthException, GoogleAuthException { in getToken()
84 Bundle extras) throws IOException, UserRecoverableAuthException, GoogleAuthException { in getToken()
90 String scope, Bundle extras) in getTokenWithNotification()
97 String scope, Bundle extras, Intent callback) in getTokenWithNotification()
105 String scope, Bundle extras, String authority, Bundle syncBundle) in getTokenWithNotification()
113 String scope, Bundle extras, Intent callback) in getTokenWithNotification()
121 String scope, Bundle extras) in getTokenWithNotification()
128 String scope, Bundle extras, String authority, Bundle syncBundle) in getTokenWithNotification()
161 public String getToken(Context context, Account account, String scope, Bundle extras) in getToken()
[all …]
/external/google-java-format/eclipse_plugin/META-INF/
DMANIFEST.MF2 Bundle-ManifestVersion: 2
3 Bundle-Name: google-java-format
4 Bundle-SymbolicName: google-java-format-eclipse-plugin;singleton:=true
5 Bundle-Vendor: Google
6 Bundle-Version: 1.13.0
7 Bundle-RequiredExecutionEnvironment: JavaSE-11
8 Require-Bundle: org.eclipse.jdt.core;bundle-version="3.10.0",
13 Bundle-ClassPath: .,
/external/connectedappssdk/tests/robotests/src/test/java/com/google/android/enterprise/connectedapps/
DTestService.java18 import android.os.Bundle;
34 abstract Bundle getParams(); in getParams()
42 Bundle params, in create()
50 private Bundle responseBundle = new Bundle(Bundler.class.getClassLoader());
57 void setResponseBundle(Bundle responseBundle) { in setResponseBundle()
65 public void prepareBundle(long callId, int blockId, Bundle bundle) {} in prepareBundle()
80 Bundle bundle = new Bundle(Bundler.class.getClassLoader()); in call()
106 public Bundle fetchResponseBundle(long callId, int bundleId) { in fetchResponseBundle()
/external/icu/icu4j/main/classes/collate/
Dmanifest.stub9 Bundle-ManifestVersion: 2
10 Bundle-Name: ICU4J collate
11 Bundle-Description: International Components for Unicode for Java (collate)
12 Bundle-SymbolicName: com.ibm.icu.collate
13 Bundle-Version: @IMPLVERSION@
14 Bundle-Vendor: Unicode, Inc.
15 Bundle-Copyright: @COPYRIGHT@
16 Bundle-RequiredExecutionEnvironment: @EXECENV@
/external/icu/icu4j/main/classes/translit/
Dmanifest.stub9 Bundle-ManifestVersion: 2
10 Bundle-Name: ICU4J transliteration
11 Bundle-Description: International Components for Unicode for Java (transliteration)
12 Bundle-SymbolicName: com.ibm.icu.translit
13 Bundle-Version: @IMPLVERSION@
14 Bundle-Vendor: Unicode, Inc.
15 Bundle-Copyright: @COPYRIGHT@
16 Bundle-RequiredExecutionEnvironment: @EXECENV@
/external/icu/icu4j/main/classes/currdata/
Dmanifest.stub9 Bundle-ManifestVersion: 2
10 Bundle-Name: ICU4J currency data
11 Bundle-Description: International Components for Unicode for Java (currency data)
12 Bundle-SymbolicName: com.ibm.icu.currdata
13 Bundle-Version: @IMPLVERSION@
14 Bundle-Vendor: Unicode, Inc.
15 Bundle-Copyright: @COPYRIGHT@
16 Bundle-RequiredExecutionEnvironment: @EXECENV@
/external/icu/icu4j/main/classes/langdata/
Dmanifest.stub9 Bundle-ManifestVersion: 2
10 Bundle-Name: ICU4J language data
11 Bundle-Description: International Components for Unicode for Java (language data)
12 Bundle-SymbolicName: com.ibm.icu.langdata
13 Bundle-Version: @IMPLVERSION@
14 Bundle-Vendor: Unicode, Inc.
15 Bundle-Copyright: @COPYRIGHT@
16 Bundle-RequiredExecutionEnvironment: @EXECENV@
/external/icu/icu4j/main/classes/regiondata/
Dmanifest.stub9 Bundle-ManifestVersion: 2
10 Bundle-Name: ICU4J region data
11 Bundle-Description: International Components for Unicode for Java (region data)
12 Bundle-SymbolicName: com.ibm.icu.regiondata
13 Bundle-Version: @IMPLVERSION@
14 Bundle-Vendor: Unicode, Inc.
15 Bundle-Copyright: @COPYRIGHT@
16 Bundle-RequiredExecutionEnvironment: @EXECENV@
/external/icu/icu4j/tools/build/
Dmanifest-utilities.stub9 Bundle-ManifestVersion: 2
10 Bundle-Name: ICU4JUtilities
11 Bundle-Description: International Components for Unicode for Java Utilities
12 Bundle-SymbolicName: com.ibm.icu.utilities
13 Bundle-Version: @IMPLVERSION@
14 Bundle-Vendor: Unicode, Inc.
15 Bundle-Copyright: @COPYRIGHT@
16 Bundle-RequiredExecutionEnvironment: @EXECENV@
/external/icu/icu4j/main/classes/core/
Dmanifest.stub9 Bundle-ManifestVersion: 2
10 Bundle-Name: ICU4J core
11 Bundle-Description: International Components for Unicode for Java (core)
12 Bundle-SymbolicName: com.ibm.icu.core
13 Bundle-Version: @IMPLVERSION@
14 Bundle-Vendor: Unicode, Inc.
15 Bundle-Copyright: @COPYRIGHT@
16 Bundle-RequiredExecutionEnvironment: @EXECENV@
/external/setupcompat/main/aidl/com/google/android/setupcompat/portal/
DIPortalProgressCallback.aidl19 import android.os.Bundle;
31 Bundle setProgressCount(int completed, int failed, int total) = 0; in setProgressCount()
36 Bundle setProgressPercentage(int percentage) = 1; in setProgressPercentage()
41 Bundle setSummary(String summary) = 2;
50 Bundle setPendingReason(int reasonResId, int quantity, in int[] formatArgs, int reason) = 3; in setPendingReason()
60 Bundle setComplete(int resId, int quantity, in int[] formatArgs) = 4; in setComplete()
71 Bundle setFailure(int resId, int quantity, in int[] formatArgs) = 5; in setFailure()
/external/icu/icu4j/main/classes/charset/
Dmanifest.stub9 Bundle-ManifestVersion: 2
10 Bundle-Name: ICU4J charset
11 Bundle-Description: International Components for Unicode for Java (charset)
12 Bundle-SymbolicName: com.ibm.icu.charset
13 Bundle-Version: @IMPLVERSION@
14 Bundle-Vendor: Unicode, Inc.
15 Bundle-Copyright: @COPYRIGHT@
16 Bundle-RequiredExecutionEnvironment: @EXECENV@
/external/icu/icu4j/main/classes/localespi/
Dmanifest.stub9 Bundle-ManifestVersion: 2
10 Bundle-Name: ICU4J JDK locale service provider
11 Bundle-Description: International Components for Unicode for Java (JDK locale service provider)
12 Bundle-SymbolicName: com.ibm.icu.localespi
13 Bundle-Version: @IMPLVERSION@
14 Bundle-Vendor: Unicode, Inc.
15 Bundle-Copyright: @COPYRIGHT@
16 Bundle-RequiredExecutionEnvironment: @EXECENV@
/external/setupcompat/main/java/com/google/android/setupcompat/logging/
DSetupMetric.java21 import android.os.Bundle;
65 Bundle bundle = new Bundle(); in ofImpression()
80 Bundle bundle = new Bundle(); in ofOptIn()
95 Bundle bundle = new Bundle(); in ofWaitingStart()
110 Bundle bundle = new Bundle(); in ofWaitingEnd()
125 Bundle bundle = new Bundle(); in ofError()
133 public static Bundle toBundle(@NonNull SetupMetric setupMetric) { in toBundle()
135 Bundle bundle = new Bundle(); in toBundle()
149 public static SetupMetric fromBundle(@NonNull Bundle bundle) { in fromBundle()

12345678910>>...39