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

  /packages/apps/UnifiedEmail/src/com/android/emailcommon/mail/
Address.java 489 /* addressEndIndex is only re-scanned (indexOf()) when a LIST_DELIMITER_PERSONAL
494 int addressEndIndex = addressList.indexOf(LIST_DELIMITER_PERSONAL);
502 if (addressEndIndex == -1 || pairEndIndex <= addressEndIndex) {
504 // so don't use personal, and don't update addressEndIndex
507 address = new Address(addressList.substring(pairStartIndex, addressEndIndex),
508 addressList.substring(addressEndIndex + 1, pairEndIndex));
509 // only update addressEndIndex when we use the LIST_DELIMITER_PERSONAL
510 addressEndIndex = addressList.indexOf(LIST_DELIMITER_PERSONAL, pairEndIndex + 1);
  /packages/services/Telephony/src/com/android/phone/common/mail/
Address.java 488 /* addressEndIndex is only re-scanned (indexOf()) when a LIST_DELIMITER_PERSONAL
493 int addressEndIndex = addressList.indexOf(LIST_DELIMITER_PERSONAL);
501 if (addressEndIndex == -1 || pairEndIndex <= addressEndIndex) {
503 // so don't use personal, and don't update addressEndIndex
506 address = new Address(addressList.substring(pairStartIndex, addressEndIndex),
507 addressList.substring(addressEndIndex + 1, pairEndIndex));
508 // only update addressEndIndex when we use the LIST_DELIMITER_PERSONAL
509 addressEndIndex = addressList.indexOf(LIST_DELIMITER_PERSONAL, pairEndIndex + 1);

Completed in 130 milliseconds