Searched defs:options (Results 101 - 125 of 149) sorted by relevance

123456

/frameworks/base/tools/layoutlib/bridge/tests/res/testApp/MyApplication/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/frameworks/data-binding/extensions/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/frameworks/data-binding/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/frameworks/data-binding/integration-tests/App With Spaces/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/frameworks/data-binding/integration-tests/IndependentLibrary/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/frameworks/data-binding/integration-tests/MultiModuleTestApp/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/frameworks/data-binding/integration-tests/TestApp/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/frameworks/data-binding/samples/BindingDemo/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/frameworks/av/media/libstagefright/
H A DAwesomePlayer.cpp1803 MediaSource::ReadOptions options; local
1807 options.setSeekTo(
1814 status_t err = mVideoSource->read(&mVideoBuffer, &options);
1815 options.clearSeekTo();
2036 MediaSource::ReadOptions options; local
2038 status_t err = mVideoSource->read(&mVideoBuffer, &options);
H A DOggExtractor.cpp57 MediaBuffer **buffer, const ReadOptions *options = NULL);
256 MediaBuffer **out, const ReadOptions *options) {
261 if (options && options->getSeekTo(&seekTimeUs, &mode)) {
255 read( MediaBuffer **out, const ReadOptions *options) argument
/frameworks/base/core/java/android/accounts/
H A DAccountManager.java123 * prompt for credentials, present options, or ask the user to add an account.
192 * Bundle key used to supply the password directly in options to
226 * The Android package of the caller will be set in the options bundle by the
1231 * @param options Authenticator-specific options for the request,
1262 final Account account, final String authTokenType, final Bundle options,
1267 if (options != null) {
1268 optionsIn.putAll(options);
1395 * @param options Authenticator-specific options fo
1261 getAuthToken( final Account account, final String authTokenType, final Bundle options, final Activity activity, AccountManagerCallback<Bundle> callback, Handler handler) argument
1427 getAuthToken( final Account account, final String authTokenType, final Bundle options, final boolean notifyAuthFailure, AccountManagerCallback<Bundle> callback, Handler handler) argument
1685 confirmCredentials(final Account account, final Bundle options, final Activity activity, final AccountManagerCallback<Bundle> callback, final Handler handler) argument
1699 confirmCredentialsAsUser(final Account account, final Bundle options, final Activity activity, final AccountManagerCallback<Bundle> callback, final Handler handler, UserHandle userHandle) argument
1762 updateCredentials(final Account account, final String authTokenType, final Bundle options, final Activity activity, final AccountManagerCallback<Bundle> callback, final Handler handler) argument
[all...]
/frameworks/base/core/java/android/app/
H A DContextImpl.java669 public void startActivity(Intent intent, Bundle options) { argument
679 (Activity) null, intent, -1, options);
684 public void startActivityAsUser(Intent intent, Bundle options, UserHandle user) { argument
689 null, null, 0, Intent.FLAG_ACTIVITY_NEW_TASK, null, options,
704 public void startActivitiesAsUser(Intent[] intents, Bundle options, UserHandle userHandle) { argument
713 (Activity) null, intents, options, userHandle.getIdentifier());
717 public void startActivities(Intent[] intents, Bundle options) { argument
727 (Activity) null, intents, options);
739 int flagsMask, int flagsValues, int extraFlags, Bundle options)
751 0, flagsMask, flagsValues, options);
738 startIntentSender(IntentSender intent, Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags, Bundle options) argument
809 sendBroadcast(Intent intent, String receiverPermission, Bundle options) argument
869 sendOrderedBroadcast(Intent intent, String receiverPermission, Bundle options, BroadcastReceiver resultReceiver, Handler scheduler, int initialCode, String initialData, Bundle initialExtras) argument
886 sendOrderedBroadcast(Intent intent, String receiverPermission, int appOp, BroadcastReceiver resultReceiver, Handler scheduler, int initialCode, String initialData, Bundle initialExtras, Bundle options) argument
975 sendOrderedBroadcastAsUser(Intent intent, UserHandle user, String receiverPermission, int appOp, Bundle options, BroadcastReceiver resultReceiver, Handler scheduler, int initialCode, String initialData, Bundle initialExtras) argument
[all...]
H A DFragment.java988 * the options menu by receiving a call to {@link #onCreateOptionsMenu}
1079 * @param options Additional options for how the Activity should be started.
1083 public void startActivity(Intent intent, Bundle options) { argument
1087 if (options != null) {
1088 mHost.onStartActivityFromFragment(this, intent, -1, options);
1092 mHost.onStartActivityFromFragment(this, intent, -1, null /*options*/);
1108 public void startActivityForResult(Intent intent, int requestCode, Bundle options) { argument
1112 mHost.onStartActivityFromFragment(this, intent, requestCode, options);
1649 * Initialize the contents of the Activity's standard options men
[all...]
H A DIApplicationThread.java142 void scheduleOnNewActivityOptions(IBinder token, ActivityOptions options) argument
H A DInstrumentation.java1467 * @param options Addition options.
1483 Intent intent, int requestCode, Bundle options) {
1511 requestCode, 0, null, options);
1528 IBinder token, Activity target, Intent[] intents, Bundle options) {
1529 execStartActivitiesAsUser(who, contextThread, token, target, intents, options,
1542 IBinder token, Activity target, Intent[] intents, Bundle options,
1569 token, options, userId);
1606 Intent intent, int requestCode, Bundle options) {
1629 token, target, requestCode, 0, null, options);
1481 execStartActivity( Context who, IBinder contextThread, IBinder token, Activity target, Intent intent, int requestCode, Bundle options) argument
1527 execStartActivities(Context who, IBinder contextThread, IBinder token, Activity target, Intent[] intents, Bundle options) argument
1541 execStartActivitiesAsUser(Context who, IBinder contextThread, IBinder token, Activity target, Intent[] intents, Bundle options, int userId) argument
1604 execStartActivity( Context who, IBinder contextThread, IBinder token, String target, Intent intent, int requestCode, Bundle options) argument
1664 execStartActivity( Context who, IBinder contextThread, IBinder token, Activity target, Intent intent, int requestCode, Bundle options, UserHandle user) argument
1702 execStartActivityAsCaller( Context who, IBinder contextThread, IBinder token, Activity target, Intent intent, int requestCode, Bundle options, boolean ignoreTargetSecurity, int userId) argument
1741 execStartActivityFromAppTask( Context who, IBinder contextThread, IAppTask appTask, Intent intent, Bundle options) argument
[all...]
/frameworks/base/core/java/android/provider/
H A DContacts.java629 * @param options the decoding options, can be set to null
634 int placeholderImageResource, BitmapFactory.Options options) {
636 return loadPlaceholderPhoto(placeholderImageResource, context, options);
640 Bitmap bm = stream != null ? BitmapFactory.decodeStream(stream, null, options) : null;
642 bm = loadPlaceholderPhoto(placeholderImageResource, context, options);
648 BitmapFactory.Options options) {
653 placeholderImageResource, options);
633 loadContactPhoto(Context context, Uri person, int placeholderImageResource, BitmapFactory.Options options) argument
647 loadPlaceholderPhoto(int placeholderImageResource, Context context, BitmapFactory.Options options) argument
H A DMediaStore.java608 Cursor c, Uri baseUri, ContentResolver cr, BitmapFactory.Options options) {
617 pfdInput.getFileDescriptor(), null, options);
664 * @param options this is only used for MINI_KIND when decoding the Bitmap
670 BitmapFactory.Options options, Uri baseUri, boolean isVideo) {
698 bitmap = getMiniThumbFromFile(c, baseUri, cr, options);
730 bitmap = getMiniThumbFromFile(c, baseUri, cr, options);
1079 * @param options this is only used for MINI_KIND when decoding the Bitmap
1084 BitmapFactory.Options options) {
1086 InternalThumbnails.DEFAULT_GROUP_ID, kind, options,
1111 * @param options thi
607 getMiniThumbFromFile( Cursor c, Uri baseUri, ContentResolver cr, BitmapFactory.Options options) argument
669 getThumbnail(ContentResolver cr, long origId, long groupId, int kind, BitmapFactory.Options options, Uri baseUri, boolean isVideo) argument
1083 getThumbnail(ContentResolver cr, long origId, int kind, BitmapFactory.Options options) argument
1115 getThumbnail(ContentResolver cr, long origId, long groupId, int kind, BitmapFactory.Options options) argument
2126 getThumbnail(ContentResolver cr, long origId, int kind, BitmapFactory.Options options) argument
2145 getThumbnail(ContentResolver cr, long origId, long groupId, int kind, BitmapFactory.Options options) argument
[all...]
/frameworks/base/core/java/android/service/voice/
H A DVoiceInteractionSession.java148 VoiceInteractor.PickOptionRequest.Option[] options, Bundle extras) {
151 prompt, options, extras);
475 VoiceInteractor.PickOptionRequest.Option[] options, Bundle extras) {
478 mOptions = options;
501 * Return the set of options the user is picking from, as per
1481 * Request for the user to pick one of N options, corresponding to a
473 PickOptionRequest(String packageName, int uid, IVoiceInteractorCallback callback, VoiceInteractionSession session, VoiceInteractor.Prompt prompt, VoiceInteractor.PickOptionRequest.Option[] options, Bundle extras) argument
/frameworks/base/core/java/com/android/internal/app/
H A DChooserActivity.java647 public boolean start(Activity activity, Bundle options) { argument
652 public boolean startAsCaller(Activity activity, Bundle options, int userId) { argument
659 activity.startActivityAsCaller(intent, options, true, userId);
664 public boolean startAsUser(Activity activity, Bundle options, UserHandle user) { argument
H A DResolverActivity.java364 final Option[] options = new Option[mAdapter.getCount()];
365 for (int i = 0, N = options.length; i < N; i++) {
366 options[i] = optionForChooserTarget(mAdapter.getItem(i), i);
370 new Prompt(getTitle()), options, null);
1026 public boolean start(Activity activity, Bundle options) { argument
1027 activity.startActivity(mResolvedIntent, options);
1032 public boolean startAsCaller(Activity activity, Bundle options, int userId) { argument
1033 activity.startActivityAsCaller(mResolvedIntent, options, false, userId);
1038 public boolean startAsUser(Activity activity, Bundle options, UserHandle user) { argument
1039 activity.startActivityAsUser(mResolvedIntent, options, use
1073 start(Activity activity, Bundle options) argument
1084 startAsCaller(Activity activity, Bundle options, int userId) argument
1094 startAsUser(Activity activity, Bundle options, UserHandle user) argument
1777 PickTargetOptionRequest(@ullable Prompt prompt, Option[] options, @Nullable Bundle extras) argument
[all...]
H A DWindowDecorActionBar.java448 public void setDisplayOptions(int options) { argument
449 if ((options & DISPLAY_HOME_AS_UP) != 0) {
452 mDecorToolbar.setDisplayOptions(options);
455 public void setDisplayOptions(int options, int mask) { argument
460 mDecorToolbar.setDisplayOptions((options & mask) | (current & ~mask));
/frameworks/base/core/java/com/android/internal/widget/
H A DActionBarView.java66 * Display options applied by default
71 * Display options that require re-layout as opposed to a simple invalidate
150 // Only invoke the window callback if the options menu has been initialized.
596 public void setDisplayOptions(int options) { argument
597 final int flagsChanged = mDisplayOptions == -1 ? -1 : options ^ mDisplayOptions;
598 mDisplayOptions = options;
603 final boolean setUp = (options & ActionBar.DISPLAY_HOME_AS_UP) != 0;
616 final boolean logoVis = mLogo != null && (options & ActionBar.DISPLAY_USE_LOGO) != 0;
621 if ((options & ActionBar.DISPLAY_SHOW_TITLE) != 0) {
628 final boolean showHome = (options
[all...]
/frameworks/base/core/jni/
H A DAndroidRuntime.cpp247 // Pre-allocate enough space to hold a fair number of options.
434 * Parse a property containing space-separated options that should be
437 * This will cut up "extraOptsBuf" as we chop it into individual options.
559 * CAUTION: when adding options in here, be careful not to put the
561 * options using mOptions.add() does not copy the buffer, so if the
659 ALOGI("JNI options: '%s'\n", jniOptsBuf);
671 /* enable verbose; standard options are { jni, gc, class } */
691 * JIT related options.
730 // Extra options for boot.art/boot.oat image generation.
761 // Extra options fo
1007 start(const char* className, const Vector<String8>& options, bool zygote) argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/
H A DKeyguardViewMediator.java989 public void doKeyguardTimeout(Bundle options) { argument
991 Message msg = mHandler.obtainMessage(KEYGUARD_TIMEOUT, options);
1030 private void doKeyguardLocked(Bundle options) { argument
1085 showLocked(options);
1161 private void showLocked(Bundle options) { argument
1165 Message msg = mHandler.obtainMessage(SHOW, options);
1404 private void handleShow(Bundle options) { argument
1414 mStatusBarKeyguardViewManager.show(options);
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityRecord.java145 ActivityOptions pendingOptions; // most recently given options
146 ActivityOptions returningOptions; // options that are coming back via convertToTranslucent
441 ActivityContainer container, Bundle options) {
474 if (options != null) {
475 pendingOptions = new ActivityOptions(options);
747 void updateOptionsLocked(Bundle options) { argument
748 if (options != null) {
752 pendingOptions = new ActivityOptions(options);
756 void updateOptionsLocked(ActivityOptions options) { argument
757 if (options !
435 ActivityRecord(ActivityManagerService _service, ProcessRecord _caller, int _launchedFromUid, String _launchedFromPackage, Intent _intent, String _resolvedType, ActivityInfo aInfo, Configuration _configuration, ActivityRecord _resultTo, String _resultWho, int _reqCode, boolean _componentSpecified, boolean _rootVoiceInteraction, ActivityStackSupervisor supervisor, ActivityContainer container, Bundle options) argument
[all...]

Completed in 767 milliseconds

123456