Home | History | Annotate | Download | only in model

Lines Matching defs:typeOverallMax

95         final boolean validOverall = (kind.typeOverallMax == -1)
96 || (visibleCount < kind.typeOverallMax);
187 final boolean validOverall = (kind.typeOverallMax == -1 ? true
188 : overallCount < kind.typeOverallMax);
712 if ((kind.typeOverallMax != 1) || GroupMembership.CONTENT_ITEM_TYPE.equals(mimeType)) {
728 if (kind.typeOverallMax != -1 && count >= kind.typeOverallMax) {
729 Log.e(TAG, "Mimetype allows at most " + kind.typeOverallMax
1007 * Checks {@link DataKind#isList} and {@link DataKind#typeOverallMax}, and restricts
1016 final int typeOverallMax = kind.typeOverallMax;
1017 if (typeOverallMax >= 0 && (mimeEntries.size() > typeOverallMax)) {
1018 ArrayList<ValuesDelta> newMimeEntries = new ArrayList<ValuesDelta>(typeOverallMax);
1019 for (int i = 0; i < typeOverallMax; i++) {
1333 // 3.1 stop iteration if total number of mimeEntries reached typeOverallMax specified in
1371 final int typeOverallMax = newDataKind.typeOverallMax;
1378 if (typeOverallMax != -1 && totalCount >= typeOverallMax) {