Searched refs:show (Results 1 - 25 of 190) sorted by path

12345678

/frameworks/av/camera/tests/
H A DProCameraTests.cpp410 ASSERT_EQ(NO_ERROR, mSurfaceControl->show());
435 ASSERT_EQ(NO_ERROR, mDepthSurfaceControl->show());
/frameworks/av/cmds/stagefright/
H A Dcodec.cpp405 CHECK_EQ(control->show(), (status_t)OK);
H A Dsf2.cpp625 CHECK_EQ(control->show(), (status_t)OK);
H A Dstagefright.cpp933 CHECK_EQ(control->show(), (status_t)OK);
H A Dstream.cpp333 CHECK_EQ(control->show(), (status_t)OK);
/frameworks/av/media/libstagefright/tests/
H A DSurfaceMediaSource_test.cpp104 ASSERT_EQ(NO_ERROR, mSurfaceControl->show());
/frameworks/base/core/java/android/app/
H A DActionBar.java101 * e.g. show an arrow to the left indicating the action that will be taken.
201 * @param resId Resource ID of a drawable to show as an icon.
216 * @param icon Drawable to show as an icon.
231 * @param resId Resource ID of a drawable to show as a logo.
246 * @param logo Drawable to show as a logo.
380 * @param showHome true to show home, false otherwise.
394 * @param showHomeAsUp true to show the user that selecting home will return one
625 public abstract void show(); method in class:ActionBar
H A DActivity.java209 * are needed to show the activity to the user. For example, you can register
2538 boolean show = onCreateOptionsMenu(menu);
2539 show |= mFragments.dispatchCreateOptionsMenu(menu, getMenuInflater());
2540 return show;
2902 * can show the context menu). This method will set the
2905 * called when it is time to show the context menu.
2908 * @param view The view that should show a context menu.
2930 * @param view The view to show the context menu for.
3125 md.mDialog.show();
3172 * <p>This can be useful if you know that you will never show
[all...]
H A DActivityThread.java1844 // otherwise, show human-readable format
2199 // the "debug.use-second-display" system property as a substring, then show
3187 private void updateVisibility(ActivityClientRecord r, boolean show) { argument
3190 if (show) {
3215 private void handleStopActivity(IBinder token, boolean show, int configChanges) { argument
3220 performStopActivityInner(r, info, show, true);
3223 TAG, "Finishing stop of " + r + ": show=" + show
3226 updateVisibility(r, show);
3251 private void handleWindowVisibility(IBinder token, boolean show) { argument
[all...]
H A DAlertDialog.java200 * @param view The view to show in the content area of the dialog
926 * {@link Dialog#show()} the dialog. This allows the user to do any extra processing
927 * before displaying the dialog. Use {@link #show()} if you don't have any other processing
947 * {@link Dialog#show()}'s the dialog.
949 public AlertDialog show() { method in class:AlertDialog.Builder
951 dialog.show();
H A DApplicationThreadNative.java86 boolean show = data.readInt() != 0;
88 scheduleStopActivity(b, show, configChanges);
96 boolean show = data.readInt() != 0;
97 scheduleWindowVisibility(b, show);
H A DBackStackRecord.java452 public FragmentTransaction show(Fragment fragment) { method in class:BackStackRecord
H A DDialog.java225 * {@link Activity#showDialog(int)} is used to show this Dialog, that
248 public void show() { method in class:Dialog
430 show();
H A DDialogFragment.java35 * the dialog (deciding when to show, hide, dismiss it) should be done through
64 * happen. This means you should use {@link #show(FragmentManager, String)}
65 * or {@link #show(FragmentTransaction, String)} to add an instance of
105 * show the dialog and receive results from it:
225 public void show(FragmentManager manager, String tag) { method in class:DialogFragment
242 public int show(FragmentTransaction transaction, String tag) { method in class:DialogFragment
419 * used to show an AlertDialog instead of a generic Dialog; when doing so,
490 mDialog.show();
H A DDownloadManager.java402 * This download doesn't show in the UI or in the notifications.
625 * @param show whether the download manager should show a notification for this download.
630 public Request setShowRunningNotification(boolean show) { argument
631 return (show) ? setNotificationVisibility(VISIBILITY_VISIBLE) :
H A DFragment.java259 * create and display a new fragment to show the details in-place (more about
260 * this later), or start a new activity to show the details.</p>
279 * <p>However the screen may be large enough to show both the list of titles
1523 * can show the context menu). This method will set the
1526 * called when it is time to show the context menu.
1529 * @param view The view that should show a context menu.
1776 boolean show = false;
1779 show = true;
1783 show |= mChildFragmentManager.dispatchCreateOptionsMenu(menu, inflater);
1786 return show;
[all...]
H A DFragmentManager.java1205 if (DEBUG) Log.v(TAG, "show: " + fragment);
1921 boolean show = false;
1928 show = true;
1949 return show;
1953 boolean show = false;
1959 show = true;
1964 return show;
H A DFragmentTransaction.java93 public abstract FragmentTransaction show(Fragment fragment); method in class:FragmentTransaction
203 * Set the full title to show as a bread crumb when this transaction
218 * Set the short title to show as a bread crumb when this transaction
H A DITransientNotification.aidl22 void show();
H A DMediaRouteButton.java205 // Don't show the cheat sheet if we have no description
229 cheatSheet.show();
H A DNotification.java187 * The view to show as the ticker in the status bar when the notification
199 * opportunity to show more detail. The system UI may choose to show this
360 * Lower {@link #priority}, for items that are less important. The UI may choose to show these
374 * show these items larger, or at a different position in notification lists, compared with
539 * {@link #extras} key: An array of CharSequences to show in {@link InboxStyle} expanded
693 * @param when The time to show in the time field. In the System.currentTimeMillis
1220 public Builder setShowWhen(boolean show) { argument
1221 mShowWhen = show;
1228 * Instead of presenting <code>when</code> as a timestamp, the notification will show a
[all...]
H A DPresentation.java71 * So an application can simply watch for these notifications and show or dismiss
75 * that the application should use if it wants to show content on the secondary display.
77 * case the application should show its content locally without using a presentation.
79 * Here's how to use the media router to create and show a presentation on the preferred
89 * presentation.show();
109 * attempted to show a presentation on the main display it might obscure its own content
125 * presentation.show();
129 * manager to enumerate displays and show content on multiple presentation displays
229 * Inherited from {@link Dialog#show}. Will throw
234 public void show() { method in class:Presentation
[all...]
H A DProgressDialog.java92 public static ProgressDialog show(Context context, CharSequence title, method in class:ProgressDialog
94 return show(context, title, message, false);
97 public static ProgressDialog show(Context context, CharSequence title, method in class:ProgressDialog
99 return show(context, title, message, indeterminate, false, null);
102 public static ProgressDialog show(Context context, CharSequence title, method in class:ProgressDialog
104 return show(context, title, message, indeterminate, cancelable, null);
107 public static ProgressDialog show(Context context, CharSequence title, method in class:ProgressDialog
116 dialog.show();
H A DSearchDialog.java70 // The string used for privateImeOptions to identify to the IME that it should not show
149 // but necessary to show the popup window until the window manager supports
210 public boolean show(String initialQuery, boolean selectInitialQuery, method in class:SearchDialog
222 * Does the rest of the work required to show the search dialog. Called by
223 * {@link #show(String, boolean, ComponentName, Bundle)} and
229 // set up the searchable and show the dialog
230 if (!show(componentName, appSearchData)) {
248 private boolean show(ComponentName componentName, Bundle appSearchData) { method in class:SearchDialog
251 Log.d(LOG_TAG, "show(" + componentName + ", "
268 // show th
[all...]
H A DSearchManager.java180 * icon is clicked. The suggestion list should show such a clickable icon beside the entry.
349 * used to show more-recently-used items first.
525 mSearchDialog.show(initialQuery, selectInitialQuery, launchActivity, appSearchData);

Completed in 200 milliseconds

12345678