Home
last modified time | relevance | path

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

/packages/modules/AppSearch/testing/servicestests/src/com/android/server/appsearch/external/localstorage/stats/
DSearchIntentStatsTest.java33 String prevQuery = "prev"; in testBuilder() local
60 .setPrevQuery(prevQuery) in testBuilder()
70 assertThat(searchIntentStats.getPrevQuery()).isEqualTo(prevQuery); in testBuilder()
80 String prevQuery = "prev"; in testBuilderCopy_allFieldsAreCopied() local
107 .setPrevQuery(prevQuery) in testBuilderCopy_allFieldsAreCopied()
119 assertThat(searchIntentStats1.getPrevQuery()).isEqualTo(prevQuery); in testBuilderCopy_allFieldsAreCopied()
233 String prevQuery = "prev"; in testBuilder_builderReuse() local
259 .setPrevQuery(prevQuery) in testBuilder_builderReuse()
283 assertThat(searchIntentStats0.getPrevQuery()).isEqualTo(prevQuery); in testBuilder_builderReuse()
293 assertThat(searchIntentStats1.getPrevQuery()).isEqualTo(prevQuery); in testBuilder_builderReuse()
[all …]
/packages/modules/AppSearch/service/java/com/android/server/appsearch/external/localstorage/usagereporting/
DSearchSessionStatsExtractor.java106 String prevQuery = prevSearchAction.getQuery(); in getQueryCorrectionType() local
108 int commonPrefixLength = getCommonPrefixLength(prevQuery, currQuery); in getQueryCorrectionType()
111 if (commonPrefixLength <= prevQuery.length() - QUERY_ABANDONMENT_BACKSPACE_COUNT) { in getQueryCorrectionType()
334 String prevQuery = prevSearchAction.getQuery(); in isIntermediateSearchAction() local
337 prevQuery != null in isIntermediateSearchAction()
339 && (currQuery.startsWith(prevQuery) || prevQuery.startsWith(currQuery)); in isIntermediateSearchAction()
/packages/modules/AppSearch/service/java/com/android/server/appsearch/external/localstorage/stats/
DSearchIntentStats.java205 public Builder setPrevQuery(@Nullable String prevQuery) { in setPrevQuery() argument
207 mPrevQuery = prevQuery; in setPrevQuery()
/packages/modules/AppSearch/service/java/com/android/server/appsearch/stats/
DPlatformLogger.java628 String prevQuery = searchIntentStats.getPrevQuery(); in logStatsImplLocked() local
634 prevQuery == null ? "" : prevQuery, in logStatsImplLocked()