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

1 2 3

  /external/opencv3/modules/cudaimgproc/src/
hough_segments.cpp 77 HoughSegmentDetectorImpl(float rho, float theta, int minLineLength, int maxLineGap, int maxLines) :
78 rho_(rho), theta_(theta), minLineLength_(minLineLength), maxLineGap_(maxLineGap), maxLines_(maxLines)
96 void setMaxLines(int maxLines) { maxLines_ = maxLines; }
106 << "maxLines" << maxLines_;
116 maxLines_ = (int)fn["maxLines"];
181 Ptr<HoughSegmentDetector> cv::cuda::createHoughSegmentDetector(float rho, float theta, int minLineLength, int maxLineGap, int maxLines)
183 return makePtr<HoughSegmentDetectorImpl>(rho, theta, minLineLength, maxLineGap, maxLines);
hough_lines.cpp 73 HoughLinesDetectorImpl(float rho, float theta, int threshold, bool doSort, int maxLines) :
74 rho_(rho), theta_(theta), threshold_(threshold), doSort_(doSort), maxLines_(maxLines)
93 void setMaxLines(int maxLines) { maxLines_ = maxLines; }
103 << "maxLines" << maxLines_;
113 maxLines_ = (int)fn["maxLines"];
206 Ptr<HoughLinesDetector> cv::cuda::createHoughLinesDetector(float rho, float theta, int threshold, bool doSort, int maxLines)
208 return makePtr<HoughLinesDetectorImpl>(rho, theta, threshold, doSort, maxLines);
  /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)
  /external/pdfium/xfa/src/fxbarcode/oned/
BC_OneDReader.cpp 54 int32_t maxLines;
56 maxLines = height;
58 maxLines = 15;
60 for (int32_t x = 0; x < maxLines; x++) {
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
ResizingTextView.java 218 final int maxLines = getMaxLines();
219 if (maxLines > 1) {
220 resizeText = lineCount == maxLines;
AbstractDetailsDescriptionPresenter.java 111 final int maxLines = titleLines > 1 ? mBodyMinLines : mBodyMaxLines;
112 if (mBody.getMaxLines() != maxLines) {
113 mBody.setMaxLines(maxLines);
GuidedActionsStylist.java 678 private static void setMaxLines(TextView view, int maxLines) {
681 if (maxLines == 1) {
685 view.setMaxLines(maxLines);
    [all...]
  /device/generic/goldfish/libqemu/
test_guest_2.c 192 const int maxLines = 12;
201 if (++numLines >= maxLines) {
  /frameworks/support/compat/tests/java/android/support/v4/testutils/
TextViewActions.java 37 public static ViewAction setMaxLines(final int maxLines) {
54 textView.setMaxLines(maxLines);
  /external/opencv3/modules/cudaimgproc/include/opencv2/
cudaimgproc.hpp 369 virtual void setMaxLines(int maxLines) = 0;
380 @param maxLines Maximum number of output lines.
382 CV_EXPORTS Ptr<HoughLinesDetector> createHoughLinesDetector(float rho, float theta, int threshold, bool doSort = false, int maxLines = 4096);
417 virtual void setMaxLines(int maxLines) = 0;
427 @param maxLines Maximum number of output lines.
429 CV_EXPORTS Ptr<HoughSegmentDetector> createHoughSegmentDetector(float rho, float theta, int minLineLength, int maxLineGap, int maxLines = 4096);
  /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...]
  /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
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WifiLogger.java 585 private ArrayList<String> getLogcat(int maxLines) {
586 ArrayList<String> lines = new ArrayList<String>(maxLines);
588 Process process = Runtime.getRuntime().exec(String.format("logcat -t %d", maxLines));
607 private LimitedCircularArray<String> getKernelLog(int maxLines) {
609 LimitedCircularArray<String> lines = new LimitedCircularArray<String>(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);
  /packages/apps/Messaging/src/com/android/messaging/ui/conversationlist/
ConversationListItemView.java 376 final int maxLines;
382 maxLines = TextUtils.isEmpty(snippetText) ? 0 : NO_UNREAD_SNIPPET_LINE_COUNT;
386 maxLines = TextUtils.isEmpty(snippetText) ? 0 : UNREAD_SNIPPET_LINE_COUNT;
391 mSnippetTextView.setMaxLines(maxLines);
  /frameworks/base/core/java/android/text/
StaticLayout.java 264 * @param maxLines maximum number of lines in the layout
268 public Builder setMaxLines(int maxLines) {
269 mMaxLines = maxLines;
477 TextUtils.TruncateAt ellipsize, int ellipsizedWidth, int maxLines) {
492 .setMaxLines(maxLines);
517 mMaximumVisibleLineCount = maxLines;
    [all...]
  /packages/apps/Settings/src/com/android/settings/
DeviceAdminAdd.java 304 final int maxLines = getEllipsizedLines();
305 // hide the icon if number of visible lines does not exceed maxLines
306 boolean hideMsgExpander = mAddMsg.getLineCount() <= maxLines;

Completed in 695 milliseconds

1 2 3