HomeSort by relevance Sort by last modified time
    Searched refs:lineLength (Results 1 - 25 of 55) 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/smack/src/org/xbill/DNS/utils/
base64.java 64 * @param lineLength The number of characters per line
70 formatString(byte [] b, int lineLength, String prefix, boolean addClose) {
73 for (int i = 0; i < s.length(); i += lineLength) {
75 if (i + lineLength >= s.length()) {
81 sb.append(s.substring(i, i + lineLength));
  /external/chromium_org/third_party/WebKit/Source/core/page/
EventSource.cpp 339 int lineLength = -1;
341 for (unsigned i = bufPos; lineLength < 0 && i < bufSize; i++) {
350 lineLength = i - bufPos;
355 if (lineLength < 0)
358 parseEventStreamLine(bufPos, fieldLength, lineLength);
359 bufPos += lineLength + 1;
373 void EventSource::parseEventStreamLine(unsigned bufPos, int fieldLength, int lineLength)
375 if (!lineLength) {
389 String field(&m_receiveBuf[bufPos], noValue ? lineLength : fieldLength);
392 step = lineLength;
    [all...]
EventSource.h 110 void parseEventStreamLine(unsigned pos, int fieldLength, int lineLength);
  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
WebSocketHandshake.cpp 287 int lineLength = readStatusLine(header, len, statusCode, statusText);
288 if (lineLength == -1)
308 const char* p = readHTTPHeaders(header + lineLength, header + len);
414 int lineLength = end - header;
415 if (lineLength > maximumLength) {
421 if (lineLength < 2 || *(end - 2) != '\r') {
423 return lineLength;
427 m_failureReason = formatHandshakeFailureReason("No response code found in status line: " + trimInputSample(header, lineLength - 2));
428 return lineLength;
433 return lineLength;
    [all...]
  /external/chromium_org/third_party/icu/source/tools/gendict/
gendict.cpp 254 int32_t lineLength;
255 const UChar *line = ucbuf_readline(f, &lineLength, errorCode);
258 const UChar *comment = u_memchr(line, 0x23, lineLength); // '#'
260 lineLength = (int32_t)(comment - line);
262 while(lineLength > 0 && (line[lineLength - 1] == CARRIAGE_RETURN_CHARACTER || line[lineLength - 1] == LINEFEED_CHARACTER)) { --lineLength; }
264 while(lineLength > 0 && u_isspace(line[lineLength - 1])) { --lineLength;
    [all...]
  /external/icu/icu4c/source/tools/gendict/
gendict.cpp 254 int32_t lineLength;
255 const UChar *line = ucbuf_readline(f, &lineLength, errorCode);
258 const UChar *comment = u_memchr(line, 0x23, lineLength); // '#'
260 lineLength = (int32_t)(comment - line);
262 while(lineLength > 0 && (line[lineLength - 1] == CARRIAGE_RETURN_CHARACTER || line[lineLength - 1] == LINEFEED_CHARACTER)) { --lineLength; }
264 while(lineLength > 0 && u_isspace(line[lineLength - 1])) { --lineLength;
    [all...]
  /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 
  /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/smack/src/org/jivesoftware/smack/util/
Base64.java 660 int lineLength = 0;
665 lineLength += 4;
666 if( breakLines && lineLength == MAX_LINE_LENGTH )
670 lineLength = 0;
    [all...]
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/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/oprofile/libpopt/
popthelp.c 141 * @param lineLength display positions remaining
147 singleOptionDefaultValue(size_t lineLength,
155 char * le = malloc(4*lineLength + 1);
189 size_t slen = 4*lineLength - (le - l) - sizeof("\"...\")");
225 size_t lineLength = 79 - indentLength;
265 defs = singleOptionDefaultValue(lineLength, opt, translation_domain);
375 while (helpLength > lineLength) {
379 ch = help + lineLength - 1;
  /external/jsoncpp/src/lib_json/
json_writer.cpp 432 int lineLength = 4 + (size-1)*2; // '[ ' + ', '*n + ' ]'
436 lineLength += int( childValues_[index].length() );
440 isMultiLine = isMultiLine || lineLength >= rightMargin_;
709 int lineLength = 4 + (size-1)*2; // '[ ' + ', '*n + ' ]'
713 lineLength += int( childValues_[index].length() );
717 isMultiLine = isMultiLine || lineLength >= rightMargin_;
  /external/skia/src/gpu/effects/
GrDashingEffect.cpp 331 SkScalar lineLength = SkPoint::Distance(devicePts[0], devicePts[1]);
333 lineLength += 2.f * halfDevStroke;
335 devIntervals[0] = lineLength;
371 SkScalar lineLength = SkPoint::Distance(devicePts[0], devicePts[1]);
373 lineLength += 2.f * halfDevStroke;
380 lineLength, halfDevStroke);
  /libcore/luni/src/test/java/libcore/java/security/cert/
CertificateFactoryTest.java 212 int lineLength = 1;
218 while (lineLength < (maxLineLength - 4)) {
219 int end = offset + lineLength;
225 offset += lineLength;
233 throw new Exception("Fail at line length " + lineLength, e);
239 lineLength++;
  /external/chromium_org/third_party/WebKit/Source/platform/mhtml/
MHTMLArchive.cpp 205 size_t lineLength = std::min(encodedDataLength - index, maximumLineLength);
206 mhtmlData->append(encodedData.data() + index, lineLength);
  /external/chromium_org/third_party/WebKit/Source/core/editing/
TypingCommand.cpp 60 void operator()(size_t lineOffset, size_t lineLength, bool isLastLine) const
63 if (!lineOffset || lineLength > 0)
64 m_typingCommand->insertTextRunWithoutNewlines(m_text.substring(lineOffset, lineLength), m_selectInsertedText);
66 if (lineLength > 0)
67 m_typingCommand->insertTextRunWithoutNewlines(m_text.substring(lineOffset, lineLength), false);
  /external/chromium_org/third_party/skia/gm/
dashing.cpp 214 SkScalar lineLength,
236 pts[1].set(lineLength, SkIntToScalar(y));
245 pts[1].set(SkIntToScalar(x), lineLength);
  /external/skia/gm/
dashing.cpp 201 SkScalar lineLength,
223 pts[1].set(lineLength, SkIntToScalar(y));
232 pts[1].set(SkIntToScalar(x), lineLength);
  /external/chromium_org/ui/accessibility/extensions/caretbrowsing/
traverse_util.js 623 * @param {number} lineLength The maximum number of characters in a line.
630 startCursor, endCursor, nodesCrossed, lineLength, breakTags) {
634 if (str.length + word.length + 1 > lineLength)
659 * @param {number} lineLength The maximum number of characters in a line.
666 startCursor, endCursor, nodesCrossed, lineLength, breakTags) {
670 if (str.length + word.length + 1 > lineLength)
  /external/icu/icu4c/source/test/intltest/
collationtest.cpp     [all...]
  /external/chromium_org/third_party/skia/src/gpu/effects/
GrDashingEffect.cpp 336 SkScalar lineLength = SkPoint::Distance(devicePts[0], devicePts[1]);
338 lineLength += 2.f * halfDevStroke;
340 devIntervals[0] = lineLength;
389 SkScalar lineLength = SkPoint::Distance(devicePts[0], devicePts[1]);
391 lineLength += 2.f * halfDevStroke;
398 lineLength, halfDevStroke);
    [all...]

Completed in 1479 milliseconds

1 2 3