Home
last modified time | relevance | path

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

/aosp12/packages/apps/Launcher3/src/com/android/launcher3/folder/
H A DFolderNameInfos.java43 private final Float[] mScores; field in FolderNameInfos
48 mScores = new Float[FolderNameProvider.SUGGEST_MAX]; in FolderNameInfos()
88 mScores[index] = score; in setLabel()
107 return mScores; in getScores()
/aosp12/frameworks/base/core/java/android/view/textclassifier/
H A DTextClassifierEvent.java158 private final float[] mScores; field in TextClassifierEvent
181 mScores = builder.mScores; in TextClassifierEvent()
196 mScores = new float[scoresLength]; in TextClassifierEvent()
197 in.readFloatArray(mScores); in TextClassifierEvent()
245 dest.writeInt(mScores.length); in writeToParcel()
246 dest.writeFloatArray(mScores); in writeToParcel()
332 return mScores; in getScores()
386 out.append(", mScores=").append(Arrays.toString(mScores)); in toString()
530 private float[] mScores = new float[0]; field in TextClassifierEvent.Builder
599 mScores = new float[scores.length]; in setScores()
[all …]
/aosp12/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/util/
H A DContactMatcher.java156 private final ArrayMap<Long, MatchScore> mScores = new ArrayMap<>(); field in ContactMatcher
164 MatchScore matchingScore = mScores.get(contactId); in getMatchingScore()
174 mScores.put(contactId, matchingScore); in getMatchingScore()
273 mScores.clear(); in clear()
H A DRawContactMatcher.java161 private final ArrayMap<Long, MatchScore> mScores = new ArrayMap<>(); field in RawContactMatcher
169 MatchScore matchingScore = mScores.get(rawContactId); in getMatchingScore()
179 mScores.put(rawContactId, matchingScore); in getMatchingScore()
276 mScores.clear(); in clear()