• Home
  • Raw
  • Download

Lines Matching refs:mContext

82     private Context mContext;  field in NotificationMgr
111 mContext = context; in NotificationMgr()
216 mQueryHandler = new QueryHandler(mContext.getContentResolver()); in updateNotifications()
388 callName = mContext.getString(R.string.unknown); in notifyMissedCall()
399 expandedText = mContext.getString(R.string.notification_missedCallsMsg, in notifyMissedCall()
410 mContext, // context in notifyMissedCall()
412 mContext.getString( in notifyMissedCall()
415 mContext.getText(titleResId), // expandedTitle in notifyMissedCall()
446 AudioManager audioManager = (AudioManager) mContext.getSystemService(Context.AUDIO_SERVICE); in updateSpeakerNotification()
554 notification.contentIntent = PendingIntent.getActivity(mContext, 0, in updateInCallNotification()
562 RemoteViews contentView = new RemoteViews(mContext.getPackageName(), in updateInCallNotification()
590 expandedViewLine1 = mContext.getString(R.string.notification_on_hold); in updateInCallNotification()
593 expandedViewLine1 = mContext.getString(R.string.notification_ongoing_call_format); in updateInCallNotification()
619 expandedViewLine2 = mContext.getString(R.string.card_title_conf_call); in updateInCallNotification()
623 PhoneUtils.startGetCallerInfo (mContext, currentCall, this, contentView); in updateInCallNotification()
625 expandedViewLine2 = PhoneUtils.getCompactNameFromCallerInfo(cit.currentInfo, mContext); in updateInCallNotification()
657 PhoneUtils.getCompactNameFromCallerInfo(ci, mContext)); in onQueryComplete()
698 String notificationTitle = mContext.getString(R.string.notification_voicemail_title); in updateMwi()
746 … String titleFormat = mContext.getString(R.string.notification_voicemail_title_count); in updateMwi()
752 notificationText = mContext.getString( in updateMwi()
756 mContext.getString(R.string.notification_voicemail_text_format), in updateMwi()
762 PendingIntent pendingIntent = PendingIntent.getActivity(mContext, 0, intent, 0); in updateMwi()
772 mContext, // context in updateMwi()
820 mContext, // context in updateCfi()
825 mContext.getString(R.string.labelCF), // expandedTitle in updateCfi()
826 mContext.getString(R.string.sum_cfu_enabled_indicator), // expandedText in updateCfi()
856 Intent intent = new Intent(mContext, in showDataDisconnectedRoaming()
860 mContext, // context in showDataDisconnectedRoaming()
864 mContext.getString(R.string.roaming), // expandedTitle in showDataDisconnectedRoaming()
865 mContext.getString(R.string.roaming_reenable_message), // expandedText in showDataDisconnectedRoaming()
888 String titleText = mContext.getString( in showNetworkSelection()
890 String expandedText = mContext.getString( in showNetworkSelection()
906 PendingIntent pi = PendingIntent.getActivity(mContext, 0, intent, 0); in showNetworkSelection()
908 notification.setLatestEventInfo(mContext, titleText, expandedText, pi); in showNetworkSelection()
932 PreferenceManager.getDefaultSharedPreferences(mContext); in updateNetworkSelection()
963 mToast = Toast.makeText(mContext, msg, Toast.LENGTH_LONG); in postTransientNotification()