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

1 2 3

  /cts/tests/tests/graphics/src/android/graphics/cts/
DiscretePathEffectTest.java 92 int lineLength = END_X - START_X;
94 assertTrue(numGreenPixels >= lineLength);
100 assertTrue(intersect < lineLength);
102 assertTrue(intersect >= lineLength / SEGMENT_LENGTH);
  /external/sl4a/Common/src/org/apache/commons/codec/binary/
Base64Codec.java 156 private final int lineLength;
159 * Line separator for encoding. Not used when decoding. Only used if lineLength > 0.
192 * make sure each encoded line never goes beyond lineLength (if lineLength > 0).
260 * @param lineLength
262 * If lineLength <= 0, then the output will not be divided into lines (chunks). Ignored when decoding.
265 public Base64Codec(int lineLength) {
266 this(lineLength, CHUNK_SEPARATOR);
282 * @param lineLength
284 * If lineLength <= 0, then the output will not be divided into lines (chunks). Ignored when decoding
    [all...]
  /external/icu/icu4c/source/test/intltest/
datadrivennumberformattestsuite.cpp 178 int32_t lineLength;
179 const UChar *line = ucbuf_readline(f, &lineLength, &status);
189 while(lineLength > 0 && isCROrLF(line[lineLength - 1])) { --lineLength; }
190 fFileLine.setTo(FALSE, line, lineLength);
191 while(lineLength > 0 && isSpace(line[lineLength - 1])) { --lineLength; }
192 if (lineLength == 0)
    [all...]
  /external/icu/icu4c/source/tools/gendict/
gendict.cpp 221 int32_t lineLength;
222 const UChar *line = ucbuf_readline(f, &lineLength, errorCode);
225 const UChar *comment = u_memchr(line, 0x23, lineLength); // '#'
227 lineLength = (int32_t)(comment - line);
229 while(lineLength > 0 && (line[lineLength - 1] == CARRIAGE_RETURN_CHARACTER || line[lineLength - 1] == LINEFEED_CHARACTER)) { --lineLength; }
231 while(lineLength > 0 && u_isspace(line[lineLength - 1])) { --lineLength;
    [all...]
  /external/opencv3/modules/cudaimgproc/src/cuda/
hough_segments.cu 59 const int lineGap, const int lineLength,
70 if (curVotes >= lineLength &&
180 bool good_line = ::abs(line_end[1].x - line_end[0].x) >= lineLength ||
181 ::abs(line_end[1].y - line_end[0].y) >= lineLength;
200 bool good_line = ::abs(line_end[1].x - line_end[0].x) >= lineLength ||
201 ::abs(line_end[1].y - line_end[0].y) >= lineLength;
217 int houghLinesProbabilistic_gpu(PtrStepSzb mask, PtrStepSzi accum, int4* out, int maxSize, float rho, float theta, int lineGap, int lineLength)
232 lineGap, lineLength,
  /frameworks/ex/common/tools/
make-iana-tld-pattern.py 33 self.lineLength = len(TAB)
37 self.lineLength += len(other)
41 if self.lineLength > 90:
45 self.lineLength = len(TAB)
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/apache/maven/plugins/maven-deploy-plugin/2.5/
maven-deploy-plugin-2.5.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/apache/maven/plugins/maven-install-plugin/2.3.1/
maven-install-plugin-2.3.1.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/apache/maven/plugins/maven-resources-plugin/2.4.3/
maven-resources-plugin-2.4.3.jar 
  /prebuilts/tools/common/m2/repository/org/apache/maven/plugins/maven-antrun-plugin/1.3/
maven-antrun-plugin-1.3.jar 
  /prebuilts/tools/common/m2/repository/org/apache/maven/plugins/maven-deploy-plugin/2.7/
maven-deploy-plugin-2.7.jar 
  /prebuilts/tools/common/m2/repository/org/apache/maven/plugins/maven-install-plugin/2.4/
maven-install-plugin-2.4.jar 
  /external/opencv/otherlibs/highgui/
grfmt_pxm.cpp 389 int lineLength;
394 lineLength = channels * width * depth / 8;
396 lineLength = (6 * channels + (channels > 1 ? 2 : 0)) * width + 32;
398 if( bufferSize < lineLength )
399 bufferSize = lineLength;
  /external/opencv3/modules/imgcodecs/src/
grfmt_pxm.cpp 398 int lineLength;
402 lineLength = width * (int)img.elemSize();
404 lineLength = (6 * channels + (channels > 1 ? 2 : 0)) * width + 32;
406 if( bufferSize < lineLength )
407 bufferSize = lineLength;
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/apache/maven/plugins/maven-clean-plugin/2.5/
maven-clean-plugin-2.5.jar 
  /prebuilts/tools/common/m2/repository/kr/motd/maven/os-maven-plugin/1.2.3.Final/
os-maven-plugin-1.2.3.Final.jar 
  /prebuilts/tools/common/m2/repository/org/apache/maven/plugins/maven-clean-plugin/2.5/
maven-clean-plugin-2.5.jar 
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/time/
RadialSelectorView.java 312 int lineLength = mLineLength;
313 lineLength -= mSelectionRadius;
314 pointX = mXCenter + (int) (lineLength * Math.sin(mSelectionRadians));
315 pointY = mYCenter - (int) (lineLength * Math.cos(mSelectionRadians));
  /external/jsoncpp/src/lib_json/
json_writer.cpp 372 int lineLength = 4 + (size - 1) * 2; // '[ ' + ', '*n + ' ]'
375 lineLength += int(childValues_[index].length());
378 isMultiLine = isMultiLine || lineLength >= rightMargin_;
595 int lineLength = 4 + (size - 1) * 2; // '[ ' + ', '*n + ' ]'
598 lineLength += int(childValues_[index].length());
601 isMultiLine = isMultiLine || lineLength >= rightMargin_;
  /libcore/luni/src/test/java/libcore/java/security/cert/
CertificateFactoryTest.java 215 int lineLength = 1;
221 while (lineLength < (maxLineLength - 4)) {
222 int end = offset + lineLength;
228 offset += lineLength;
236 throw new Exception("Fail at line length " + lineLength, e);
242 lineLength++;
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapbMessageMime.java 335 int partLength, lineLength = 0;
336 lineLength += headerName.getBytes().length;
341 if(lineLength + partLength >= 998) // max line length in RFC2822
344 lineLength = 0;
347 lineLength += partLength;
  /external/dng_sdk/source/
dng_parse_utils.cpp     [all...]
  /external/opencv3/modules/cudaimgproc/src/
hough_segments.cpp 68 int houghLinesProbabilistic_gpu(PtrStepSzb mask, PtrStepSzi accum, int4* out, int maxSize, float rho, float theta, int lineGap, int lineLength);
  /external/autotest/client/cros/graphics/
drm.py 360 lineLength = fb.width * fb.bpp // 8
372 channels = m.read(lineLength)
  /external/robolectric/v1/lib/main/
commons-codec-1.6.jar 

Completed in 5009 milliseconds

1 2 3