Home
last modified time | relevance | path

Searched refs:LINES (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/tests/notification/src/com/android/frameworks/tests/notification/
DNotificationTests.java91 static final String[] LINES = new String[] { field in NotificationTests
134 if (end > LINES.length) { in makeBigTextNotification()
135 end = LINES.length; in makeBigTextNotification()
139 if (i >= LINES.length) break; in makeBigTextNotification()
141 longSmsText.append(LINES[i]); in makeBigTextNotification()
/frameworks/support/compat/java/android/support/v4/widget/
DTextViewCompat.java66 private static final int LINES = 1; field in TextViewCompat.TextViewCompatBaseImpl
121 if (sMaxModeField != null && retrieveIntFromField(sMaxModeField, textView) == LINES) { in getMaxLines()
139 if (sMinModeField != null && retrieveIntFromField(sMinModeField, textView) == LINES) { in getMinLines()
/frameworks/base/core/java/android/widget/
DTextView.java337 private static final int LINES = 1; field in TextView
338 private static final int EMS = LINES;
657 private int mMaxMode = LINES;
659 private int mMinMode = LINES;
2622 if (mMaxMode != LINES) {
2659 if (mMaxMode != LINES) {
4456 mMinMode = LINES;
4475 return mMinMode == LINES ? mMinimum : -1;
4538 mMaxMode = LINES;
4557 return mMaxMode == LINES ? mMaximum : -1;
[all …]