Home
last modified time | relevance | path

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

/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
DHanziToPinyinTest.java43 ArrayList<Token> tokens = HanziToPinyin.getInstance().getTokens(hanziString); in test()
68 ArrayList<Token> tokens = HanziToPinyin.getInstance().getTokens(ONE_HANZI); in testGetToken()
73 tokens = HanziToPinyin.getInstance().getTokens(TWO_HANZI); in testGetToken()
80 tokens = HanziToPinyin.getInstance().getTokens(ASSIC); in testGetToken()
84 tokens = HanziToPinyin.getInstance().getTokens(ONE_UNKNOWN); in testGetToken()
88 tokens = HanziToPinyin.getInstance().getTokens(MISC); in testGetToken()
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
DSearchIndexManager.java102 public String getTokens() { in getTokens() method in SearchIndexManager.IndexBuilder
397 mValues.put(SearchIndexColumns.TOKENS, builder.getTokens()); in insertIndexRow()
DHanziToPinyin.java136 public ArrayList<Token> getTokens(final String input) { in getTokens() method in HanziToPinyin
DContactLocaleUtils.java374 ArrayList<Token> tokens = HanziToPinyin.getInstance().getTokens(name); in getPinyinNameLookupKeys()