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

12

/external/icu4c/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) {
/external/webkit/Source/JavaScriptCore/parser/
H A DParser.cpp64 ParserArenaData<DeclarationStacks::FunctionStack>* funcStack, CodeFeatures features, int lastLine, int numConstants, IdentifierSet& capturedVars)
71 m_lastLine = lastLine;
63 didFinishParsing(SourceElements* sourceElements, ParserArenaData<DeclarationStacks::VarStack>* varStack, ParserArenaData<DeclarationStacks::FunctionStack>* funcStack, CodeFeatures features, int lastLine, int numConstants, IdentifierSet& capturedVars) argument
H A DParser.h57 int lastLine, int numConstants, IdentifierSet&);
H A DNodes.cpp55 void StatementNode::setLoc(int firstLine, int lastLine) argument
58 m_lastLine = lastLine;
/external/webkit/Source/JavaScriptCore/runtime/
H A DExecutable.cpp75 FunctionExecutable::FunctionExecutable(JSGlobalData* globalData, const Identifier& name, const SourceCode& source, bool forceUsesArguments, FunctionParameters* parameters, bool inStrictContext, int firstLine, int lastLine) argument
84 m_lastLine = lastLine;
87 FunctionExecutable::FunctionExecutable(ExecState* exec, const Identifier& name, const SourceCode& source, bool forceUsesArguments, FunctionParameters* parameters, bool inStrictContext, int firstLine, int lastLine) argument
96 m_lastLine = lastLine;
110 recordParse(evalNode->features(), evalNode->hasCapturedVariables(), evalNode->lineNo(), evalNode->lastLine());
169 recordParse(programNode->features(), programNode->hasCapturedVariables(), programNode->lineNo(), programNode->lastLine());
243 recordParse(body->features(), body->hasCapturedVariables(), body->lineNo(), body->lastLine());
291 recordParse(body->features(), body->hasCapturedVariables(), body->lineNo(), body->lastLine());
364 return FunctionExecutable::create(&exec->globalData(), functionName, body->source(), body->usesArguments(), body->parameters(), body->isStrictMode(), body->lineNo(), body->lastLine());
H A DExecutable.h183 int lastLine() const { return m_lastLine; } function in class:JSC::ScriptExecutable
191 void recordParse(CodeFeatures features, bool hasCapturedVariables, int firstLine, int lastLine) argument
196 m_lastLine = lastLine;
298 static FunctionExecutable* create(ExecState* exec, const Identifier& name, const SourceCode& source, bool forceUsesArguments, FunctionParameters* parameters, bool isInStrictContext, int firstLine, int lastLine) argument
300 return new (exec) FunctionExecutable(exec, name, source, forceUsesArguments, parameters, isInStrictContext, firstLine, lastLine);
303 static FunctionExecutable* create(JSGlobalData* globalData, const Identifier& name, const SourceCode& source, bool forceUsesArguments, FunctionParameters* parameters, bool isInStrictContext, int firstLine, int lastLine) argument
305 return new (globalData) FunctionExecutable(globalData, name, source, forceUsesArguments, parameters, isInStrictContext, firstLine, lastLine);
378 FunctionExecutable(JSGlobalData*, const Identifier& name, const SourceCode&, bool forceUsesArguments, FunctionParameters*, bool, int firstLine, int lastLine);
379 FunctionExecutable(ExecState*, const Identifier& name, const SourceCode&, bool forceUsesArguments, FunctionParameters*, bool, int firstLine, int lastLine);
/external/webkit/Source/JavaScriptCore/bytecompiler/
H A DNodesCodegen.cpp1330 generator.emitDebugHook(WillExecuteStatement, firstLine(), lastLine());
1373 generator.emitDebugHook(WillExecuteStatement, firstLine(), lastLine());
1381 generator.emitDebugHook(DidReachBreakpoint, firstLine(), lastLine());
1390 generator.emitDebugHook(WillExecuteStatement, firstLine(), lastLine());
1399 generator.emitDebugHook(WillExecuteStatement, firstLine(), lastLine());
1407 generator.emitDebugHook(WillExecuteStatement, firstLine(), lastLine());
1431 generator.emitDebugHook(WillExecuteStatement, firstLine(), lastLine());
1467 generator.emitDebugHook(WillExecuteStatement, firstLine(), lastLine());
1519 generator.emitDebugHook(WillExecuteStatement, firstLine(), lastLine());
1533 generator.emitDebugHook(WillExecuteStatement, firstLine(), lastLine());
[all...]
H A DBytecodeGenerator.h372 void emitDebugHook(DebugHookID, int firstLine, int lastLine);
482 return FunctionExecutable::create(exec, body->ident(), body->source(), body->usesArguments(), body->parameters(), body->isStrictMode(), body->lineNo(), body->lastLine());
487 return FunctionExecutable::create(globalData, body->ident(), body->source(), body->usesArguments(), body->parameters(), body->isStrictMode(), body->lineNo(), body->lastLine());
/external/webkit/Source/JavaScriptCore/interpreter/
H A DInterpreter.h112 NEVER_INLINE void debug(CallFrame*, DebugHookID, int firstLine, int lastLine);
H A DInterpreter.cpp550 debugger->returnEvent(debuggerCallFrame, codeBlock->ownerExecutable()->sourceID(), codeBlock->ownerExecutable()->lastLine());
552 debugger->didExecuteProgram(debuggerCallFrame, codeBlock->ownerExecutable()->sourceID(), codeBlock->ownerExecutable()->lastLine());
1158 NEVER_INLINE void Interpreter::debug(CallFrame* callFrame, DebugHookID debugHookID, int firstLine, int lastLine) argument
1169 debugger->returnEvent(callFrame, callFrame->codeBlock()->ownerExecutable()->sourceID(), lastLine);
1178 debugger->didExecuteProgram(callFrame, callFrame->codeBlock()->ownerExecutable()->sourceID(), lastLine);
1181 debugger->didReachBreakpoint(callFrame, callFrame->codeBlock()->ownerExecutable()->sourceID(), lastLine);
4719 /* debug debugHookID(n) firstLine(n) lastLine(n)
4726 int lastLine = vPC[3].u.operand;
4728 debug(callFrame, static_cast<DebugHookID>(debugHookID), firstLine, lastLine);
/external/icu4c/tools/gencnval/
H A Dgencnval.c314 char lastLine[MAX_LINE_SIZE]; local
331 while (T_FileStream_readLine(in, lastLine, MAX_LINE_SIZE) != NULL) {
332 lastLineSize = chomp(lastLine);
333 if (lineSize == 0 || (lastLineSize > 0 && isspace(*lastLine))) {
334 uprv_strcpy(line + lineSize, lastLine);
365 uprv_strcpy(line, lastLine);
/external/llvm/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;
/external/webkit/Source/WebCore/rendering/
H A DRenderFlexibleBox.cpp900 RootInlineBox* lastLine = blockChild->lineAtIndex(lineCount - 1); local
901 if (!lastLine)
915 InlineBox* anchorBox = lastLine->lastChild();
925 RenderBlock* srcBlock = toRenderBlock(lastLine->renderer());
H A DRenderBlockLineLayout.cpp298 RootInlineBox* RenderBlock::constructLine(BidiRunList<BidiRun>& bidiRuns, bool firstLine, bool lastLine) argument
358 lastLineBox()->determineSpacingForFlowBoxes(lastLine, isLogicallyLastRunWrapped, bidiRuns.logicallyLastRun()->m_object);
1458 RootInlineBox* lastLine = endLine; local
1459 while (RootInlineBox* nextLine = lastLine->nextRootBox())
1460 lastLine = nextLine;
1462 int logicalBottom = lastLine->blockLogicalHeight() + abs(delta);
1495 RootInlineBox* lastLine = endLine; local
1496 while (RootInlineBox* nextLine = lastLine->nextRootBox())
1497 lastLine = nextLine;
1499 int logicalBottom = lastLine
[all...]
H A DInlineFlowBox.h162 void determineSpacingForFlowBoxes(bool lastLine, bool isLogicallyLastRunWrapped, RenderObject* logicallyLastRunRenderer);
H A DRenderBox.cpp2558 InlineFlowBox* lastLine = flow->lastLineBox(); local
2559 if (firstLine && lastLine && firstLine != lastLine) {
2560 logicalLeftPos = logicalLeftValue + marginLogicalLeftValue + lastLine->borderLogicalLeft() + (lastLine->logicalLeft() - firstLine->logicalLeft());
2983 InlineFlowBox* lastLine = flow->lastLineBox(); local
2984 if (firstLine && lastLine && firstLine != lastLine) {
2985 setLogicalLeft(logicalLeftValue + marginLogicalLeftAlias + lastLine->borderLogicalLeft() + (lastLine
[all...]
H A DInlineFlowBox.cpp289 void InlineFlowBox::determineSpacingForFlowBoxes(bool lastLine, bool isLogicallyLastRunWrapped, RenderObject* logicallyLastRunRenderer) argument
321 && ((lastLine || isLastObjectOnLine) && !inlineFlow->continuation()))
325 && ((lastLine || isLastObjectOnLine) && !inlineFlow->continuation()))
337 currFlow->determineSpacingForFlowBoxes(lastLine, isLogicallyLastRunWrapped, logicallyLastRunRenderer);
/external/icu4c/test/cintltst/
H A Dcucdtst.c3303 static char *lastLine= (char *)"10FFFF; C; 10FFFF;"; local
3315 fields[0][0]=lastLine;
3316 fields[0][1]=lastLine+6;
3317 fields[1][0]=lastLine+7;
3318 fields[1][1]=lastLine+9;
3319 fields[2][0]=lastLine+10;
3320 fields[2][1]=lastLine+17;

Completed in 1374 milliseconds

12