OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DOMAIN_PART_PART
(Results
1 - 2
of
2
) sorted by null
/packages/apps/Dialer/java/com/android/voicemail/impl/mail/
Address.java
63
// TODO: LOCAL_PART and
DOMAIN_PART_PART
are too permissive and can be improved.
68
private static final String
DOMAIN_PART_PART
= "[[\\w][\\d]\\-\\(\\)\\[\\]]+";
69
/** Regex for the domain part, which is two or more {@link #
DOMAIN_PART_PART
} separated by . */
70
private static final String DOMAIN_PART = "(" +
DOMAIN_PART_PART
+ "\\.)+" +
DOMAIN_PART_PART
;
/packages/apps/UnifiedEmail/src/com/android/emailcommon/mail/
Address.java
72
// TODO: LOCAL_PART and
DOMAIN_PART_PART
are too permissive and can be improved.
77
private static final String
DOMAIN_PART_PART
= "[[\\w][\\d]\\-\\(\\)\\[\\]]+";
78
/** Regex for the domain part, which is two or more {@link #
DOMAIN_PART_PART
} separated by . */
80
"(" +
DOMAIN_PART_PART
+ "\\.)+" +
DOMAIN_PART_PART
;
Completed in 187 milliseconds