OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:typeOverallMax
(Results
1 - 9
of
9
) 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
85
kind.
typeOverallMax
= 1;
114
kind.
typeOverallMax
= 1;
147
kind.
typeOverallMax
= 1;
162
kind.
typeOverallMax
= 1;
205
kind.
typeOverallMax
= 3;
258
kind.
typeOverallMax
= 3;
273
kind.
typeOverallMax
= 1;
288
kind.
typeOverallMax
= 1;
312
kind.
typeOverallMax
= 1;
330
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;
425
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
);
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
[
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/Contacts/src/com/android/contacts/editor/
KindSectionView.java
230
if (!mReadOnly && (mKind.
typeOverallMax
!= 1)) {
348
if (mKind.
typeOverallMax
== 1) {
RawContactEditorView.java
469
if ((kind.
typeOverallMax
== 1) && sectionView.getEditorCount() != 0) {
/packages/apps/ContactsCommon/tests/src/com/android/contacts/common/
RawContactModifierTests.java
95
nameKind.
typeOverallMax
= 1;
103
phoneKind.
typeOverallMax
= 5;
119
emailKind.
typeOverallMax
= -1;
126
imKind.
typeOverallMax
= 1;
133
orgKind.
typeOverallMax
= 1;
[
all
...]
Completed in 50 milliseconds