Searched refs:lastLine (Results 1 - 25 of 46) sorted by relevance

12

/macosx-10.9.5/msdosfs-198/
H A DHexDump.py12 lastLine = ""
20 if line == lastLine and not verbose:
28 lastLine = line
/macosx-10.9.5/ICU-511.35/icuSources/samples/layout/
H A Dpflow.h29 void pf_draw(pf_flow *flow, rs_surface *surface, le_int32 firstLine, le_int32 lastLine);
H A Dparagraph.h44 void draw(RenderingSurface *surface, le_int32 firstLine, le_int32 lastLine);
H A Dgnomelayout.cpp221 gint firstLine = 0, lastLine = context->height / context->paragraph->getLineHeight(); local
224 context->paragraph->draw(&surface, firstLine, (maxLines < lastLine)? maxLines : lastLine);
H A Dcgnomelayout.c213 gint firstLine = 0, lastLine = context->height / pf_getLineHeight(context->paragraph); local
216 pf_draw(context->paragraph, surface, firstLine, (maxLines < lastLine)? maxLines : lastLine);
H A Dclayout.c233 le_int32 firstLine, lastLine; local
252 lastLine = min (si.nPos + (le_int32) si.nPage, pf_getLineCount(context->paragraph) - 1);
254 pf_draw(context->paragraph, surface, firstLine, lastLine);
H A Dlayout.cpp231 le_int32 firstLine, lastLine; local
250 lastLine = min (si.nPos + (le_int32) si.nPage, context->paragraph->getLineCount() - 1);
252 context->paragraph->draw(surface, firstLine, lastLine);
H A Dparagraph.cpp216 void Paragraph::draw(RenderingSurface *surface, le_int32 firstLine, le_int32 lastLine) argument
223 for (li = firstLine; li <= lastLine; li += 1) {
H A Dpflow.c315 void pf_draw(pf_flow *flow, rs_surface *surface, le_int32 firstLine, le_int32 lastLine) argument
323 for (li = firstLine; li <= lastLine; li += 1) {
/macosx-10.9.5/WebCore-7537.78.1/css/
H A DMediaList.h63 int lastLine() const { return m_lastLine; } function in class:WebCore::MediaQuerySet
64 void setLastLine(int lastLine) { m_lastLine = lastLine; } argument
/macosx-10.9.5/tcl-102/tk84/tk/library/demos/
H A Dwidget117 set lastLine ""
119 set lastLine [.t index {@%x,%y linestart}]
120 .t tag add hot "$lastLine +1 chars" "$lastLine lineend -1 chars"
131 if {[string compare $newLine $lastLine] != 0} {
133 set lastLine $newLine
138 .t tag add hot "$lastLine +1 chars" "$lastLine lineend -1 chars"
/macosx-10.9.5/WebCore-7537.78.1/rendering/
H A DEllipsisBox.cpp78 RootInlineBox* lastLine = block->lineAtIndex(block->lineCount() - 1); local
79 if (!lastLine)
84 InlineBox* anchorBox = lastLine->lastChild();
/macosx-10.9.5/tcl-102/tk/tk/library/demos/
H A Dwidget198 set lastLine ""
200 set lastLine [.t index {@%x,%y linestart}]
201 .t tag add hot "$lastLine +1 chars" "$lastLine lineend -1 chars"
212 if {$newLine ne $lastLine} {
214 set lastLine $newLine
219 .t tag add hot "$lastLine +1 chars" "$lastLine lineend -1 chars"
/macosx-10.9.5/JavaScriptCore-7537.78.1/runtime/
H A DCodeCache.cpp91 executable->recordParse(rootNode->features(), rootNode->hasCapturedVariables(), rootNode->lineNo(), rootNode->lastLine(), rootNode->startColumn());
94 unlinkedCode->recordParse(rootNode->features(), rootNode->hasCapturedVariables(), rootNode->lineNo() - source.firstLine(), rootNode->lastLine() - rootNode->lineNo());
H A DExecutable.h384 int lastLine() const { return m_lastLine; } function in class:JSC::ScriptExecutable
398 void recordParse(CodeFeatures features, bool hasCapturedVariables, int firstLine, int lastLine, unsigned startColumn) argument
403 m_lastLine = lastLine;
579 static FunctionExecutable* create(VM& vm, const SourceCode& source, UnlinkedFunctionExecutable* unlinkedExecutable, unsigned firstLine, unsigned lastLine, unsigned startColumn) argument
581 FunctionExecutable* executable = new (NotNull, allocateCell<FunctionExecutable>(vm.heap)) FunctionExecutable(vm, source, unlinkedExecutable, firstLine, lastLine, startColumn);
752 FunctionExecutable(VM&, const SourceCode&, UnlinkedFunctionExecutable*, unsigned firstLine, unsigned lastLine, unsigned startColumn);
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/
H A DSASSSourceMapping.js165 var lastLine = lines[lines.length - 1]; variable
166 var match = lastLine.match(sourceMapRegex);
/macosx-10.9.5/JavaScriptCore-7537.78.1/bytecompiler/
H A DNodesCodegen.cpp1485 generator.emitDebugHook(WillExecuteStatement, firstLine(), lastLine(), startOffset(), lineStartOffset());
1528 generator.emitDebugHook(WillExecuteStatement, firstLine(), lastLine(), startOffset(), lineStartOffset());
1535 generator.emitDebugHook(DidReachBreakpoint, firstLine(), lastLine(), startOffset(), lineStartOffset());
1543 generator.emitDebugHook(WillExecuteStatement, firstLine(), lastLine(), startOffset(), lineStartOffset());
1552 generator.emitDebugHook(WillExecuteStatement, firstLine(), lastLine(), startOffset(), lineStartOffset());
1597 generator.emitDebugHook(WillExecuteStatement, firstLine(), lastLine(), startOffset(), lineStartOffset());
1634 generator.emitDebugHook(WillExecuteStatement, lastLine(), lastLine(), startOffset(), lineStartOffset());
1639 generator.emitDebugHook(WillExecuteStatement, lastLine(), lastLine(), startOffse
[all...]
/macosx-10.9.5/ruby-104/ruby/ext/tk/sample/demos-en/
H A Dwidget232 lastLine = TkVariable.new("")
235 lastLine.value = txt.index("@#{x},#{y} linestart")
236 tag_hot.add(lastLine.value, "#{lastLine.value} lineend")
248 if newLine.value != lastLine.value
250 lastLine.value = newLine.value
254 tag_hot.add(lastLine.value,
255 "#{lastLine.value} lineend -1 chars")
/macosx-10.9.5/JavaScriptCore-7537.78.1/parser/
H A DNodes.cpp55 void StatementNode::setLoc(unsigned firstLine, unsigned lastLine, int startOffset, int lineStartOffset) argument
58 m_lastLine = lastLine;
/macosx-10.9.5/ICU-511.35/icuSources/tools/gencnval/
H A Dgencnval.c324 char lastLine[MAX_LINE_SIZE]; local
341 while (T_FileStream_readLine(in, lastLine, MAX_LINE_SIZE) != NULL) {
342 lastLineSize = chomp(lastLine);
343 if (lineSize == 0 || (lastLineSize > 0 && isspace((int)*lastLine))) {
344 uprv_strcpy(line + lineSize, lastLine);
375 uprv_strcpy(line, lastLine);
/macosx-10.9.5/llvmCore-3425.0.33/tools/llvm-objdump/
H A DMachODump.cpp464 DILineInfo lastLine; local
482 if (dli != lastLine && dli.getLine() != 0)
485 lastLine = dli;
603 DILineInfo lastLine; local
650 if (dli != lastLine && dli.getLine() != 0)
653 lastLine = dli;
/macosx-10.9.5/ruby-104/ruby/ext/tk/sample/demos-jp/
H A Dwidget250 lastLine = TkVariable.new("")
253 lastLine.value = txt.index("@#{x},#{y} linestart")
254 tag_hot.add(lastLine.value, "#{lastLine.value} lineend")
266 if newLine.value != lastLine.value
268 lastLine.value = newLine.value
272 tag_hot.add(lastLine.value,
273 "#{lastLine.value} lineend -1 chars")
/macosx-10.9.5/JavaScriptCore-7537.78.1/bytecode/
H A DUnlinkedCodeBlock.cpp62 executable->recordParse(body->features(), body->hasCapturedVariables(), body->lineNo(), body->lastLine());
93 , m_lineCount(node->lastLine() - node->firstLine())
/macosx-10.9.5/JavaScriptCore-7537.78.1/interpreter/
H A DInterpreter.h222 NEVER_INLINE void debug(CallFrame*, DebugHookID, int firstLine, int lastLine, int column);
H A DInterpreter.cpp424 debugger->returnEvent(debuggerCallFrame, codeBlock->ownerExecutable()->sourceID(), codeBlock->ownerExecutable()->lastLine(), 0);
426 debugger->didExecuteProgram(debuggerCallFrame, codeBlock->ownerExecutable()->sourceID(), codeBlock->ownerExecutable()->lastLine(), 0);
1364 NEVER_INLINE void Interpreter::debug(CallFrame* callFrame, DebugHookID debugHookID, int firstLine, int lastLine, int column) argument
1375 debugger->returnEvent(callFrame, callFrame->codeBlock()->ownerExecutable()->sourceID(), lastLine, column);
1384 debugger->didExecuteProgram(callFrame, callFrame->codeBlock()->ownerExecutable()->sourceID(), lastLine, column);
1387 debugger->didReachBreakpoint(callFrame, callFrame->codeBlock()->ownerExecutable()->sourceID(), lastLine, column);

Completed in 168 milliseconds

12