Home
last modified time | relevance | path

Searched refs:callCount (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Dialer/java/com/android/dialer/simulator/impl/
DSimulatorConferenceCreator.java61 void start(int callCount) { in start() argument
65 addNextCall(callCount, true); in start()
67 addNextCall(callCount, false); in start()
77 private void addNextCall(int callCount, boolean reconnect) { in addNextCall() argument
78 LogUtil.i("SimulatorConferenceCreator.addNextIncomingCall", "callCount: " + callCount); in addNextCall()
79 if (callCount <= 0) { in addNextCall()
90 String callerId = String.format(Locale.US, "+1-650-234%04d", callCount); in addNextCall()
92 extras.putInt(EXTRA_CALL_COUNT, callCount - 1); in addNextCall()
DSimulatorMissedCallCreator.java44 public void start(int callCount) { in start() argument
46 addNextIncomingCall(callCount); in start()
69 private void addNextIncomingCall(int callCount) { in addNextIncomingCall() argument
70 if (callCount <= 0) { in addNextIncomingCall()
76 String callerId = String.format("+%d", callCount); in addNextIncomingCall()
78 extras.putInt(EXTRA_CALL_COUNT, callCount - 1); in addNextIncomingCall()
/packages/apps/Dialer/java/com/android/dialer/app/calllog/
DPhoneCallDetailsHelper.java183 final Integer callCount; in setPhoneCallDetails() local
185 callCount = count; in setPhoneCallDetails()
187 callCount = null; in setPhoneCallDetails()
191 setDetailText(views, callCount, details); in setPhoneCallDetails()
585 PhoneCallDetailsViews views, Integer callCount, PhoneCallDetails details) { in setDetailText() argument
589 if (callCount != null) { in setDetailText()
590 text = resources.getString(R.string.call_log_item_count_and_date, callCount, dateText); in setDetailText()