[go: nahoru, domu]

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

/frameworks/base/core/java/android/text/
H A DBoringLayout.java325 public int getLineCount() { method in class:BoringLayout
H A DDynamicLayout.java270 endline = getLineCount();
272 boolean islast = (endline == getLineCount());
301 int n = reflowed.getLineCount();
447 * than getLineCount()
596 public int getLineCount() { method in class:DynamicLayout
H A DLayout.java504 final int bottom = Math.min(getLineTop(getLineCount()), dbottom);
615 return getLineTop(getLineCount());
650 public abstract int getLineCount(); method in class:Layout
653 * Return the baseline for the specified line (0…getLineCount() - 1)
656 * @param line which line to examine (0..getLineCount() - 1)
672 * (0…getLineCount()).
679 * Return the descent of the specified line(0…getLineCount() - 1).
685 * 0…getLineCount()). If the specified line is equal to the line
1101 int high = getLineCount(), low = -1, guess;
1124 int high = getLineCount(), lo
[all...]
H A DStaticLayout.java1135 public int getLineCount() { method in class:StaticLayout
/frameworks/base/core/java/android/widget/
H A DTextView.java2044 if (mLayout.getLineCount() <= mMaximum) {
2081 if (mLayout.getLineCount() <= mMaximum) {
5838 if (!mSingleLine && getLineCount() == 1 && canMarquee() &&
5930 public int getLineCount() { method in class:TextView
5931 return mLayout != null ? mLayout.getLineCount() : 0;
5935 * Return the baseline for the specified line (0...getLineCount() - 1)
5939 * @param line which line to examine (0..getLineCount() - 1)
6967 if (width > 0.0f && mLayout != null && getLineCount() == 1 && !mUserSetTextScaleX &&
6986 int n = layout.getLineCount();
7195 if (mMaxMode == LINES && mLayout.getLineCount() > mMaximu
[all...]

Completed in 171 milliseconds