Searched refs:lineStart (Results 1 - 20 of 20) sorted by relevance

/macosx-10.9.5/pdisk-9/
H A Dlayout_dump.c155 int lineStart; local
160 for (lineStart = 0; lineStart < length; lineStart += lineLength) {
162 if (lineStart + lineLength > length)
163 lineLength = length - lineStart;
164 printf("%03x %3d:", lineStart, lineStart);
166 printf(" %02x", bufferPtr[lineStart + i] & 0xFF);
171 c = bufferPtr[lineStart
[all...]
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/
H A DContentProvider.js85 var lineStart = i > 0 ? lineEndings[i - 1] + 1 : 0;
87 var lineContent = content.substring(lineStart, lineEnd);
/macosx-10.9.5/WebCore-7537.78.1/loader/appcache/
H A DManifestParser.cpp76 const UChar* lineStart = p; local
83 if (*lineStart == '#')
88 while (tmp > lineStart && (*tmp == ' ' || *tmp == '\t'))
91 String line(lineStart, tmp - lineStart + 1);
/macosx-10.9.5/ICU-511.35/icuSources/samples/ugrep/
H A Dugrep.cpp57 int lineStart; // Index of first char of the current line in the file buffer variable
136 for (nextLine(0); lineStart<fileLen; nextLine(lineEnd)) {
137 UnicodeString s(FALSE, ucharBuf+lineStart, lineEnd-lineStart);
380 lineStart = lineEnd = startPos;
435 &ucharBuf[lineStart], // Input to conversion
436 lineEnd-lineStart, // number of UChars to convert
/macosx-10.9.5/ICU-511.35/icuSources/test/cintltst/
H A Dcbiditst.h65 int32_t lineStart, lineLimit; member in struct:__anon1236
H A Dcbiditst.c42 int32_t lineStart, UBool countRunsFirst);
198 int32_t lineStart; local
209 lineStart=tests[testNumber].lineStart;
210 if(lineStart==-1) {
213 ubidi_setLine(pBiDi, lineStart, tests[testNumber].lineLimit, pLine, &errorCode);
216 lineStart, tests[testNumber].lineLimit, ubidi_getDirection(pLine), ubidi_getParaLevel(pLine));
217 doTest(pLine, testNumber, tests+testNumber, lineStart, countRunsFirst);
220 testNumber, lineStart, tests[testNumber].lineLimit, myErrorName(errorCode));
1026 doTest(UBiDi *pBiDi, int testNumber, const BiDiTestData *test, int32_t lineStart, UBoo argument
[all...]
/macosx-10.9.5/WebCore-7537.78.1/editing/
H A DDictationCommand.h51 void insertTextRunWithoutNewlines(size_t lineStart, size_t lineLength);
H A DDictationCommand.cpp116 void DictationCommand::insertTextRunWithoutNewlines(size_t lineStart, size_t lineLength) argument
119 collectDictationAlternativesInRange(lineStart, lineLength, alternativesInLine);
120 RefPtr<InsertTextCommand> command = InsertTextCommand::createWithMarkerSupplier(document(), m_textToInsert.substring(lineStart, lineLength), DictationMarkerSupplier::create(alternativesInLine));
/macosx-10.9.5/tcl-102/tcl_ext/tklib/tklib/modules/ctext/
H A Dctext.tcl246 proc ctext::highlightAfterIdle {win lineStart lineEnd} {
250 set configAr(highlightAfterId) [after idle [list ctext::highlight $win $lineStart $lineEnd [set afterTriggered 1]]]
352 set lineStart [$self._t index "$deletePos linestart"]
358 # set removeStart $lineStart
364 set removeStart $lineStart
379 ctext::highlightAfterIdle $self $lineStart $lineEnd
388 set lineStart [$self._t index "$deleteStartPos linestart"]
394 $self._t tag remove $tag $lineStart $lineEnd
402 ctext::highlightAfterIdle $self $lineStart $lineEnd
437 set lineStart [
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/bytecompiler/
H A DBytecodeGenerator.h377 void emitExpressionInfo(int divot, int startOffset, int endOffset, unsigned line, int lineStart) argument
382 ASSERT(divot >= lineStart);
386 if (lineStart > sourceOffset)
387 lineStart -= sourceOffset;
389 lineStart = 0;
395 ASSERT(divot >= lineStart);
396 unsigned column = divot - lineStart;
473 RegisterID* emitCall(RegisterID* dst, RegisterID* func, ExpectedFunction, CallArguments&, unsigned divot, unsigned startOffset, unsigned endOffset, unsigned line, unsigned lineStart);
474 RegisterID* emitCallEval(RegisterID* dst, RegisterID* func, CallArguments&, unsigned divot, unsigned startOffset, unsigned endOffset, unsigned line, unsigned lineStart);
475 RegisterID* emitCallVarargs(RegisterID* dst, RegisterID* func, RegisterID* thisRegister, RegisterID* arguments, RegisterID* firstFreeRegister, RegisterID* profileHookRegister, unsigned divot, unsigned startOffset, unsigned endOffset, unsigned line, unsigned lineStart);
[all...]
H A DBytecodeGenerator.cpp1704 RegisterID* BytecodeGenerator::emitCall(RegisterID* dst, RegisterID* func, ExpectedFunction expectedFunction, CallArguments& callArguments, unsigned divot, unsigned startOffset, unsigned endOffset, unsigned line, unsigned lineStart) argument
1706 return emitCall(op_call, dst, func, expectedFunction, callArguments, divot, startOffset, endOffset, line, lineStart);
1737 RegisterID* BytecodeGenerator::emitCallEval(RegisterID* dst, RegisterID* func, CallArguments& callArguments, unsigned divot, unsigned startOffset, unsigned endOffset, unsigned line, unsigned lineStart) argument
1739 return emitCall(op_call_eval, dst, func, NoExpectedFunction, callArguments, divot, startOffset, endOffset, line, lineStart);
1817 RegisterID* BytecodeGenerator::emitCall(OpcodeID opcodeID, RegisterID* dst, RegisterID* func, ExpectedFunction expectedFunction, CallArguments& callArguments, unsigned divot, unsigned startOffset, unsigned endOffset, unsigned line, unsigned lineStart) argument
1840 emitExpressionInfo(divot, startOffset, endOffset, line, lineStart);
1874 RegisterID* BytecodeGenerator::emitCallVarargs(RegisterID* dst, RegisterID* func, RegisterID* thisRegister, RegisterID* arguments, RegisterID* firstFreeRegister, RegisterID* profileHookRegister, unsigned divot, unsigned startOffset, unsigned endOffset, unsigned line, unsigned lineStart) argument
1882 emitExpressionInfo(divot, startOffset, endOffset, line, lineStart);
1934 RegisterID* BytecodeGenerator::emitConstruct(RegisterID* dst, RegisterID* func, ExpectedFunction expectedFunction, CallArguments& callArguments, unsigned divot, unsigned startOffset, unsigned endOffset, unsigned line, unsigned lineStart) argument
1958 emitExpressionInfo(divot, startOffset, endOffset, line, lineStart);
2028 emitDebugHook(DebugHookID debugHookID, unsigned firstLine, unsigned lastLine, unsigned charOffset, unsigned lineStart) argument
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tklib/tklib/modules/ntext/
H A Dntext.tcl1752 set lineStart [$textWidget index "$index linestart"]
1753 set nextLineStart [$textWidget index "$lineStart + 1 line"]
1755 $textWidget tag add $tagName $lineStart $nextLineStart
1782 set lineStart [$textWidget index "$index linestart"]
1783 set secondDispLineStart [$textWidget index "$lineStart + 1 display line"]
1787 $newWrapRegexp $lineStart $secondDispLineStart]
1792 set pix [$textWidget count -xpixels $lineStart $indentTo]
1816 set lineStart [$textWidget index "$index linestart"]
1817 set nextLineStart [$textWidget index "$lineStart + 1 line"]
1819 set tagNames [$textWidget tag names $lineStart]
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/win/
H A DClipboardUtilitiesWin.cpp634 unsigned lineStart = cfhtml.find(srcURLStr, 0, false); local
635 if (lineStart != -1) {
636 unsigned srcEnd = cfhtml.find("\n", lineStart, false);
637 unsigned srcStart = lineStart+srcURLStr.length();
/macosx-10.9.5/JavaScriptCore-7537.78.1/parser/
H A DParser.cpp1152 unsigned lineStart = tokenLineStart(); local
1183 context.assignmentStackAppend(assignmentStack, lhs, start, tokenStart(), line, lineStart, m_assignmentCount, op);
1186 lineStart = tokenLineStart();
1540 int lineStart = tokenLineStart(); local
1546 return context.createResolve(location, ident, start, line, lineStart);
1587 int lineStart = tokenLineStart(); local
1590 TreeExpression re = context.createRegExp(location, *pattern, *flags, start, line, lineStart);
H A DNodes.h986 ReadModifyResolveNode(const JSTokenLocation&, const Identifier&, Operator, ExpressionNode* right, bool rightHasAssignments, unsigned divot, unsigned startOffset, unsigned endOffset, unsigned line, unsigned lineStart);
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/WebPage/mac/
H A DWebPageMac.mm539 VisiblePosition lineStart = startOfLine(contextStart);
540 if (!lineStart.isNull())
541 contextStart = lineStart;
/macosx-10.9.5/dyld-239.4/launch-cache/
H A Dupdate_dyld_shared_cache.cpp3107 enum { lineStart, inSymbol, inComment } state = lineStart; enumerator in enum:__anon8527
3111 case lineStart:
3140 state = lineStart;
3145 state = lineStart;
/macosx-10.9.5/WebCore-7537.78.1/accessibility/ios/
H A DWebAccessibilityObjectWrapperIOS.mm1900 VisiblePosition lineStart = m_object->previousLineStartPosition(start);
1902 return [WebAccessibilityTextMarker textMarkerWithVisiblePosition:lineStart cache:m_object->axObjectCache()];
/macosx-10.9.5/vim-53/src/
H A Dgui_mac.c801 long lineStart; local
826 lineStart = BufferSize;
838 STRCPY((char_u *)(fullbuffer + lineStart), line);
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/cm/
H A Dcodemirror.js3198 cm.extendSelection(lineStart(cm, cm.getCursor().line));
3201 var cur = cm.getCursor(), start = lineStart(cm, cur.line);
5278 function lineStart(cm, lineN) {

Completed in 426 milliseconds