Fixing text search where a word starting with lower case was

not being matched

Bug: 32249413
Change-Id: I0f5e24052759a734fe0df3bd3d0bf2e7ef7f2713
This commit is contained in:
Sunny Goyal 2016-10-19 07:53:43 +01:00
parent a833b6d720
commit 28a64381b6
2 changed files with 5 additions and 1 deletions

View File

@ -115,7 +115,7 @@ public class DefaultAppSearchAlgorithm {
return prevType != Character.UPPERCASE_LETTER;
case Character.LOWERCASE_LETTER:
// Break point if previous was not a letter.
return prevType > Character.OTHER_LETTER;
return prevType > Character.OTHER_LETTER || prevType <= Character.UNASSIGNED;
case Character.DECIMAL_DIGIT_NUMBER:
case Character.LETTER_NUMBER:
case Character.OTHER_NUMBER:

View File

@ -67,6 +67,10 @@ public class DefaultAppSearchAlgorithmTest extends InstrumentationTestCase {
assertTrue(mAlgorithm.matches(getInfo("Q"), "q"));
assertTrue(mAlgorithm.matches(getInfo(" Q"), "q"));
// match lower case words
assertTrue(mAlgorithm.matches(getInfo("elephant"), "e"));
}
private AppInfo getInfo(String title) {