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

1 2

  /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/webkit/Source/WebCore/page/
EventSource.cpp 261 int lineLength = -1;
263 for (unsigned int i = bufPos; lineLength < 0 && i < bufSize; i++) {
272 lineLength = i - bufPos;
277 if (lineLength < 0)
280 parseEventStreamLine(bufPos, fieldLength, lineLength);
281 bufPos += lineLength + 1;
290 void EventSource::parseEventStreamLine(unsigned int bufPos, int fieldLength, int lineLength)
292 if (!lineLength) {
302 String field(&m_receiveBuf[bufPos], noValue ? lineLength : fieldLength);
305 step = lineLength;
    [all...]
  /external/icu4c/tools/gendict/
gendict.cpp 256 int32_t lineLength;
257 const UChar *line = ucbuf_readline(f, &lineLength, errorCode);
260 const UChar *comment = u_memchr(line, 0x23, lineLength); // '#'
262 lineLength = (int32_t)(comment - line);
264 while(lineLength > 0 && (line[lineLength - 1] == CARRIAGE_RETURN_CHARACTER || line[lineLength - 1] == LINEFEED_CHARACTER)) { --lineLength; }
266 while(lineLength > 0 && u_isspace(line[lineLength - 1])) { --lineLength;
    [all...]
  /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/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/skia/gm/
dashing.cpp 189 SkScalar lineLength,
211 pts[1].set(lineLength, SkIntToScalar(y));
220 pts[1].set(SkIntToScalar(x), lineLength);
  /external/nist-sip/java/gov/nist/javax/sip/parser/
StringMsgParser.java 163 int lineLength = i - lineStart;
167 currentLine = new String(msgBuffer, lineStart, lineLength, "UTF-8");
  /external/webkit/Source/WebCore/websockets/
WebSocketHandshake.cpp 319 int lineLength = readStatusLine(header, len, statusCode, statusText);
320 if (lineLength == -1)
340 const char* p = readHTTPHeaders(header + lineLength, header + len);
458 int lineLength = end - header;
461 m_context->addMessage(JSMessageSource, LogMessageType, ErrorMessageLevel, "No response code found: " + trimConsoleMessage(header, lineLength - 1), 0, clientOrigin(), 0);
462 return lineLength;
468 return lineLength;
473 return lineLength;
477 return lineLength;
485 return lineLength;
    [all...]