Searched refs:getLineCount (Results 1 - 11 of 11) sorted by relevance

/frameworks/base/core/java/com/android/internal/widget/
H A DDialogTitle.java51 final int lineCount = layout.getLineCount();
H A DEditStyledText.java1521 if (line < layout.getLineCount() - 1) {
/frameworks/base/core/java/android/text/
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 DSelection.java178 if (line < layout.getLineCount() - 1) {
283 if (line < layout.getLineCount() - 1) {
370 if (line == layout.getLineCount() - 1)
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&hellip;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...]
H A DBoringLayout.java297 @Override public int getLineCount() { method in class:BoringLayout
H A DStaticLayout.java1190 public int getLineCount() { method in class:StaticLayout
/frameworks/base/core/java/android/text/method/
H A DScrollingMovementMethod.java135 if (line <= layout.getLineCount() - 1) {
224 int line = layout.getLineCount() - 1;
H A DArrowKeyMovementMethod.java380 if (layout.getLineCount() == 1) {
/frameworks/base/services/java/com/android/server/status/
H A DTicker.java57 int lineCount = l.getLineCount();
83 final int lineCount = l.getLineCount();
/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 115 milliseconds