Home
last modified time | relevance | path

Searched refs:WORD_DELIM (Results 1 – 1 of 1) sorted by relevance

/frameworks/base/core/java/android/webkit/
DFindAddress.java137 private static final String WORD_DELIM = ",*\u2022" + WS; field in FindAddress
140 private static final String WORD_END = "(?=[" + WORD_DELIM + "]|$)";
144 Pattern.compile("[^" + WORD_DELIM + "]+" + WORD_END, Pattern.CASE_INSENSITIVE);
319 if (offset > 0 && WORD_DELIM.indexOf(content.charAt(offset - 1)) == -1) return null; in matchState()