Searched refs:lineLength (Results 1 - 25 of 30) sorted by relevance

12

/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-core/Examples/ApplicationPlugins/Colloqui/Colloquy Plugin SDK/Headers/
H A DNSDataAdditions.h6 - (NSString *) base64EncodingWithLineLength:(unsigned int) lineLength;
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-core/Examples/ApplicationPlugins/Colloqui/Colloquy Plugin SDK/Headers/
H A DNSDataAdditions.h6 - (NSString *) base64EncodingWithLineLength:(unsigned int) lineLength;
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-core-2.5.1/Examples/ApplicationPlugins/Colloqui/Colloquy Plugin SDK/Headers/
H A DNSDataAdditions.h6 - (NSString *) base64EncodingWithLineLength:(unsigned int) lineLength;
/macosx-10.10/pdisk-9/
H A Dlayout_dump.c156 int lineLength; local
160 for (lineStart = 0; lineStart < length; lineStart += lineLength) {
161 lineLength = kLineSize;
162 if (lineStart + lineLength > length)
163 lineLength = length - lineStart;
165 for (i = 0; i < lineLength; i++)
170 for (i = 0; i < lineLength; i++) {
/macosx-10.10/WebCore-7600.1.25/editing/
H A DDictationCommand.cpp45 void operator()(size_t lineOffset, size_t lineLength, bool isLastLine) const argument
47 if (lineLength > 0)
48 m_dictationCommand->insertTextRunWithoutNewlines(lineOffset, lineLength);
114 void DictationCommand::insertTextRunWithoutNewlines(size_t lineStart, size_t lineLength) argument
117 collectDictationAlternativesInRange(lineStart, lineLength, alternativesInLine);
118 RefPtr<InsertTextCommand> command = InsertTextCommand::createWithMarkerSupplier(document(), m_textToInsert.substring(lineStart, lineLength), DictationMarkerSupplier::create(alternativesInLine));
H A DDictationCommand.h51 void insertTextRunWithoutNewlines(size_t lineStart, size_t lineLength);
H A DTypingCommand.cpp59 void operator()(size_t lineOffset, size_t lineLength, bool isLastLine) const argument
62 if (!lineOffset || lineLength > 0)
63 m_typingCommand->insertTextRunWithoutNewlines(m_text.substring(lineOffset, lineLength), m_selectInsertedText);
65 if (lineLength > 0)
66 m_typingCommand->insertTextRunWithoutNewlines(m_text.substring(lineOffset, lineLength), false);
/macosx-10.10/WebCore-7600.1.25/page/
H A DEventSource.cpp330 int lineLength = -1; local
332 for (unsigned int i = bufPos; lineLength < 0 && i < bufSize; i++) {
342 lineLength = i - bufPos;
347 if (lineLength < 0)
350 parseEventStreamLine(bufPos, fieldLength, lineLength);
351 bufPos += lineLength + 1;
365 void EventSource::parseEventStreamLine(unsigned bufPos, int fieldLength, int lineLength) argument
367 if (!lineLength) {
381 String field(&m_receiveBuf[bufPos], noValue ? lineLength : fieldLength);
384 step = lineLength;
[all...]
H A DEventSource.h103 void parseEventStreamLine(unsigned pos, int fieldLength, int lineLength);
/macosx-10.10/JavaScriptCore-7600.1.17/
H A DtestRegExp.cpp301 static RegExp* parseRegExpLine(VM& vm, char* line, int lineLength) argument
308 int i = scanString(line + 1, lineLength - 1, pattern, '/') + 1;
310 if ((i >= lineLength) || (line[i] != '/'))
318 static RegExpTest* parseTestLine(char* line, int lineLength) argument
325 int i = scanString(line + 2, lineLength - 2, subjectString, '"') + 2;
327 if ((i >= (lineLength - 2)) || (line[i] != '"') || (line[i+1] != ',') || (line[i+2] != ' '))
411 size_t lineLength = 0; local
416 lineLength = strlen(linePtr);
417 if (linePtr[lineLength - 1] == '\n') {
418 linePtr[lineLength
[all...]
/macosx-10.10/ICU-531.30/icuSources/tools/gendict/
H A Dgendict.cpp254 int32_t lineLength; local
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
[all...]
/macosx-10.10/WebCore-7600.1.25/Modules/websockets/
H A DWebSocketHandshake.cpp289 int lineLength = readStatusLine(header, len, statusCode, statusText); local
290 if (lineLength == -1)
313 const char* p = readHTTPHeaders(header + lineLength, header + len);
428 int lineLength = end - header; local
429 if (lineLength > maximumLength) {
435 if (lineLength < 2 || *(end - 2) != '\r') {
437 return lineLength;
441 m_failureReason = "No response code found: " + trimInputSample(header, lineLength - 2);
442 return lineLength;
447 return lineLength;
[all...]
/macosx-10.10/WebInspectorUI-7600.1.17/Tools/PrettyPrinting/
H A DCodeMirrorFormatters.js340 if ((state.state === "top" || state.state === "media") && state._cssPrettyPrint.lineLength > 60) {
341 state._cssPrettyPrint.lineLength = 0;
393 state._cssPrettyPrint = {lineLength: 0};
399 state._cssPrettyPrint.lineLength += content.length;
401 state._cssPrettyPrint.lineLength = 0;
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DCodeMirrorFormatters.js340 if ((state.state === "top" || state.state === "media") && state._cssPrettyPrint.lineLength > 60) {
341 state._cssPrettyPrint.lineLength = 0;
393 state._cssPrettyPrint = {lineLength: 0};
399 state._cssPrettyPrint.lineLength += content.length;
401 state._cssPrettyPrint.lineLength = 0;
/macosx-10.10/rsync-45/rsync/popt/
H A Dpopthelp.c115 singleOptionDefaultValue(int lineLength, argument
123 char * le = malloc(4*lineLength + 1);
160 size_t slen = 4*lineLength - (le - l) - sizeof("\"...\")");
193 int lineLength = 79 - indentLength; local
230 defs = singleOptionDefaultValue(lineLength, opt, translation_domain);
316 while (helpLength > lineLength) {
320 ch = help + lineLength - 1;
/macosx-10.10/WebKit-7600.1.25/mac/Misc/
H A DWebNSDataExtras.m321 SInt32 lineLength = eol - bytes;
330 if (lineLength == 0) {
343 NSString *newValue = (NSString *)CFMakeCollectable(CFStringCreateWithBytes(NULL, line, lineLength, kCFStringEncodingISOLatin1, FALSE));
/macosx-10.10/tcl-105/tk84/tk/generic/
H A DtkTextIndex.c779 int lineLength;
793 lineLength = 0;
796 lineLength += segPtr->size;
804 if (dstPtr->byteIndex < lineLength) {
807 dstPtr->byteIndex -= lineLength;
810 dstPtr->byteIndex = lineLength - 1;
770 int lineLength; local
H A DtkImgPhoto.c5103 int bitsPerPixel, bytesPerLine, lineLength;
5159 lineLength = masterPtr->width * 3;
5161 errLinePtr = instancePtr->error + yStart * lineLength + xStart * 3;
5208 c += errPtr[-lineLength-3];
5210 c += errPtr[-lineLength] * 5;
5212 c += errPtr[-lineLength+3] * 3;
5289 c += errPtr[-lineLength-1];
5291 c += errPtr[-lineLength] * 5;
5293 c += errPtr[-lineLength+1] * 3;
5360 c += errPtr[-lineLength
5072 int bitsPerPixel, bytesPerLine, lineLength; local
[all...]
/macosx-10.10/WebCore-7600.1.25/loader/archive/mhtml/
H A DMHTMLArchive.cpp228 size_t lineLength = std::min(encodedDataLength - index, maximumLineLength); local
229 mhtmlData->append(encodedData.data() + index, lineLength);
/macosx-10.10/ICU-531.30/icuSources/test/intltest/
H A Dcollationtest.cpp945 int32_t lineLength; local
946 const UChar *line = ucbuf_readline(f, &lineLength, errorCode);
953 const UChar *comment = u_memchr(line, 0x23, lineLength); // '#'
955 lineLength = (int32_t)(comment - line);
957 while(lineLength > 0 && isCROrLF(line[lineLength - 1])) { --lineLength; }
959 while(lineLength > 0 && isSpace(line[lineLength - 1])) { --lineLength; }
[all...]
/macosx-10.10/tcl-105/tk/tk/generic/
H A DtkTextIndex.c1419 int lineLength;
1433 lineLength = 0;
1436 lineLength += segPtr->size;
1444 if (dstPtr->byteIndex < lineLength) {
1447 dstPtr->byteIndex -= lineLength;
1450 dstPtr->byteIndex = lineLength - 1;
1402 int lineLength; local
H A DtkImgPhoto.c5095 int bitsPerPixel, bytesPerLine, lineLength;
5144 lineLength = masterPtr->width * 3;
5146 errLinePtr = instancePtr->error + yStart * lineLength + xStart * 3;
5197 c += errPtr[-lineLength-3];
5199 c += errPtr[-lineLength] * 5;
5201 c += errPtr[-lineLength+3] * 3;
5280 c += errPtr[-lineLength-1];
5282 c += errPtr[-lineLength] * 5;
5284 c += errPtr[-lineLength+1] * 3;
5353 c += errPtr[-lineLength
5064 int bitsPerPixel, bytesPerLine, lineLength; local
[all...]
/macosx-10.10/tcl-105/tk/tk/library/
H A Dmkpsenc.tcl1103 /lineLength 0 def
1286 /lineLength 0 def
1289 dup lineLength gt {/lineLength exch def} {pop} ifelse
1305 lineLength xoffset mul
1312 justify lineLength mul baseline neg translate
/macosx-10.10/tcl-105/tk84/tk/library/
H A Dmkpsenc.tcl1103 /lineLength 0 def
1286 /lineLength 0 def
1289 dup lineLength gt {/lineLength exch def} {pop} ifelse
1305 lineLength xoffset mul
1312 justify lineLength mul baseline neg translate
/macosx-10.10/ICU-531.30/icuSources/test/perf/dicttrieperf/
H A Ddicttrieperf.cpp627 int32_t lineLength=lines[i].len; local
628 for(int32_t j=1; j<lineLength; ++j) {

Completed in 1594 milliseconds

12