Searched refs:appLength (Results 1 – 1 of 1) sorted by relevance
175 final int appLength = appTokens.length; in getWordDifference() local176 if (queryTokens.length > appLength) { in getWordDifference()183 while (i < appLength) { in getWordDifference()186 while ((i + j < appLength) && (queryTokens[j] == appTokens[i + j])) { in getWordDifference()191 return appLength - queryTokens.length; in getWordDifference()198 if (queryTokens.length > appLength - i) { in getWordDifference()204 while ((i < appLength) && (!Character.isWhitespace(appTokens[i++]))) ; in getWordDifference()207 while ((i < appLength) && !(Character.isLetter(appTokens[i]) in getWordDifference()