Home
last modified time | relevance | path

Searched refs:DefaultAppSearchAlgorithm (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Launcher3/tests/src/com/android/launcher3/allapps/search/
DDefaultAppSearchAlgorithmTest.java37 private static final DefaultAppSearchAlgorithm.StringMatcher MATCHER =
38 DefaultAppSearchAlgorithm.StringMatcher.getInstance();
42 assertTrue(DefaultAppSearchAlgorithm.matches(getInfo("white cow"), "cow", MATCHER)); in testMatches()
43 assertTrue(DefaultAppSearchAlgorithm.matches(getInfo("whiteCow"), "cow", MATCHER)); in testMatches()
44 assertTrue(DefaultAppSearchAlgorithm.matches(getInfo("whiteCOW"), "cow", MATCHER)); in testMatches()
45 assertTrue(DefaultAppSearchAlgorithm.matches(getInfo("whitecowCOW"), "cow", MATCHER)); in testMatches()
46 assertTrue(DefaultAppSearchAlgorithm.matches(getInfo("white2cow"), "cow", MATCHER)); in testMatches()
48 assertFalse(DefaultAppSearchAlgorithm.matches(getInfo("whitecow"), "cow", MATCHER)); in testMatches()
49 assertFalse(DefaultAppSearchAlgorithm.matches(getInfo("whitEcow"), "cow", MATCHER)); in testMatches()
51 assertTrue(DefaultAppSearchAlgorithm.matches(getInfo("whitecowCow"), "cow", MATCHER)); in testMatches()
[all …]
/packages/apps/Launcher3/src/com/android/launcher3/allapps/search/
DDefaultAppSearchAlgorithm.java30 public class DefaultAppSearchAlgorithm implements SearchAlgorithm { class
35 public DefaultAppSearchAlgorithm(List<AppInfo> apps) { in DefaultAppSearchAlgorithm() method in DefaultAppSearchAlgorithm
DAppsSearchContainerLayout.java143 new DefaultAppSearchAlgorithm(mApps.getApps()), this, mLauncher, this); in initialize()