HomeSort by relevance Sort by last modified time
    Searched defs:show (Results 1 - 25 of 1082) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /build/tools/droiddoc/templates-pdk/
sdkpage.cs 210 $("#next-steps").show(); method
  /external/curl/tests/
keywords.pl 97 sub show { subroutine
132 show($t{$t});
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-elfvers/
vers29.c 2 void show() function
  /external/valgrind/VEX/test/
fpgames.s 11 .globl show
12 .type show,@function
13 show: label
74 .size show,.Lfe1-show
89 call show
96 call show
  /external/zlib/src/
configure 135 show() function
164 show $cc -c $test.c
335 show $*
342 show $*
354 show $*
414 show "$NM $test.o | grep _hello"
743 # show the results in the log
  /external/javassist/sample/evolve/
WebPage.java 8 * show() on the created object.
12 public void show(OutputStreamWriter out) throws IOException { method in class:WebPage
  /external/javassist/sample/evolve/sample/evolve/
WebPage.java 8 * show() on the created object.
12 public void show(OutputStreamWriter out) throws IOException { method in class:WebPage
  /external/pdfium/fpdfsdk/src/javascript/
console.cpp 28 JS_STATIC_METHOD_ENTRY(show)
61 FX_BOOL console::show(IJS_Context* cc, function in class:console
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/
tkCommonDialog.py 34 def show(self, **options): member in class:Dialog
  /prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/
tkCommonDialog.py 34 def show(self, **options): member in class:Dialog
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
tkCommonDialog.py 34 def show(self, **options): member in class:Dialog
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
tkCommonDialog.py 34 def show(self, **options): member in class:Dialog
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowProgressDialog.java 18 public static ProgressDialog show(Context context, CharSequence title, CharSequence message) { method in class:ShadowProgressDialog
19 return show(context, title, message, false);
23 public static ProgressDialog show(Context context, CharSequence title, CharSequence message, boolean indeterminate) { method in class:ShadowProgressDialog
24 return show(context, title, message, indeterminate, false, null);
28 public static ProgressDialog show(Context context, CharSequence title, CharSequence message, boolean indeterminate, boolean cancelable) { method in class:ShadowProgressDialog
29 return show(context, title, message, indeterminate, cancelable, null);
33 public static ProgressDialog show(Context context, CharSequence title, CharSequence message, boolean indeterminate, boolean cancelable, ProgressDialog.OnCancelListener onCancelListener) { method in class:ShadowProgressDialog
40 progressDialog.show();
  /packages/apps/ContactsCommon/src/com/android/contacts/common/dialog/
ClearFrequentsDialog.java 38 /** Preferred way to show this dialog */
39 public static void show(FragmentManager fragmentManager) { method in class:ClearFrequentsDialog
41 dialog.show(fragmentManager, "clearFrequents");
54 final IndeterminateProgressDialog progressDialog = IndeterminateProgressDialog.show(
  /packages/apps/DeskClock/src/com/android/deskclock/widget/toast/
SnackbarManager.java 32 public static void show(Snackbar snackbar) { method in class:SnackbarManager
34 snackbar.show();
  /packages/apps/Dialer/src/com/android/dialer/calllog/
ClearCallLogDialog.java 44 /** Preferred way to show this dialog */
45 public static void show(FragmentManager fragmentManager) { method in class:ClearCallLogDialog
47 dialog.show(fragmentManager, "deleteCallLog");
57 final ProgressDialog progressDialog = ProgressDialog.show(getActivity(),
84 // to only show up after a certain time (e.g. 150ms)
85 progressDialog.show();