OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:typeOverallMax
(Results
1 - 7
of
7
) sorted by null
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/dataitem/
DataKind.java
60
public int
typeOverallMax
;
96
this.
typeOverallMax
= -1;
119
sb.append("
typeOverallMax
=").append(
typeOverallMax
);
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/account/
ExchangeAccountType.java
87
kind.
typeOverallMax
= 1;
116
kind.
typeOverallMax
= 1;
149
kind.
typeOverallMax
= 1;
164
kind.
typeOverallMax
= 1;
207
kind.
typeOverallMax
= 3;
260
kind.
typeOverallMax
= 3;
275
kind.
typeOverallMax
= 1;
290
kind.
typeOverallMax
= 1;
314
kind.
typeOverallMax
= 1;
332
kind.
typeOverallMax
= 1
[
all
...]
BaseAccountType.java
154
kind.
typeOverallMax
= 1;
184
kind.
typeOverallMax
= 1;
225
kind.
typeOverallMax
= 1;
243
kind.
typeOverallMax
= 1;
374
kind.
typeOverallMax
= 1;
387
kind.
typeOverallMax
= 1;
396
kind.
typeOverallMax
= 1;
430
kind.
typeOverallMax
= 1;
439
kind.
typeOverallMax
= 1;
[
all
...]
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/
RawContactModifier.java
94
final boolean validOverall = (kind.
typeOverallMax
== -1)
95
|| (visibleCount < kind.
typeOverallMax
);
166
validOverall = (kind.
typeOverallMax
== -1 ? true
167
: overallCount < kind.
typeOverallMax
);
718
if ((kind.
typeOverallMax
!= 1) || GroupMembership.CONTENT_ITEM_TYPE.equals(mimeType)) {
734
if (kind.
typeOverallMax
!= -1 && count >= kind.
typeOverallMax
) {
735
Log.e(TAG, "Mimetype allows at most " + kind.
typeOverallMax
[
all
...]
/packages/experimental/LoaderApp/src/com/android/loaderapp/model/
ContactsSource.java
217
public int
typeOverallMax
;
234
this.
typeOverallMax
= -1;
ExchangeSource.java
71
kind.
typeOverallMax
= 1;
160
kind.
typeOverallMax
= 3;
216
kind.
typeOverallMax
= 3;
272
kind.
typeOverallMax
= 1;
/packages/apps/ContactsCommon/tests/src/com/android/contacts/common/
RawContactModifierTests.java
96
nameKind.
typeOverallMax
= 1;
104
phoneKind.
typeOverallMax
= 5;
120
emailKind.
typeOverallMax
= -1;
127
imKind.
typeOverallMax
= 1;
134
orgKind.
typeOverallMax
= 1;
[
all
...]
Completed in 373 milliseconds