OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:addressEndIndex
(Results
1 - 2
of
2
) sorted by null
/packages/apps/UnifiedEmail/src/com/android/emailcommon/mail/
Address.java
413
/*
addressEndIndex
is only re-scanned (indexOf()) when a LIST_DELIMITER_PERSONAL
418
int
addressEndIndex
= addressList.indexOf(LIST_DELIMITER_PERSONAL);
426
if (
addressEndIndex
== -1 || pairEndIndex <=
addressEndIndex
) {
428
// so don't use personal, and don't update
addressEndIndex
431
address = new Address(addressList.substring(pairStartIndex,
addressEndIndex
),
432
addressList.substring(
addressEndIndex
+ 1, pairEndIndex));
433
// only update
addressEndIndex
when we use the LIST_DELIMITER_PERSONAL
434
addressEndIndex
= addressList.indexOf(LIST_DELIMITER_PERSONAL, pairEndIndex + 1);
/packages/apps/UnifiedEmail/src/com/android/mail/providers/
Address.java
436
/*
addressEndIndex
is only re-scanned (indexOf()) when a LIST_DELIMITER_PERSONAL
441
int
addressEndIndex
= addressList.indexOf(LIST_DELIMITER_PERSONAL);
449
if (
addressEndIndex
== -1 || pairEndIndex <=
addressEndIndex
) {
451
// so don't use personal, and don't update
addressEndIndex
454
address = new Address(addressList.substring(
addressEndIndex
+ 1, pairEndIndex),
455
addressList.substring(pairStartIndex,
addressEndIndex
));
456
// only update
addressEndIndex
when we use the LIST_DELIMITER_PERSONAL
457
addressEndIndex
= addressList.indexOf(LIST_DELIMITER_PERSONAL, pairEndIndex + 1);
Completed in 26 milliseconds