Searched refs:opts (Results 26 - 50 of 58) sorted by relevance

123

/frameworks/base/tests/DpiTest/src/com/google/android/test/dpi/
H A DDpiTestActivity.java219 BitmapFactory.Options opts = new BitmapFactory.Options();
220 opts.inScaled = false;
221 bitmap = BitmapFactory.decodeResource(getResources(), id, opts);
/frameworks/base/core/java/android/content/
H A DContentProviderClient.java379 @NonNull String mimeType, @Nullable Bundle opts)
381 return openTypedAssetFileDescriptor(uri, mimeType, opts, null);
386 @NonNull String mimeType, @Nullable Bundle opts, @Nullable CancellationSignal signal)
400 mPackageName, uri, mimeType, opts, remoteSignal);
378 openTypedAssetFileDescriptor(@onNull Uri uri, @NonNull String mimeType, @Nullable Bundle opts) argument
385 openTypedAssetFileDescriptor(@onNull Uri uri, @NonNull String mimeType, @Nullable Bundle opts, @Nullable CancellationSignal signal) argument
H A DContentProvider.java413 Bundle opts, ICancellationSignal cancellationSignal) throws FileNotFoundException {
420 uri, mimeType, opts, CancellationSignal.fromTransport(cancellationSignal));
1533 * @param opts Additional options from the client. The definitions of
1551 @NonNull String mimeTypeFilter, @Nullable Bundle opts) throws FileNotFoundException {
1594 * @param opts Additional options from the client. The definitions of
1618 @NonNull String mimeTypeFilter, @Nullable Bundle opts,
1620 return openTypedAssetFile(uri, mimeTypeFilter, opts);
1638 * @param opts Options supplied by caller.
1642 @NonNull String mimeType, @Nullable Bundle opts, @Nullable T args);
1654 * @param opts Option
412 openTypedAssetFile(String callingPkg, Uri uri, String mimeType, Bundle opts, ICancellationSignal cancellationSignal) argument
1550 openTypedAssetFile(@onNull Uri uri, @NonNull String mimeTypeFilter, @Nullable Bundle opts) argument
1617 openTypedAssetFile(@onNull Uri uri, @NonNull String mimeTypeFilter, @Nullable Bundle opts, @Nullable CancellationSignal signal) argument
1641 writeDataToPipe(@onNull ParcelFileDescriptor output, @NonNull Uri uri, @NonNull String mimeType, @Nullable Bundle opts, @Nullable T args) argument
1662 openPipeHelper(final @NonNull Uri uri, final @NonNull String mimeType, final @Nullable Bundle opts, final @Nullable T args, final @NonNull PipeDataWriter<T> func) argument
[all...]
H A DIContentProvider.java71 Bundle opts, ICancellationSignal signal) throws RemoteException, FileNotFoundException;
70 openTypedAssetFile(String callingPkg, Uri url, String mimeType, Bundle opts, ICancellationSignal signal) argument
H A DContentProviderNative.java308 Bundle opts = data.readBundle();
313 fd = openTypedAssetFile(callingPkg, url, mimeType, opts, signal);
678 Bundle opts, ICancellationSignal signal) throws RemoteException, FileNotFoundException {
687 data.writeBundle(opts);
677 openTypedAssetFile(String callingPkg, Uri url, String mimeType, Bundle opts, ICancellationSignal signal) argument
H A DContentResolver.java1037 * @param opts Additional provider-dependent options.
1047 @NonNull String mimeType, @Nullable Bundle opts) throws FileNotFoundException {
1048 return openTypedAssetFileDescriptor(uri, mimeType, opts, null);
1070 * @param opts Additional provider-dependent options.
1083 @NonNull String mimeType, @Nullable Bundle opts,
1105 mPackageName, uri, mimeType, opts, remoteCancellationSignal);
1120 mPackageName, uri, mimeType, opts, remoteCancellationSignal);
1046 openTypedAssetFileDescriptor(@onNull Uri uri, @NonNull String mimeType, @Nullable Bundle opts) argument
1082 openTypedAssetFileDescriptor(@onNull Uri uri, @NonNull String mimeType, @Nullable Bundle opts, @Nullable CancellationSignal cancellationSignal) argument
/frameworks/base/core/java/android/content/pm/
H A DLauncherApps.java215 * @param opts Options to pass to startActivity
218 Bundle opts) {
223 mService.startActivityAsUser(component, sourceBounds, opts, user);
236 * @param opts Options to pass to startActivity
239 Rect sourceBounds, Bundle opts) {
241 mService.showAppDetailsAsUser(component, sourceBounds, opts, user);
217 startMainActivity(ComponentName component, UserHandle user, Rect sourceBounds, Bundle opts) argument
238 startAppDetailsActivity(ComponentName component, UserHandle user, Rect sourceBounds, Bundle opts) argument
/frameworks/base/core/java/com/android/internal/widget/
H A DDecorToolbar.java76 void setDisplayOptions(int opts); argument
H A DToolbarWidgetWrapper.java201 int opts = ActionBar.DISPLAY_SHOW_TITLE | ActionBar.DISPLAY_SHOW_HOME |
204 opts |= ActionBar.DISPLAY_HOME_AS_UP;
207 return opts;
/frameworks/base/services/core/java/com/android/server/pm/
H A DLauncherAppsService.java265 Bundle opts, UserHandle user) throws RemoteException {
300 mContext.startActivityAsUser(launchIntent, opts, user);
313 Bundle opts, UserHandle user) throws RemoteException {
328 mContext.startActivityAsUser(intent, opts, user);
264 startActivityAsUser(ComponentName component, Rect sourceBounds, Bundle opts, UserHandle user) argument
312 showAppDetailsAsUser(ComponentName component, Rect sourceBounds, Bundle opts, UserHandle user) argument
/frameworks/base/test-runner/src/android/test/mock/
H A DMockIContentProvider.java110 Bundle opts, ICancellationSignal signal) throws RemoteException, FileNotFoundException {
109 openTypedAssetFile(String callingPackage, Uri url, String mimeType, Bundle opts, ICancellationSignal signal) argument
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DDecorToolbar.java70 void setDisplayOptions(int opts); argument
H A DToolbarWidgetWrapper.java231 int opts = ActionBar.DISPLAY_SHOW_TITLE | ActionBar.DISPLAY_SHOW_HOME |
234 opts |= ActionBar.DISPLAY_HOME_AS_UP;
236 return opts;
/frameworks/base/core/java/android/service/trust/
H A DTrustAgentService.java133 ConfigurationData(List<PersistableBundle> opts, IBinder t) { argument
134 options = opts;
/frameworks/base/graphics/java/android/graphics/drawable/
H A DDrawable.java1057 InputStream is, String srcName, BitmapFactory.Options opts) {
1077 if (opts == null) opts = new BitmapFactory.Options();
1078 opts.inScreenDensity = res != null
1080 Bitmap bm = BitmapFactory.decodeResourceStream(res, value, is, pad, opts);
1056 createFromResourceStream(Resources res, TypedValue value, InputStream is, String srcName, BitmapFactory.Options opts) argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DDessertCaseView.java166 final BitmapFactory.Options opts = new BitmapFactory.Options();
168 opts.inSampleSize = 2;
170 opts.inMutable = true;
174 opts.inBitmap = loaded;
175 loaded = BitmapFactory.decodeResource(res, resid, opts);
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/
H A DRecentsActivity.java102 public FinishRecentsRunnable(Intent launchIntent, ActivityOptions opts) { argument
104 mLaunchOpts = opts;
654 Bundle opts = new Bundle();
655 opts.putInt(AppWidgetManager.OPTION_APPWIDGET_HOST_CATEGORY,
657 mSearchWidgetHostView.updateAppWidgetOptions(opts);
/frameworks/base/services/core/java/com/android/server/am/
H A DPendingIntentRecord.java258 Bundle opts = new Bundle(key.options);
259 opts.putAll(options);
260 options = opts;
H A DTaskRecord.java697 ActivityOptions opts = r.takeOptionsLocked();
698 if (opts != null) {
699 ret.updateOptionsLocked(opts);
/frameworks/base/packages/SystemUI/src/com/android/systemui/assist/
H A DAssistManager.java206 final ActivityOptions opts = ActivityOptions.makeCustomAnimation(mContext,
212 mContext.startActivityAsUser(intent, opts.toBundle(),
/frameworks/opt/bitmap/src/com/android/bitmap/drawable/
H A DBasicBitmapDrawable.java332 final DecodeOptions opts = new DecodeOptions(bufferW, bufferH, getDecodeHorizontalCenter(),
334 mTask = new DecodeTask(mCurrKey, opts, factory, this, mCache);
H A DStyledCornersBitmapDrawable.java84 boolean limitDensity, ExtendedOptions opts, float cornerRoundRadius,
86 super(res, cache, limitDensity, opts);
83 StyledCornersBitmapDrawable(Resources res, BitmapCache cache, boolean limitDensity, ExtendedOptions opts, float cornerRoundRadius, float cornerFlapSide) argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DRecentsView.java535 ActivityOptions opts = null;
561 opts = ActivityOptions.makeCustomAnimation(sourceView.getContext(),
566 opts = ActivityOptions.makeThumbnailAspectScaleUpAnimation(sourceView,
573 final ActivityOptions launchOpts = opts;
/frameworks/minikin/tools/
H A Dmk_hyb_file.py549 opts, args = getopt.getopt(sys.argv[1:], 'v')
553 for o, _ in opts:
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DInboundSmsHandler.java839 Bundle opts, BroadcastReceiver resultReceiver, UserHandle user) {
868 mContext.sendOrderedBroadcastAsUser(intent, targetUser, permission, appOp, opts,
873 mContext.sendOrderedBroadcastAsUser(intent, user, permission, appOp, opts,
838 dispatchIntent(Intent intent, String permission, int appOp, Bundle opts, BroadcastReceiver resultReceiver, UserHandle user) argument

Completed in 3128 milliseconds

123