Lines Matching refs:sc
232 final SimContactQueryCookie sc = new SimContactQueryCookie(index - 1, handler, in handleAdnEntry() local
236 sc.contactNum = index - 1; in handleAdnEntry()
237 sc.setTextField(textField); in handleAdnEntry()
240 sc.progressDialog = new ProgressDialog(context); in handleAdnEntry()
241 sc.progressDialog.setTitle(R.string.simContacts_title); in handleAdnEntry()
242 sc.progressDialog.setMessage(context.getText(R.string.simContacts_emptyLoading)); in handleAdnEntry()
243 sc.progressDialog.setIndeterminate(true); in handleAdnEntry()
244 sc.progressDialog.setCancelable(true); in handleAdnEntry()
245 sc.progressDialog.setOnCancelListener(sc); in handleAdnEntry()
246 sc.progressDialog.getWindow().addFlags( in handleAdnEntry()
258 handleAdnQuery(handler, sc, uri); in handleAdnEntry()
261 applicationContext, handler, sc); in handleAdnEntry()
462 SimContactQueryCookie sc = (SimContactQueryCookie) cookie; in onNotNullableQueryComplete() local
465 sc.progressDialog.dismiss(); in onNotNullableQueryComplete()
468 EditText text = sc.getTextField(); in onNotNullableQueryComplete()
473 if ((c != null) && (text != null) && (c.moveToPosition(sc.contactNum))) { in onNotNullableQueryComplete()
482 Context context = sc.progressDialog.getContext(); in onNotNullableQueryComplete()