Searched refs:scoresByField (Results 1 – 1 of 1) sorted by relevance
3631 ArrayMap<String, Float> scoresByField = null; in handleLogFieldClassificationScore() local3636 if (scoresByField == null) { in handleLogFieldClassificationScore()3637 scoresByField = new ArrayMap<>(userValues.length); in handleLogFieldClassificationScore()3639 final Float currentScore = scoresByField.get(categoryId); in handleLogFieldClassificationScore()3651 scoresByField.put(categoryId, score); in handleLogFieldClassificationScore()3656 if (scoresByField == null) { in handleLogFieldClassificationScore()3662 final ArrayList<Match> matches = new ArrayList<>(scoresByField.size()); in handleLogFieldClassificationScore()3663 for (j = 0; j < scoresByField.size(); j++) { in handleLogFieldClassificationScore()3664 final String fieldId = scoresByField.keyAt(j); in handleLogFieldClassificationScore()3665 final float score = scoresByField.valueAt(j); in handleLogFieldClassificationScore()