HomeSort by relevance Sort by last modified time
    Searched refs:maxLines (Results 1 - 25 of 57) sorted by null

1 2 3

  /frameworks/base/core/java/android/util/
LocalLog.java 34 public LocalLog(int maxLines) {
36 mMaxLines = maxLines;
  /external/libvncserver/libvncserver/
ultra.c 167 int maxLines;
177 maxLines = ( ULTRA_MAX_SIZE(w) / w );
187 if ( maxLines < linesRemaining )
188 linesToComp = maxLines;
216 ( linesToComp == maxLines )) {
zlib.c 266 int maxLines;
276 maxLines = ( ZLIB_MAX_SIZE(w) / w );
286 if ( maxLines < linesRemaining )
287 linesToComp = maxLines;
315 ( linesToComp == maxLines )) {
  /external/gptfdisk/
parttypes.h 63 void ShowAllTypes(int maxLines = 21) const;
parttypes.cc 380 // in an ugly way. The maxLines value is the maximum number of lines
383 void PartType::ShowAllTypes(int maxLines) const {
401 if ((maxLines > 0) && (lineCount++ % maxLines) == 0) {
415 } // PartType::ShowAllTypes(int maxLines)
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
ResizingTextView.java 219 final int maxLines = getMaxLines();
220 if (maxLines > 1) {
221 resizeText = lineCount == maxLines;
AbstractDetailsDescriptionPresenter.java 111 final int maxLines = titleLines > 1 ? mBodyMinLines : mBodyMaxLines;
112 if (mBody.getMaxLines() != maxLines) {
113 mBody.setMaxLines(maxLines);
  /device/generic/goldfish/libqemu/
test_guest_2.c 192 const int maxLines = 12;
201 if (++numLines >= maxLines) {
  /external/icu/icu4c/source/samples/layout/
gnomelayout.cpp 220 gint maxLines = context->paragraph->getLineCount() - 1;
224 context->paragraph->draw(&surface, firstLine, (maxLines < lastLine)? maxLines : lastLine);
cgnomelayout.c 212 gint maxLines = pf_getLineCount(context->paragraph) - 1;
216 pf_draw(context->paragraph, surface, firstLine, (maxLines < lastLine)? maxLines : lastLine);
  /packages/experimental/LoaderApp/src/com/android/loaderapp/fragments/
ContactEntryAdapter.java 47 public int maxLines = 1;
59 p.writeInt(maxLines);
73 maxLines = p.readInt();
ContactFragment.java 421 entry.maxLines = 4;
472 entry.maxLines = 100;
477 entry.maxLines = 10;
602 // Choose the max of the maxLines and maxLabelLines values.
603 maxLines = Math.max(maxLines, entry.maxLines);
726 setMaxLines(data, entry.maxLines);
786 private void setMaxLines(TextView textView, int maxLines) {
787 if (maxLines == 1)
    [all...]
  /packages/apps/Browser/src/com/android/browser/
SuggestionsAdapter.java 299 int maxLines = getMaxLines();
302 int n = Math.min(s.getCount(), maxLines);
303 maxLines -= n;
322 int maxLines = mLandscapeMode ? mLinesLandscape : mLinesPortrait;
323 maxLines = (int) Math.ceil(maxLines / 2.0);
324 return maxLines;
  /external/icu/icu4c/source/tools/ctestfw/
uperf.cpp 24 static const int MAXLINES = 40000;
216 lines = new ULine[MAXLINES];
217 int maxLines = MAXLINES;
232 if (numLines >= maxLines) {
233 maxLines += MAXLINES;
234 ULine *newLines = new ULine[maxLines];
  /development/samples/USB/AdbTest/src/com/android/adb/
AdbTestActivity.java 90 int maxLines = r.height() / mLog.getLineHeight() - 1;
96 while (index > 0 && count <= maxLines) {
101 // truncate to maxLines
  /cts/tests/tests/text/src/android/text/cts/
StaticLayoutLineBreakingTest.java 160 private static void layoutMaxLines(CharSequence source, int[] breaks, int maxLines) {
163 null, WIDTH, maxLines);
168 assertTrue("Number of lines", lineCount <= maxLines);
StaticLayoutTest.java 85 TextUtils.TruncateAt ellipsize, int maxLines) {
92 maxLines);
391 Integer.MAX_VALUE /* maxLines */);
415 Integer.MAX_VALUE /* maxLines */);
427 Integer.MAX_VALUE /* maxLines */);
439 Integer.MAX_VALUE /* maxLines */);
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/ui/conversationlist/
ConversationListItemView.java 370 final int maxLines;
376 maxLines = TextUtils.isEmpty(snippetText) ? 0 : NO_UNREAD_SNIPPET_LINE_COUNT;
380 maxLines = TextUtils.isEmpty(snippetText) ? 0 : UNREAD_SNIPPET_LINE_COUNT;
385 mSnippetTextView.setMaxLines(maxLines);
  /frameworks/base/core/java/android/text/
StaticLayout.java 263 * @param maxLines maximum number of lines in the layout
267 public Builder setMaxLines(int maxLines) {
268 mMaxLines = maxLines;
475 TextUtils.TruncateAt ellipsize, int ellipsizedWidth, int maxLines) {
490 .setMaxLines(maxLines);
515 mMaximumVisibleLineCount = maxLines;
    [all...]
  /packages/apps/Settings/src/com/android/settings/
DeviceAdminAdd.java 264 final int maxLines = getEllipsizedLines();
265 // hide the icon if number of visible lines does not exceed maxLines
266 boolean hideMsgExpander = mAddMsg.getLineCount() <= maxLines;
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
SubscriptionController.java 92 public ScLocalLog(int maxLines) {
94 mMaxLines = maxLines;
    [all...]
  /libcore/benchmarks/src/benchmarks/regression/
R.java     [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
TextViewTest.java     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.jface.text_3.6.1.r361_v20100825-0800.jar 
  /external/zxing/core/
core.jar 

Completed in 1104 milliseconds

1 2 3