OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:indexOfWordPrefix
(Results
1 - 3
of
3
) sorted by null
/packages/apps/ContactsCommon/tests/src/com/android/contacts/common/format/
FormatUtilsTests.java
75
assertEquals(-1, FormatUtils.
indexOfWordPrefix
("test", null));
79
assertEquals(-1, FormatUtils.
indexOfWordPrefix
(null, "TE"));
112
assertEquals(expectedIndex, FormatUtils.
indexOfWordPrefix
(text, wordPrefix));
/packages/apps/ContactsCommon/src/com/android/contacts/common/format/
TextHighlighter.java
89
int index = FormatUtils.
indexOfWordPrefix
(text, trimmedPrefix);
FormatUtils.java
141
public static int
indexOfWordPrefix
(CharSequence text, String prefix) {
Completed in 46 milliseconds