HomeSort by relevance Sort by last modified time
    Searched refs:callLogInfo (Results 1 - 2 of 2) sorted by null

  /packages/apps/Dialer/tests/src/com/android/dialer/calllog/
CallLogAdapterTest.java 112 assertEquals(TEST_NAME, request.callLogInfo.name);
113 assertEquals(1, request.callLogInfo.type);
114 assertEquals(TEST_NUMBER_LABEL, request.callLogInfo.label);
199 public final ContactInfo callLogInfo;
202 public Request(String number, String countryIso, ContactInfo callLogInfo,
206 this.callLogInfo = callLogInfo;
219 void enqueueRequest(String number, String countryIso, ContactInfo callLogInfo,
221 requests.add(new Request(number, countryIso, callLogInfo, immediate));
  /packages/apps/Dialer/src/com/android/dialer/calllog/
CallLogAdapter.java 117 public final ContactInfo callLogInfo;
119 public ContactInfoRequest(String number, String countryIso, ContactInfo callLogInfo) {
122 this.callLogInfo = callLogInfo;
135 if (!Objects.equal(callLogInfo, other.callLogInfo)) return false;
144 result = prime * result + ((callLogInfo == null) ? 0 : callLogInfo.hashCode());
335 void enqueueRequest(String number, String countryIso, ContactInfo callLogInfo,
337 ContactInfoRequest request = new ContactInfoRequest(number, countryIso, callLogInfo);
    [all...]

Completed in 475 milliseconds