Searched refs:mMaxLines (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/android/util/
H A DLocalLog.java33 private int mMaxLines; field in class:LocalLog
38 mMaxLines = maxLines;
43 if (mMaxLines > 0) {
46 while (mLog.size() > mMaxLines) mLog.remove();
/frameworks/base/core/java/com/android/internal/util/
H A DLocalLog.java32 private final int mMaxLines = 20; field in class:LocalLog
33 private final ArrayList<String> mLines = new ArrayList<String>(mMaxLines);
42 if (mLines.size() >= mMaxLines) {
/frameworks/ex/chips/src/com/android/ex/chips/
H A DRecipientEditTextView.java248 private int mMaxLines; field in class:RecipientEditTextView
764 mMaxLines = r.getInteger(R.integer.chips_max_lines);
1886 if (!isPhoneQuery() && getLineCount() > mMaxLines) {

Completed in 81 milliseconds