Home
last modified time | relevance | path

Searched refs:isGoodClick (Results 1 – 5 of 5) sorted by relevance

/packages/modules/AppSearch/testing/servicestests/src/com/android/server/appsearch/external/localstorage/stats/
DClickStatsTest.java30 boolean isGoodClick = false; in testBuilder()
38 .setIsGoodClick(isGoodClick) in testBuilder()
45 assertThat(clickStats.isGoodClick()).isEqualTo(isGoodClick); in testBuilder()
/packages/modules/AppSearch/service/java/com/android/server/appsearch/external/localstorage/stats/
DClickStats.java76 public boolean isGoodClick() { in isGoodClick() method in ClickStats
143 public Builder setIsGoodClick(boolean isGoodClick) { in setIsGoodClick() argument
144 mIsGoodClick = isGoodClick; in setIsGoodClick()
/packages/modules/AppSearch/testing/servicestests/src/com/android/server/appsearch/external/localstorage/usagereporting/
DSearchSessionStatsExtractorTest.java135 assertThat(searchIntentStats0.getClicksStats().get(0).isGoodClick()).isFalse(); in testExtract()
141 assertThat(searchIntentStats0.getClicksStats().get(1).isGoodClick()).isFalse(); in testExtract()
159 assertThat(searchIntentStats1.getClicksStats().get(0).isGoodClick()).isFalse(); in testExtract()
165 assertThat(searchIntentStats1.getClicksStats().get(1).isGoodClick()).isFalse(); in testExtract()
171 assertThat(searchIntentStats1.getClicksStats().get(2).isGoodClick()).isTrue(); in testExtract()
266 assertThat(searchIntentStats0.getClicksStats().get(0).isGoodClick()).isFalse(); in testExtract_shouldSkipUnknownActionTypeDocuments()
972 assertThat(searchIntentStats.getClicksStats().get(0).isGoodClick()).isTrue(); in testExtract_shouldSetIsGoodClick()
976 assertThat(searchIntentStats.getClicksStats().get(1).isGoodClick()).isFalse(); in testExtract_shouldSetIsGoodClick()
980 assertThat(searchIntentStats.getClicksStats().get(2).isGoodClick()).isFalse(); in testExtract_shouldSetIsGoodClick()
984 assertThat(searchIntentStats.getClicksStats().get(3).isGoodClick()).isTrue(); in testExtract_shouldSetIsGoodClick()
[all …]
/packages/modules/AppSearch/service/java/com/android/server/appsearch/external/localstorage/usagereporting/
DSearchSessionStatsExtractor.java281 boolean isGoodClick = in createClickStats()
290 .setIsGoodClick(isGoodClick) in createClickStats()
/packages/modules/AppSearch/service/java/com/android/server/appsearch/stats/
DPlatformLogger.java590 if (clickStats.isGoodClick()) { in logStatsImplLocked()