Home
last modified time | relevance | path

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

/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
DLevenshteinSuggestionFormatter.java56 int sourceLen = 0; in formatSuggestion() local
59 sourceLen = queryTokens[thisMatch].length(); in formatSuggestion()
61 applySuggestedTextStyle(str, t.mStart + sourceLen, t.mEnd); in formatSuggestion()
62 applyQueryTextStyle(str, t.mStart, t.mStart + sourceLen); in formatSuggestion()
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/
DLevenshteinDistance.java67 final int sourceLen = src.length; in calculate() local
71 for (int s = 1; s <= sourceLen; ++s) { in calculate()
95 return distTab[sourceLen][targetLen]; in calculate()