Home | History | Annotate | Download | only in model

Lines Matching defs:typeOverallMax

94         final boolean validOverall = (kind.typeOverallMax == -1)
95 || (visibleCount < kind.typeOverallMax);
186 final boolean validOverall = (kind.typeOverallMax == -1 ? true
187 : overallCount < kind.typeOverallMax);
725 if ((kind.typeOverallMax != 1) || GroupMembership.CONTENT_ITEM_TYPE.equals(mimeType)) {
741 if (kind.typeOverallMax != -1 && count >= kind.typeOverallMax) {
742 Log.e(TAG, "Mimetype allows at most " + kind.typeOverallMax
1020 * Checks {@link DataKind#isList} and {@link DataKind#typeOverallMax}, and restricts
1029 final int typeOverallMax = kind.typeOverallMax;
1030 if (typeOverallMax >= 0 && (mimeEntries.size() > typeOverallMax)) {
1031 ArrayList<ValuesDelta> newMimeEntries = new ArrayList<ValuesDelta>(typeOverallMax);
1032 for (int i = 0; i < typeOverallMax; i++) {
1346 // 3.1 stop iteration if total number of mimeEntries reached typeOverallMax specified in
1384 final int typeOverallMax = newDataKind.typeOverallMax;
1391 if (typeOverallMax != -1 && totalCount >= typeOverallMax) {