/external/webkit/Source/JavaScriptCore/runtime/ |
D | Executable.h | 183 int lastLine() const { return m_lastLine; } in lastLine() function 191 … void recordParse(CodeFeatures features, bool hasCapturedVariables, int firstLine, int lastLine) in recordParse() argument 196 m_lastLine = lastLine; in recordParse() 298 …UsesArguments, FunctionParameters* parameters, bool isInStrictContext, int firstLine, int lastLine) in create() argument 300 …utable(exec, name, source, forceUsesArguments, parameters, isInStrictContext, firstLine, lastLine); in create() 303 …UsesArguments, FunctionParameters* parameters, bool isInStrictContext, int firstLine, int lastLine) in create() argument 305 …(globalData, name, source, forceUsesArguments, parameters, isInStrictContext, firstLine, lastLine); in create() 378 …onst SourceCode&, bool forceUsesArguments, FunctionParameters*, bool, int firstLine, int lastLine); 379 …onst SourceCode&, bool forceUsesArguments, FunctionParameters*, bool, int firstLine, int lastLine);
|
D | Executable.cpp | 75 …ceUsesArguments, FunctionParameters* parameters, bool inStrictContext, int firstLine, int lastLine) in FunctionExecutable() argument 84 m_lastLine = lastLine; in FunctionExecutable() 87 …ceUsesArguments, FunctionParameters* parameters, bool inStrictContext, int firstLine, int lastLine) in FunctionExecutable() argument 96 m_lastLine = lastLine; in FunctionExecutable() 110 …(evalNode->features(), evalNode->hasCapturedVariables(), evalNode->lineNo(), evalNode->lastLine()); in compileInternal() 169 …->features(), programNode->hasCapturedVariables(), programNode->lineNo(), programNode->lastLine()); in compileInternal() 243 recordParse(body->features(), body->hasCapturedVariables(), body->lineNo(), body->lastLine()); in compileForCallInternal() 291 recordParse(body->features(), body->hasCapturedVariables(), body->lineNo(), body->lastLine()); in compileForConstructInternal() 364 …body->usesArguments(), body->parameters(), body->isStrictMode(), body->lineNo(), body->lastLine()); in fromGlobalCode()
|
/external/webkit/Source/JavaScriptCore/parser/ |
D | Parser.cpp | 64 …eclarationStacks::FunctionStack>* funcStack, CodeFeatures features, int lastLine, int numConstants… in didFinishParsing() argument 71 m_lastLine = lastLine; in didFinishParsing()
|
D | Nodes.cpp | 55 void StatementNode::setLoc(int firstLine, int lastLine) in setLoc() argument 58 m_lastLine = lastLine; in setLoc()
|
D | Parser.h | 57 int lastLine, int numConstants, IdentifierSet&);
|
/external/webkit/Source/JavaScriptCore/bytecompiler/ |
D | NodesCodegen.cpp | 1330 generator.emitDebugHook(WillExecuteStatement, firstLine(), lastLine()); in emitBytecode() 1373 generator.emitDebugHook(WillExecuteStatement, firstLine(), lastLine()); in emitBytecode() 1381 generator.emitDebugHook(DidReachBreakpoint, firstLine(), lastLine()); in emitBytecode() 1390 generator.emitDebugHook(WillExecuteStatement, firstLine(), lastLine()); in emitBytecode() 1399 generator.emitDebugHook(WillExecuteStatement, firstLine(), lastLine()); in emitBytecode() 1407 generator.emitDebugHook(WillExecuteStatement, firstLine(), lastLine()); in emitBytecode() 1431 generator.emitDebugHook(WillExecuteStatement, firstLine(), lastLine()); in emitBytecode() 1467 generator.emitDebugHook(WillExecuteStatement, firstLine(), lastLine()); in emitBytecode() 1519 generator.emitDebugHook(WillExecuteStatement, firstLine(), lastLine()); in emitBytecode() 1533 generator.emitDebugHook(WillExecuteStatement, firstLine(), lastLine()); in emitBytecode() [all …]
|
D | BytecodeGenerator.h | 372 void emitDebugHook(DebugHookID, int firstLine, int lastLine); 482 …body->usesArguments(), body->parameters(), body->isStrictMode(), body->lineNo(), body->lastLine()); in makeFunction() 487 …body->usesArguments(), body->parameters(), body->isStrictMode(), body->lineNo(), body->lastLine()); in makeFunction()
|
/external/icu4c/samples/layout/ |
D | gnomelayout.cpp | 221 gint firstLine = 0, lastLine = context->height / context->paragraph->getLineHeight(); in eventExpose() local 224 context->paragraph->draw(&surface, firstLine, (maxLines < lastLine)? maxLines : lastLine); in eventExpose()
|
D | cgnomelayout.c | 213 gint firstLine = 0, lastLine = context->height / pf_getLineHeight(context->paragraph); in eventExpose() local 216 pf_draw(context->paragraph, surface, firstLine, (maxLines < lastLine)? maxLines : lastLine); in eventExpose()
|
D | layout.cpp | 231 le_int32 firstLine, lastLine; in WndProc() local 250 lastLine = min (si.nPos + (le_int32) si.nPage, context->paragraph->getLineCount() - 1); in WndProc() 252 context->paragraph->draw(surface, firstLine, lastLine); in WndProc()
|
D | clayout.c | 233 le_int32 firstLine, lastLine; in WndProc() local 252 … lastLine = min (si.nPos + (le_int32) si.nPage, pf_getLineCount(context->paragraph) - 1); in WndProc() 254 pf_draw(context->paragraph, surface, firstLine, lastLine); in WndProc()
|
D | pflow.h | 29 void pf_draw(pf_flow *flow, rs_surface *surface, le_int32 firstLine, le_int32 lastLine);
|
D | paragraph.h | 44 void draw(RenderingSurface *surface, le_int32 firstLine, le_int32 lastLine);
|
D | paragraph.cpp | 216 void Paragraph::draw(RenderingSurface *surface, le_int32 firstLine, le_int32 lastLine) in draw() argument 223 for (li = firstLine; li <= lastLine; li += 1) { in draw()
|
D | pflow.c | 315 void pf_draw(pf_flow *flow, rs_surface *surface, le_int32 firstLine, le_int32 lastLine) in pf_draw() argument 323 for (li = firstLine; li <= lastLine; li += 1) { in pf_draw()
|
/external/llvm/tools/llvm-objdump/ |
D | MachODump.cpp | 464 DILineInfo lastLine; in DisassembleInputMachO() local 482 if (dli != lastLine && dli.getLine() != 0) in DisassembleInputMachO() 485 lastLine = dli; in DisassembleInputMachO() 603 DILineInfo lastLine; in DisassembleInputMachO() local 650 if (dli != lastLine && dli.getLine() != 0) in DisassembleInputMachO() 653 lastLine = dli; in DisassembleInputMachO()
|
/external/icu4c/tools/gencnval/ |
D | gencnval.c | 314 char lastLine[MAX_LINE_SIZE]; in parseFile() local 331 while (T_FileStream_readLine(in, lastLine, MAX_LINE_SIZE) != NULL) { in parseFile() 332 lastLineSize = chomp(lastLine); in parseFile() 333 if (lineSize == 0 || (lastLineSize > 0 && isspace(*lastLine))) { in parseFile() 334 uprv_strcpy(line + lineSize, lastLine); in parseFile() 365 uprv_strcpy(line, lastLine); in parseFile()
|
/external/webkit/Source/WebCore/rendering/ |
D | RenderFlexibleBox.cpp | 900 RootInlineBox* lastLine = blockChild->lineAtIndex(lineCount - 1); in applyLineClamp() local 901 if (!lastLine) in applyLineClamp() 915 InlineBox* anchorBox = lastLine->lastChild(); in applyLineClamp() 925 RenderBlock* srcBlock = toRenderBlock(lastLine->renderer()); in applyLineClamp()
|
D | RenderBlockLineLayout.cpp | 298 …nlineBox* RenderBlock::constructLine(BidiRunList<BidiRun>& bidiRuns, bool firstLine, bool lastLine) in constructLine() argument 358 …lastLineBox()->determineSpacingForFlowBoxes(lastLine, isLogicallyLastRunWrapped, bidiRuns.logicall… in constructLine() 1458 RootInlineBox* lastLine = endLine; in matchedEndLine() local 1459 while (RootInlineBox* nextLine = lastLine->nextRootBox()) in matchedEndLine() 1460 lastLine = nextLine; in matchedEndLine() 1462 int logicalBottom = lastLine->blockLogicalHeight() + abs(delta); in matchedEndLine() 1495 RootInlineBox* lastLine = endLine; in matchedEndLine() local 1496 while (RootInlineBox* nextLine = lastLine->nextRootBox()) in matchedEndLine() 1497 lastLine = nextLine; in matchedEndLine() 1499 int logicalBottom = lastLine->blockLogicalHeight() + abs(delta); in matchedEndLine()
|
D | RenderBox.cpp | 2558 InlineFlowBox* lastLine = flow->lastLineBox(); in computePositionedLogicalWidthUsing() local 2559 if (firstLine && lastLine && firstLine != lastLine) { in computePositionedLogicalWidthUsing() 2560 …alLeftPos = logicalLeftValue + marginLogicalLeftValue + lastLine->borderLogicalLeft() + (lastLine-… in computePositionedLogicalWidthUsing() 2983 InlineFlowBox* lastLine = flow->lastLineBox(); in computePositionedLogicalWidthReplaced() local 2984 if (firstLine && lastLine && firstLine != lastLine) { in computePositionedLogicalWidthReplaced() 2985 …LogicalLeft(logicalLeftValue + marginLogicalLeftAlias + lastLine->borderLogicalLeft() + (lastLine-… in computePositionedLogicalWidthReplaced()
|
D | InlineFlowBox.h | 162 …void determineSpacingForFlowBoxes(bool lastLine, bool isLogicallyLastRunWrapped, RenderObject* log…
|
D | InlineFlowBox.cpp | 289 void InlineFlowBox::determineSpacingForFlowBoxes(bool lastLine, bool isLogicallyLastRunWrapped, Ren… in determineSpacingForFlowBoxes() argument 321 && ((lastLine || isLastObjectOnLine) && !inlineFlow->continuation())) in determineSpacingForFlowBoxes() 325 && ((lastLine || isLastObjectOnLine) && !inlineFlow->continuation())) in determineSpacingForFlowBoxes() 337 …currFlow->determineSpacingForFlowBoxes(lastLine, isLogicallyLastRunWrapped, logicallyLastRunRender… in determineSpacingForFlowBoxes()
|
/external/webkit/Source/JavaScriptCore/interpreter/ |
D | Interpreter.h | 112 NEVER_INLINE void debug(CallFrame*, DebugHookID, int firstLine, int lastLine);
|
D | Interpreter.cpp | 550 …ggerCallFrame, codeBlock->ownerExecutable()->sourceID(), codeBlock->ownerExecutable()->lastLine()); in unwindCallFrame() 552 …ggerCallFrame, codeBlock->ownerExecutable()->sourceID(), codeBlock->ownerExecutable()->lastLine()); in unwindCallFrame() 1158 …void Interpreter::debug(CallFrame* callFrame, DebugHookID debugHookID, int firstLine, int lastLine) in debug() argument 1169 … debugger->returnEvent(callFrame, callFrame->codeBlock()->ownerExecutable()->sourceID(), lastLine); in debug() 1178 …ger->didExecuteProgram(callFrame, callFrame->codeBlock()->ownerExecutable()->sourceID(), lastLine); in debug() 1181 …er->didReachBreakpoint(callFrame, callFrame->codeBlock()->ownerExecutable()->sourceID(), lastLine); in debug() 4726 int lastLine = vPC[3].u.operand; in privateExecute() local 4728 debug(callFrame, static_cast<DebugHookID>(debugHookID), firstLine, lastLine); in privateExecute()
|
/external/icu4c/test/cintltst/ |
D | cucdtst.c | 3303 static char *lastLine= (char *)"10FFFF; C; 10FFFF;"; in TestCaseFolding() local 3315 fields[0][0]=lastLine; in TestCaseFolding() 3316 fields[0][1]=lastLine+6; in TestCaseFolding() 3317 fields[1][0]=lastLine+7; in TestCaseFolding() 3318 fields[1][1]=lastLine+9; in TestCaseFolding() 3319 fields[2][0]=lastLine+10; in TestCaseFolding() 3320 fields[2][1]=lastLine+17; in TestCaseFolding()
|