Home | History | Annotate | Download | only in model

Lines Matching refs:typeCount

142      * @param typeCount When provided, will be used for the frequency count of
148 EditType forceInclude, boolean includeSecondary, SparseIntArray typeCount,
155 if (typeCount == null) {
157 typeCount = getTypeFrequencies(state, kind);
163 final int overallCount = typeCount.get(FREQUENCY_TOTAL);
169 final boolean validSpecific = (type.specificMax == -1 ? true : typeCount
191 final SparseIntArray typeCount = new SparseIntArray();
195 if (mimeEntries == null) return typeCount;
205 final int count = typeCount.get(type.rawValue);
206 typeCount.put(type.rawValue, count + 1);
209 typeCount.put(FREQUENCY_TOTAL, totalCount);
210 return typeCount;
292 final SparseIntArray typeCount = getTypeFrequencies(state, kind);
294 typeCount, /*checkOverall=*/ true);
304 final int count = typeCount.get(type.rawValue);