Home
last modified time | relevance | path

Searched refs:onCalculateScores (Results 1 – 2 of 2) sorted by relevance

/packages/modules/ExtServices/java/tests/src/android/ext/services/autofill/
DAutofillFieldClassificationServiceImplTest.java46 assertThat(mService.onCalculateScores(null, null, null, null, null, null, null)).isNull(); in testOnCalculateScores_nullActualValues()
51 assertThat(mService.onCalculateScores(Collections.emptyList(), Arrays.asList("whatever"), in testOnCalculateScores_emptyActualValues()
57 assertThat(mService.onCalculateScores(Arrays.asList(AutofillValue.forText("whatever")), in testOnCalculateScores_nullUserDataValues()
63 assertThat(mService.onCalculateScores(Arrays.asList(AutofillValue.forText("whatever")), in testOnCalculateScores_emptyUserDataValues()
90 final float[][] actualScores = mService.onCalculateScores(actualValues, userDataValues, in testCalculateScores()
/packages/modules/ExtServices/java/src/android/ext/services/autofill/
DAutofillFieldClassificationServiceImpl.java39 public float[][] onCalculateScores(@Nullable List<AutofillValue> actualValues, in onCalculateScores() method in AutofillFieldClassificationServiceImpl