Searched defs:options (Results 1 - 25 of 124) sorted by last modified time

12345

/frameworks/support/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/frameworks/support/v4/java/android/support/v4/app/
H A DActivityCompat.java40 * Invalidate the activity's options menu, if able.
43 * options menu was controlled primarily by the user's operation of
53 * <p>In Android 3.0+ the Action Bar forces the options menu to be built early
62 * activity state that should cause the options menu to be rebuilt. If the app
66 * If this method returns true the options menu was successfully invalidated.</p>
68 * @param activity Invalidate the options menu of this activity
82 * <p>In Android 4.1+ additional options were introduced to allow for more
90 * @param options Additional options for how the Activity should be started.
91 * May be null if there are no options
96 startActivity(Activity activity, Intent intent, @Nullable Bundle options) argument
124 startActivityForResult(Activity activity, Intent intent, int requestCode, @Nullable Bundle options) argument
[all...]
H A DTaskStackBuilder.java78 int flags, Bundle options);
83 int flags, Bundle options) {
92 int flags, Bundle options) {
103 int flags, Bundle options) {
108 intents, flags, options);
312 * @param options Additional options for how the Activity should be started.
315 public void startActivities(Bundle options) { argument
325 if (!ContextCompat.startActivities(mSourceContext, intents, options)) {
356 * @param options Additiona
77 getPendingIntent(Context context, Intent[] intents, int requestCode, int flags, Bundle options) argument
82 getPendingIntent(Context context, Intent[] intents, int requestCode, int flags, Bundle options) argument
91 getPendingIntent(Context context, Intent[] intents, int requestCode, int flags, Bundle options) argument
102 getPendingIntent(Context context, Intent[] intents, int requestCode, int flags, Bundle options) argument
360 getPendingIntent(int requestCode, int flags, Bundle options) argument
[all...]
/frameworks/support/v4/java/android/support/v4/content/
H A DContextCompat.java97 * @param options Additional options for how the Activity should be started.
102 Bundle options) {
105 ContextCompatJellybean.startActivities(context, intents, options);
101 startActivities(Context context, Intent[] intents, Bundle options) argument
/frameworks/support/v4/jellybean/android/support/v4/app/
H A DActivityCompatJB.java25 public static void startActivity(Context context, Intent intent, Bundle options) { argument
26 context.startActivity(intent, options);
29 public static void startActivityForResult(Activity activity, Intent intent, int requestCode, Bundle options) { argument
30 activity.startActivityForResult(intent, requestCode, options);
H A DTaskStackBuilderJellybean.java27 Intent[] intents, int flags, Bundle options) {
28 return PendingIntent.getActivities(context, requestCode, intents, flags, options);
26 getActivitiesPendingIntent(Context context, int requestCode, Intent[] intents, int flags, Bundle options) argument
/frameworks/support/v4/jellybean/android/support/v4/content/
H A DContextCompatJellybean.java25 public static void startActivities(Context context, Intent[] intents, Bundle options) { argument
26 context.startActivities(intents, options);
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DActionBar.java70 * the left, followed by the activity title. If your activity has an options menu, you can make
423 * Set display options. This changes all display option bits at once. To change
424 * a limited subset of display options, see {@link #setDisplayOptions(int, int)}.
426 * @param options A combination of the bits defined by the DISPLAY_ constants
429 public abstract void setDisplayOptions(@DisplayOptions int options); argument
432 * Set selected display options. Only the options specified by mask will be changed.
440 * @param options A combination of the bits defined by the DISPLAY_ constants
442 * @param mask A bit mask declaring which display options should be changed.
444 public abstract void setDisplayOptions(@DisplayOptions int options, argument
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/internal/app/
H A DToolbarActionBar.java262 public void setDisplayOptions(@DisplayOptions int options) { argument
263 setDisplayOptions(options, 0xffffffff);
267 public void setDisplayOptions(@DisplayOptions int options, @DisplayOptions int mask) { argument
269 mDecorToolbar.setDisplayOptions(options & mask | currentOptions & ~mask);
529 // If the options menu isn't populated yet, do it now
612 // Close the options panel
H A DWindowDecorActionBar.java453 public void setDisplayOptions(int options) { argument
454 if ((options & DISPLAY_HOME_AS_UP) != 0) {
457 mDecorToolbar.setDisplayOptions(options);
460 public void setDisplayOptions(int options, int mask) { argument
465 mDecorToolbar.setDisplayOptions((options & mask) | (current & ~mask));
/frameworks/testing/espresso/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/frameworks/testing/espresso/libs/
H A Dtestrunner-1.1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/apps/ ...
/frameworks/wilhelm/src/android/util/
H A DAacAdtsExtractor.cpp259 MediaBuffer **out, const ReadOptions *options) {
264 if (options && options->getSeekTo(&seekTimeUs, &mode)) {
258 read( MediaBuffer **out, const ReadOptions *options) argument
/frameworks/wilhelm/tests/sandbox/
H A Dengine.c86 SLEngineOption options[2]; local
87 options[0].feature = 0x12345;
88 options[0].data = 0;
91 result = slCreateEngine(&engineObject, 1, options, 0, NULL, NULL);
103 printf("Create an engine and politely request a non-sensical interface with options\n");
105 options[0].feature = SL_ENGINEOPTION_THREADSAFE;
106 options[0].data = (SLuint32) SL_BOOLEAN_TRUE;
107 options[1].feature = SL_ENGINEOPTION_LOSSOFCONTROL;
108 options[1].data = (SLuint32) SL_BOOLEAN_FALSE;
109 result = slCreateEngine(&engineObject, 2, options, numSupportedInterface
[all...]
/frameworks/native/services/inputflinger/
H A DInputDispatcher.cpp536 CancelationOptions options(CancelationOptions::CANCEL_NON_POINTER_EVENTS, reason);
537 synthesizeCancelationEventsForAllConnectionsLocked(options);
543 CancelationOptions options(CancelationOptions::CANCEL_POINTER_EVENTS, reason);
544 synthesizeCancelationEventsForAllConnectionsLocked(options);
546 CancelationOptions options(CancelationOptions::CANCEL_NON_POINTER_EVENTS, reason);
547 synthesizeCancelationEventsForAllConnectionsLocked(options);
706 CancelationOptions options(CancelationOptions::CANCEL_ALL_EVENTS,
708 options.deviceId = entry->deviceId;
709 synthesizeCancelationEventsForAllConnectionsLocked(options);
871 CancelationOptions options(CancelationOption
2180 synthesizeCancelationEventsForAllConnectionsLocked( const CancelationOptions& options) argument
2188 synthesizeCancelationEventsForInputChannelLocked( const sp<InputChannel>& channel, const CancelationOptions& options) argument
2197 synthesizeCancelationEventsForConnectionLocked( const sp<Connection>& connection, const CancelationOptions& options) argument
4257 synthesizeCancelationEvents(nsecs_t currentTime, Vector<EventEntry*>& outEvents, const CancelationOptions& options) argument
4330 shouldCancelKey(const KeyMemento& memento, const CancelationOptions& options) argument
4351 shouldCancelMotion(const MotionMemento& memento, const CancelationOptions& options) argument
[all...]
/frameworks/ex/common/java/com/android/common/
H A DOperationScheduler.java37 /** Tunable parameter options for {@link #getNextTimeMillis}. */
88 * Parse scheduler options supplied in this string form:
98 * The default options: <code>backoff=0+5 max=86400 min=0 period=0</code><br>
102 * @param spec describing some or all scheduler options.
103 * @param options to update with parsed values.
104 * @return the options passed in (for convenience)
107 public static Options parseOptions(String spec, Options options) argument
117 options.backoffFixedMillis = parseSeconds(pieces[0]);
120 options.backoffIncrementalMillis = parseSeconds(pieces[1]);
123 options
151 getNextTimeMillis(Options options) argument
[all...]
/frameworks/compile/mclinker/include/mcld/
H A DLinkerConfig.h26 * options() - the general options
28 * attribute() - the attribute options
72 const GeneralOptions& options() const { return m_Options; } function in class:mcld::LinkerConfig
73 GeneralOptions& options() { return m_Options; } function in class:mcld::LinkerConfig
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardActivityLauncher.java143 Bundle options = new Bundle();
144 options.putInt(AppWidgetManager.OPTION_APPWIDGET_HOST_CATEGORY,
146 pickIntent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_OPTIONS, options);
224 private void startActivityForCurrentUser(final Intent intent, final Bundle options, argument
228 getContext().startActivityAsUser(intent, options, user);
246 options,
H A DKeyguardHostView.java1103 protected void onCreateOptions(Bundle options) { argument
1104 if (options != null) {
1105 int widgetToShow = options.getInt(LockPatternUtils.KEYGUARD_SHOW_APPWIDGET,
H A DKeyguardSimpleHostView.java57 protected void onCreateOptions(Bundle options) { argument
H A DKeyguardViewBase.java478 protected abstract void onCreateOptions(Bundle options); argument
/frameworks/base/packages/Keyguard/test/SampleTrustAgent/src/com/android/trustagent/test/
H A DSampleTrustAgent.java93 public boolean onSetTrustAgentFeaturesEnabled(Bundle options) { argument
94 Log.v(TAG, "Policy options received: " + options.getStringArrayList(KEY_FEATURES));
95 // TODO: Handle options
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/
H A DKeyguardViewMediator.java864 public void doKeyguardTimeout(Bundle options) { argument
866 Message msg = mHandler.obtainMessage(KEYGUARD_TIMEOUT, options);
882 private void doKeyguardLocked(Bundle options) { argument
935 showLocked(options);
996 private void showLocked(Bundle options) { argument
1000 Message msg = mHandler.obtainMessage(SHOW, options);
1229 private void handleShow(Bundle options) { argument
1238 mStatusBarKeyguardViewManager.show(options);
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/misc/
H A DSystemServicesProxy.java281 /** Moves a task to the front with the specified activity options */
523 ActivityOptions options) {
526 mIam.startActivityFromRecents(taskId, options == null ? null : options.toBundle());
522 startActivityFromRecents(Context context, int taskId, String taskName, ActivityOptions options) argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DStatusBarKeyguardViewManager.java96 public void show(Bundle options) { argument

Completed in 731 milliseconds

12345