Home | History | Annotate | Download | only in phone

Lines Matching full:mcontext

91     private Context mContext;
126 mContext = app;
259 mQueryHandler = new QueryHandler(mContext.getContentResolver());
447 callName = mContext.getString(R.string.unknown);
458 expandedText = mContext.getString(R.string.notification_missedCallsMsg,
465 mContext.getString(R.string.notification_missedCallTicker, callName), // tickerText
468 note.setLatestEventInfo(mContext, mContext.getText(titleResId), expandedText,
469 PendingIntent.getActivity(mContext, 0, callLogIntent, 0));
481 Intent intent = new Intent(mContext, ClearMissedCallsService.class);
483 return PendingIntent.getService(mContext, 0, intent, 0);
500 mContext.getString(R.string.accessibility_speakerphone_enabled));
524 AudioManager audioManager = (AudioManager) mContext.getSystemService(Context.AUDIO_SERVICE);
570 mContext.getString(R.string.accessibility_call_muted));
805 PendingIntent.getActivity(mContext, 0,
816 RemoteViews contentView = new RemoteViews(mContext.getPackageName(),
844 expandedViewLine1 = mContext.getString(R.string.notification_incoming_call);
848 expandedViewLine1 = mContext.getString(R.string.notification_on_hold);
852 expandedViewLine1 = mContext.getString(R.string.notification_ongoing_call_format);
880 expandedViewLine2 = mContext.getString(R.string.card_title_conf_call);
884 PhoneUtils.startGetCallerInfo(mContext, currentCall, this, this);
885 expandedViewLine2 = PhoneUtils.getCompactNameFromCallerInfo(cit.currentInfo, mContext);
988 + PhoneUtils.getCompactNameFromCallerInfo(ci, mContext));
1046 String notificationTitle = mContext.getString(R.string.notification_voicemail_title);
1093 String titleFormat = mContext.getString(R.string.notification_voicemail_title_count);
1099 notificationText = mContext.getString(
1103 mContext.getString(R.string.notification_voicemail_text_format),
1109 PendingIntent pendingIntent = PendingIntent.getActivity(mContext, 0, intent, 0);
1119 mContext, // context
1166 mContext, // context
1167 mContext.getString(R.string.labelCF), // expandedTitle
1168 mContext.getString(R.string.sum_cfu_enabled_indicator), // expandedText
1169 PendingIntent.getActivity(mContext, 0, intent, 0)); // contentIntent
1196 Intent intent = new Intent(mContext,
1204 mContext, // Context
1205 mContext.getString(R.string.roaming), // expandedTitle
1206 mContext.getString(R.string.roaming_reenable_message), // expandedText
1207 PendingIntent.getActivity(mContext, 0, intent, 0)); // contentIntent
1229 String titleText = mContext.getString(
1231 String expandedText = mContext.getString(
1247 PendingIntent pi = PendingIntent.getActivity(mContext, 0, intent, 0);
1249 notification.setLatestEventInfo(mContext, titleText, expandedText, pi);
1273 PreferenceManager.getDefaultSharedPreferences(mContext);
1304 mToast = Toast.makeText(mContext, msg, Toast.LENGTH_LONG);