Lines Matching full:mcontext
103 private Context mContext;
134 mContext = app;
268 mQueryHandler = new QueryHandler(mContext.getContentResolver());
393 0, mContext, personUri, this, n);
480 mContext);
515 callName = mContext.getString(R.string.unknown);
526 expandedText = mContext.getString(R.string.notification_missedCallsMsg,
530 Notification.Builder builder = new Notification.Builder(mContext);
532 .setTicker(mContext.getString(R.string.notification_missedCallTicker, callName))
534 .setContentTitle(mContext.getText(titleResId))
551 mContext.getString(R.string.notification_missedCall_call_back),
552 PhoneGlobals.getCallBackPendingIntent(mContext, number));
555 mContext.getString(R.string.notification_missedCall_message),
556 PhoneGlobals.getSendSmsFromNotificationPendingIntent(mContext, number));
576 Intent intent = new Intent(mContext, ClearMissedCallsService.class);
578 return PendingIntent.getService(mContext, 0, intent, 0);
595 mContext.getString(R.string.accessibility_speakerphone_enabled));
619 AudioManager audioManager = (AudioManager) mContext.getSystemService(Context.AUDIO_SERVICE);
661 mContext.getString(R.string.accessibility_call_muted));
726 String notificationTitle = mContext.getString(R.string.notification_voicemail_title);
773 String titleFormat = mContext.getString(R.string.notification_voicemail_title_count);
779 notificationText = mContext.getString(
783 mContext.getString(R.string.notification_voicemail_text_format),
789 PendingIntent pendingIntent = PendingIntent.getActivity(mContext, 0, intent, 0);
791 SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(mContext);
801 Notification.Builder builder = new Notification.Builder(mContext);
857 mContext, // context
858 mContext.getString(R.string.labelCF), // expandedTitle
859 mContext.getString(R.string.sum_cfu_enabled_indicator), // expandedText
860 PendingIntent.getActivity(mContext, 0, intent, 0)); // contentIntent
888 Intent intent = new Intent(mContext, com.android.phone.MobileNetworkSettings.class);
890 final CharSequence contentText = mContext.getText(R.string.roaming_reenable_message);
892 final Notification.Builder builder = new Notification.Builder(mContext);
894 builder.setContentTitle(mContext.getText(R.string.roaming));
896 builder.setContentIntent(PendingIntent.getActivity(mContext, 0, intent, 0));
919 String titleText = mContext.getString(
921 String expandedText = mContext.getString(
937 PendingIntent pi = PendingIntent.getActivity(mContext, 0, intent, 0);
939 notification.setLatestEventInfo(mContext, titleText, expandedText, pi);
963 PreferenceManager.getDefaultSharedPreferences(mContext);
994 mToast = Toast.makeText(mContext, msg, Toast.LENGTH_LONG);