OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:LIST_DELIMITER_PERSONAL
(Results
1 - 2
of
2
) sorted by null
/packages/apps/UnifiedEmail/src/com/android/emailcommon/mail/
Address.java
80
private static final char
LIST_DELIMITER_PERSONAL
= '\2';
403
if ((addressList.indexOf(
LIST_DELIMITER_PERSONAL
) == -1) &&
413
/* addressEndIndex is only re-scanned (indexOf()) when a
LIST_DELIMITER_PERSONAL
418
int addressEndIndex = addressList.indexOf(
LIST_DELIMITER_PERSONAL
);
433
// only update addressEndIndex when we use the
LIST_DELIMITER_PERSONAL
434
addressEndIndex = addressList.indexOf(
LIST_DELIMITER_PERSONAL
, pairEndIndex + 1);
459
return address +
LIST_DELIMITER_PERSONAL
+ personal;
/packages/apps/UnifiedEmail/src/com/android/mail/providers/
Address.java
77
private static final char
LIST_DELIMITER_PERSONAL
= '\2';
436
/* addressEndIndex is only re-scanned (indexOf()) when a
LIST_DELIMITER_PERSONAL
441
int addressEndIndex = addressList.indexOf(
LIST_DELIMITER_PERSONAL
);
456
// only update addressEndIndex when we use the
LIST_DELIMITER_PERSONAL
457
addressEndIndex = addressList.indexOf(
LIST_DELIMITER_PERSONAL
, pairEndIndex + 1);
470
* a pair of address and personal separated by
LIST_DELIMITER_PERSONAL
,
500
sb.append(
LIST_DELIMITER_PERSONAL
);
516
return address +
LIST_DELIMITER_PERSONAL
+ personal;
Completed in 184 milliseconds