OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:sProgressDialog
(Results
1 - 3
of
3
) sorted by null
/frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
TestsListActivity.java
48
private static ProgressDialog
sProgressDialog
;
55
sProgressDialog
.dismiss();
75
sProgressDialog
= new ProgressDialog(TestsListActivity.this);
76
sProgressDialog
.setCancelable(false);
77
sProgressDialog
.setProgressStyle(ProgressDialog.STYLE_SPINNER);
78
sProgressDialog
.setTitle(R.string.dialog_progress_title);
79
sProgressDialog
.setMessage(getText(R.string.dialog_progress_msg));
89
sProgressDialog
.show();
/frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/ui/
DirListActivity.java
76
/** Initialized lazily before first
sProgressDialog
.show() */
77
private static ProgressDialog
sProgressDialog
;
337
if (
sProgressDialog
== null) {
338
sProgressDialog
= new ProgressDialog(DirListActivity.this);
339
sProgressDialog
.setCancelable(false);
340
sProgressDialog
.setProgressStyle(ProgressDialog.STYLE_SPINNER);
341
sProgressDialog
.setTitle(R.string.dialog_progress_title);
342
sProgressDialog
.setMessage(getText(R.string.dialog_progress_msg));
344
sProgressDialog
.show();
358
if (
sProgressDialog
!= null)
[
all
...]
/packages/apps/Contacts/src/com/android/contacts/activities/
ConfirmAddDetailActivity.java
99
private static WeakReference<ProgressDialog>
sProgressDialog
;
704
sProgressDialog
= new WeakReference<ProgressDialog>(ProgressDialog.show(activityTarget,
788
ProgressDialog dialog = (
sProgressDialog
== null) ? null :
sProgressDialog
.get();
792
sProgressDialog
= null;
[
all
...]
Completed in 187 milliseconds