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

/frameworks/base/core/java/android/text/
H A DBoringLayout.java297 @Override public int getLineCount() { method in class:BoringLayout
H A DDynamicLayout.java245 endline = getLineCount();
247 boolean islast = (endline == getLineCount());
266 int n = reflowed.getLineCount();
346 int n = getLineCount();
362 public int getLineCount() { method in class:DynamicLayout
H A DStaticLayout.java1190 public int getLineCount() { method in class:StaticLayout
H A DLayout.java163 // getLineBottom(getLineCount() -1) just calls getLineTop(getLineCount)
164 int bottom = getLineTop(getLineCount());
395 return getLineTop(getLineCount()); // same as getLineBottom(getLineCount() - 1);
422 public abstract int getLineCount(); method in class:Layout
425 * Return the baseline for the specified line (0…getLineCount() - 1)
428 * @param line which line to examine (0..getLineCount() - 1)
666 int high = getLineCount(), low = -1, guess;
689 int high = getLineCount(), lo
[all...]
/frameworks/base/core/java/android/widget/
H A DTextView.java1239 if (mLayout.getLineCount() <= mMaximum) {
1272 if (mLayout.getLineCount() <= mMaximum) {
3413 for (int i = 0; i < l.getLineCount(); i++) {
3939 if (!mSingleLine && getLineCount() == 1 && canMarquee() &&
4101 public int getLineCount() { method in class:TextView
4102 return mLayout != null ? mLayout.getLineCount() : 0;
4106 * Return the baseline for the specified line (0...getLineCount() - 1)
4110 * @param line which line to examine (0..getLineCount() - 1)
5007 if (width > 0.0f && mLayout != null && getLineCount() == 1 && !mUserSetTextScaleX &&
5026 int n = layout.getLineCount();
[all...]

Completed in 50 milliseconds