Searched defs:getLineCount (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/core/java/android/text/
H A DBoringLayout.java323 public int getLineCount() { method in class:BoringLayout
H A DDynamicLayout.java265 endline = getLineCount();
267 boolean islast = (endline == getLineCount());
288 int n = reflowed.getLineCount();
437 * than getLineCount()
586 public int getLineCount() { method in class:DynamicLayout
H A DStaticLayout.java844 public int getLineCount() { method in class:StaticLayout
H A DLayout.java457 final int bottom = Math.min(getLineTop(getLineCount()), dbottom);
568 return getLineTop(getLineCount());
603 public abstract int getLineCount(); method in class:Layout
606 * Return the baseline for the specified line (0…getLineCount() - 1)
609 * @param line which line to examine (0..getLineCount() - 1)
625 * (0…getLineCount()).
632 * Return the descent of the specified line(0…getLineCount() - 1).
638 * 0…getLineCount()). If the specified line is equal to the line
1010 int high = getLineCount(), low = -1, guess;
1033 int high = getLineCount(), lo
[all...]
/frameworks/base/core/java/android/widget/
H A DTextView.java1823 if (mLayout.getLineCount() <= mMaximum) {
1856 if (mLayout.getLineCount() <= mMaximum) {
5156 if (!mSingleLine && getLineCount() == 1 && canMarquee() &&
5248 public int getLineCount() { method in class:TextView
5249 return mLayout != null ? mLayout.getLineCount() : 0;
5253 * Return the baseline for the specified line (0...getLineCount() - 1)
5257 * @param line which line to examine (0..getLineCount() - 1)
6215 if (width > 0.0f && mLayout != null && getLineCount() == 1 && !mUserSetTextScaleX &&
6234 int n = layout.getLineCount();
6443 if (mMaxMode == LINES && mLayout.getLineCount() > mMaximu
[all...]

Completed in 114 milliseconds