Searched refs:options (Results 51 - 75 of 444) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/widget/
H A DBaseAdapter.java96 public void setAutofillOptions(@Nullable CharSequence... options) { argument
97 mAutofillOptions = options;
/frameworks/base/services/tests/servicestests/src/com/android/server/am/
H A DSafeActivityOptionsTest.java42 final SafeActivityOptions options = new SafeActivityOptions(opts1);
43 final ActivityOptions result = options.mergeActivityOptions(opts1, opts2);
/frameworks/base/tools/aapt2/link/
H A DManifestFixer.h74 explicit ManifestFixer(const ManifestFixerOptions& options) : options_(options) { argument
/frameworks/base/tools/aapt2/split/
H A DTableSplitter.h52 const TableSplitterOptions& options)
53 : split_constraints_(splits), options_(options) {
51 TableSplitter(const std::vector<SplitConstraints>& splits, const TableSplitterOptions& options) argument
/frameworks/support/media/src/main/java/androidx/media/
H A DMediaBrowser2.java247 Bundle options = new Bundle();
248 options.putBundle(ARGUMENT_EXTRAS, extras);
249 options.putBoolean(MEDIA_BROWSER2_SUBSCRIBE, true);
250 browser.subscribe(parentId, options, callback);
305 Bundle options = MediaUtils2.createBundle(extras);
306 options.putInt(MediaBrowserCompat.EXTRA_PAGE, page);
307 options.putInt(MediaBrowserCompat.EXTRA_PAGE_SIZE, pageSize);
308 browser.subscribe(parentId, options, new GetChildrenCallback(parentId, page, pageSize));
396 Bundle options = MediaUtils2.createBundle(extras);
397 options
496 onError(String parentId, Bundle options) argument
506 onChildrenLoaded(final String parentId, List<MediaItem> children, final Bundle options) argument
548 onError(String parentId, Bundle options) argument
558 onChildrenLoaded(final String parentId, List<MediaItem> children, Bundle options) argument
[all...]
/frameworks/base/telephony/java/com/android/ims/internal/uce/uceservice/
H A DIUceService.aidl21 import com.android.ims.internal.uce.options.IOptionsListener;
23 import com.android.ims.internal.uce.options.IOptionsService;
60 * Creates a options service for Capability Discovery.
121 * Query the UCE Service for options service object.
/frameworks/base/tools/aapt2/
H A DDebug.h36 static void PrintTable(const ResourceTable& table, const DebugPrintTableOptions& options,
/frameworks/rs/tests/lldb/java/SingleSource/src/rs/
H A Drs_single_source.rs64 rs_script_call_t options = {
69 rsForEachWithOptions(void_kernel_1, &options);
/frameworks/base/graphics/java/android/graphics/
H A DLargeBitmap.java52 public Bitmap decodeRegion(Rect rect, BitmapFactory.Options options) { argument
57 rect.right - rect.left, rect.bottom - rect.top, options);
114 BitmapFactory.Options options);
112 nativeDecodeRegion(long nativeLbm, int start_x, int start_y, int width, int height, BitmapFactory.Options options) argument
/frameworks/rs/tests/java_api/HelloComputeNDK/src/com/example/android/rs/hellocomputendk/
H A DHelloComputeNDK.java57 final BitmapFactory.Options options = new BitmapFactory.Options();
58 options.inPreferredConfig = Bitmap.Config.ARGB_8888;
59 return BitmapFactory.decodeResource(getResources(), resource, options);
/frameworks/rs/tests/lldb/java/SingleSource/src/com/android/rs/singlesource/
H A DMainActivity.java73 Script.LaunchOptions options = new Script.LaunchOptions();
74 options.setX(0, 4);
75 mScript.forEach_void_kernel_1(options);
/frameworks/support/app-toolkit/buildSrc/src/main/kotlin/androidx/build/doclava/
H A DDoclavaTask.kt110 options.doclet = "com.google.doclava.Doclava"
111 options.encoding("UTF-8")
112 options.quiet()
124 * {@link #options JavadocOptions}.
135 * {@link #options JavadocOptions}.
141 options.docletpath = docletpath.toList()
148 private fun configureDoclava() = (options as CoreJavadocOptions).apply {
187 (options as CoreJavadocOptions).configure()
/frameworks/support/buildSrc/src/main/kotlin/androidx/build/doclava/
H A DDoclavaTask.kt110 options.doclet = "com.google.doclava.Doclava"
111 options.encoding("UTF-8")
112 options.quiet()
124 * {@link #options JavadocOptions}.
135 * {@link #options JavadocOptions}.
141 options.docletpath = docletpath.toList()
148 private fun configureDoclava() = (options as CoreJavadocOptions).apply {
187 (options as CoreJavadocOptions).configure()
/frameworks/base/core/jni/android/graphics/
H A DBitmapFactory.cpp182 jobject padding, jobject options) {
183 // Set default values for the options parameters.
194 // Update with options supplied by the client.
195 if (options != NULL) {
196 sampleSize = env->GetIntField(options, gOptions_sampleSizeFieldID);
198 // options object, which is strange.
203 if (env->GetBooleanField(options, gOptions_justBoundsFieldID)) {
208 env->SetIntField(options, gOptions_widthFieldID, -1);
209 env->SetIntField(options, gOptions_heightFieldID, -1);
210 env->SetObjectField(options, gOptions_mimeFieldI
181 doDecode(JNIEnv* env, std::unique_ptr<SkStreamRewindable> stream, jobject padding, jobject options) argument
517 nativeDecodeStream(JNIEnv* env, jobject clazz, jobject is, jbyteArray storage, jobject padding, jobject options) argument
581 nativeDecodeAsset(JNIEnv* env, jobject clazz, jlong native_asset, jobject padding, jobject options) argument
590 nativeDecodeByteArray(JNIEnv* env, jobject, jbyteArray byteArray, jint offset, jint length, jobject options) argument
[all...]
/frameworks/compile/mclinker/lib/LD/
H A DDiagnosticInfos.cpp124 if (m_Config.options().isMulDefs()) {
136 if (m_Config.options().isNoUndefined())
142 if (m_Config.options().isNoUndefined())
154 if (!m_Config.options().getPrintGCSections())
163 if (m_Config.options().isFatalWarnings()) {
/frameworks/support/leanback/src/androidTest/java/androidx/leanback/app/
H A DSingleFragmentTestBase.java94 public SingleFragmentTestActivity launchAndWaitActivity(Class fragmentClass, Options options, argument
96 return launchAndWaitActivity(fragmentClass.getName(), options, waitTimeMs);
100 Options options, long waitTimeMs) {
103 if (options != null) {
104 options.collect(intent);
99 launchAndWaitActivity(String firstFragmentName, Options options, long waitTimeMs) argument
H A DSingleSupportFragmentTestBase.java91 public SingleSupportFragmentTestActivity launchAndWaitActivity(Class fragmentClass, Options options, argument
93 return launchAndWaitActivity(fragmentClass.getName(), options, waitTimeMs);
97 Options options, long waitTimeMs) {
100 if (options != null) {
101 options.collect(intent);
96 launchAndWaitActivity(String firstFragmentName, Options options, long waitTimeMs) argument
/frameworks/support/media/api26/androidx/media/
H A DMediaBrowserServiceCompatApi26.java50 public static void notifyChildrenChanged(Object serviceObj, String parentId, Bundle options) { argument
51 ((MediaBrowserService) serviceObj).notifyChildrenChanged(parentId, options);
59 void onLoadChildren(String parentId, ResultWrapper result, Bundle options); argument
104 Bundle options) {
106 parentId, new ResultWrapper(result), options);
103 onLoadChildren(String parentId, Result<List<MediaBrowser.MediaItem>> result, Bundle options) argument
/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageDexOptimizer.java133 PackageDexUsage.PackageUseInfo packageUseInfo, DexoptOptions options) {
145 packageStats, packageUseInfo, options);
159 PackageDexUsage.PackageUseInfo packageUseInfo, DexoptOptions options) {
208 if (options.getSplitName() != null) {
211 if (!options.getSplitName().equals(new File(path).getName())) {
219 if (options.isDexoptInstallWithDexMetadata()) {
225 final boolean isUsedByOtherApps = options.isDexoptAsSharedLibrary()
228 options.getCompilerFilter(), isUsedByOtherApps);
229 final boolean profileUpdated = options.isCheckForProfileUpdates() &&
234 final int dexoptFlags = getDexFlags(pkg, compilerFilter, options);
131 performDexOpt(PackageParser.Package pkg, String[] sharedLibraries, String[] instructionSets, CompilerStats.PackageStats packageStats, PackageDexUsage.PackageUseInfo packageUseInfo, DexoptOptions options) argument
157 performDexOptLI(PackageParser.Package pkg, String[] sharedLibraries, String[] targetInstructionSets, CompilerStats.PackageStats packageStats, PackageDexUsage.PackageUseInfo packageUseInfo, DexoptOptions options) argument
319 dexOptSecondaryDexPath(ApplicationInfo info, String path, PackageDexUsage.DexUseInfo dexUseInfo, DexoptOptions options) argument
368 dexOptSecondaryDexPathLI(ApplicationInfo info, String path, PackageDexUsage.DexUseInfo dexUseInfo, DexoptOptions options) argument
520 getDexFlags(PackageParser.Package pkg, String compilerFilter, DexoptOptions options) argument
529 getDexFlags(ApplicationInfo info, String compilerFilter, DexoptOptions options) argument
[all...]
/frameworks/base/tests/JankBench/scripts/
H A Dcollect.py199 usage = 'Usage: %prog [options]'
205 options, categories = parser.parse_args(argv[1:])
206 return options
209 options = parse_options(sys.argv)
210 if options.device != None:
211 score_device(options.device, DEVICES[options.device], options.pull, options.verbose)
217 result = score_device(name, serial, options
[all...]
/frameworks/base/media/java/android/media/browse/
H A DMediaBrowser.java381 * @param options The bundle of service-specific arguments to send to the media
386 public void subscribe(@NonNull String parentId, @NonNull Bundle options, argument
388 if (options == null) {
389 throw new IllegalArgumentException("options cannot be null");
391 subscribeInternal(parentId, new Bundle(options), callback);
483 private void subscribeInternal(String parentId, Bundle options, SubscriptionCallback callback) { argument
497 sub.putCallback(mContext, options, callback);
503 if (options == null) {
506 mServiceBinder.addSubscription(parentId, callback.mToken, options,
656 final String parentId, final ParceledListSlice list, final Bundle options) {
655 onLoadChildren(final IMediaBrowserServiceCallbacks callback, final String parentId, final ParceledListSlice list, final Bundle options) argument
914 onChildrenLoaded(@onNull String parentId, @NonNull List<MediaItem> children, @NonNull Bundle options) argument
943 onError(@onNull String parentId, @NonNull Bundle options) argument
1115 onLoadChildrenWithOptions(String parentId, ParceledListSlice list, final Bundle options) argument
1145 getCallback(Context context, Bundle options) argument
1157 putCallback(Context context, Bundle options, SubscriptionCallback callback) argument
[all...]
/frameworks/base/core/java/android/view/textclassifier/
H A DTextClassifier.java219 @Nullable TextSelection.Options options) {
220 if (options == null) {
223 } else if (options.getRequest() != null) {
224 return suggestSelection(options.getRequest());
228 .setDefaultLocales(options.getDefaultLocales())
298 @Nullable TextClassification.Options options) {
299 if (options == null) {
302 } else if (options.getRequest() != null) {
303 return classifyText(options.getRequest());
306 .setDefaultLocales(options
215 suggestSelection( @onNull CharSequence text, @IntRange(from = 0) int selectionStartIndex, @IntRange(from = 0) int selectionEndIndex, @Nullable TextSelection.Options options) argument
294 classifyText( @onNull CharSequence text, @IntRange(from = 0) int startIndex, @IntRange(from = 0) int endIndex, @Nullable TextClassification.Options options) argument
335 generateLinks( @onNull CharSequence text, @Nullable TextLinks.Options options) argument
[all...]
/frameworks/base/services/tests/servicestests/src/com/android/server/accounts/
H A DTestAccountType1Authenticator.java65 Bundle options) throws NetworkErrorException {
71 if (options != null) {
72 accountName = options.getString(AccountManagerServiceTestFixtures.KEY_ACCOUNT_NAME);
82 result.putParcelable(AccountManagerServiceTestFixtures.KEY_OPTIONS_BUNDLE, options);
108 Bundle options) throws NetworkErrorException {
148 Bundle options) throws NetworkErrorException {
154 long expiryMillis = (options == null)
155 ? 0 : options.getLong(AccountManagerServiceTestFixtures.KEY_TOKEN_EXPIRY);
203 Bundle options) throws NetworkErrorException {
265 Bundle options) throw
60 addAccount( AccountAuthenticatorResponse response, String accountType, String authTokenType, String[] requiredFeatures, Bundle options) argument
105 confirmCredentials( AccountAuthenticatorResponse response, Account account, Bundle options) argument
144 getAuthToken( AccountAuthenticatorResponse response, Account account, String authTokenType, Bundle options) argument
199 updateCredentials( AccountAuthenticatorResponse response, Account account, String authTokenType, Bundle options) argument
260 startAddAccountSession( AccountAuthenticatorResponse response, String accountType, String authTokenType, String[] requiredFeatures, Bundle options) argument
316 startUpdateCredentialsSession( AccountAuthenticatorResponse response, Account account, String authTokenType, Bundle options) argument
460 fillResultWithError(Bundle result, Bundle options) argument
[all...]
/frameworks/av/cmds/stagefright/
H A DSineSource.h21 MediaBufferBase **out, const ReadOptions *options = NULL);
/frameworks/av/include/media/stagefright/
H A DCallbackMediaSource.h36 MediaBufferBase **buffer, const ReadOptions *options = NULL);

Completed in 677 milliseconds

1234567891011>>