Searched refs:lastLine (Results 1 - 25 of 35) 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/chromium_org/third_party/WebKit/Source/core/rendering/
H A DEllipsisBox.cpp98 RootInlineBox* lastLine = block->lineAtIndex(block->lineCount() - 1); local
99 if (!lastLine)
104 InlineBox* anchorBox = lastLine->lastChild();
H A DRenderDeprecatedFlexibleBox.cpp953 RootInlineBox* lastLine = blockChild->lineAtIndex(lineCount - 1); local
954 if (!lastLine)
968 InlineBox* anchorBox = lastLine->lastChild();
978 RenderBlock* srcBlock = toRenderBlock(lastLine->renderer());
H A DRootInlineBox.cpp561 if (RootInlineBox* lastLine = block->lastRootBox()) {
562 RenderObject::SelectionState lastLineSelectionState = lastLine->selectionState();
566 LayoutUnit lastLineSelectionBottom = lastLine->selectionBottom() + offsetToBlockBefore.height();
H A DInlineFlowBox.h173 void determineSpacingForFlowBoxes(bool lastLine, bool isLogicallyLastRunWrapped, RenderObject* logicallyLastRunRenderer);
H A DRenderBox.cpp3466 InlineFlowBox* lastLine = flow->lastLineBox(); local
3467 if (firstLine && lastLine && firstLine != lastLine) {
3468 computedValues.m_position = logicalLeftValue + marginLogicalLeftValue + lastLine->borderLogicalLeft() + (lastLine->logicalLeft() - firstLine->logicalLeft());
3913 InlineFlowBox* lastLine = flow->lastLineBox(); local
3914 if (firstLine && lastLine && firstLine != lastLine) {
3915 computedValues.m_position = logicalLeftValue + marginLogicalLeftAlias + lastLine->borderLogicalLeft() + (lastLine
[all...]
H A DInlineFlowBox.cpp302 void InlineFlowBox::determineSpacingForFlowBoxes(bool lastLine, bool isLogicallyLastRunWrapped, RenderObject* logicallyLastRunRenderer) argument
338 && ((lastLine || isLastObjectOnLine) && !inlineFlow->continuation()))
342 && ((lastLine || isLastObjectOnLine) && !inlineFlow->continuation()))
354 currFlow->determineSpacingForFlowBoxes(lastLine, isLogicallyLastRunWrapped, logicallyLastRunRenderer);
H A DRenderGrid.cpp964 const size_t lastLine = explicitGridSizeForSide(side); local
965 return adjustGridPositionForSide(lastLine, side);
H A DRenderBlockLineLayout.cpp283 void setLastLine(bool lastLine) { m_isLastLine = lastLine; } argument
2369 RootInlineBox* lastLine = layoutState.endLine(); local
2370 while (RootInlineBox* nextLine = lastLine->nextRootBox())
2371 lastLine = nextLine;
2373 LayoutUnit logicalBottom = lastLine->lineBottomWithLeading() + absoluteValue(lineDelta);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/
H A Dcomment.js31 var end = Math.min(to.ch != 0 || to.line == from.line ? to.line + 1 : to.line, self.lastLine() + 1);
64 var end = Math.min(to.line, self.lastLine());
89 var end = Math.min(to.line, self.lastLine()), start = Math.min(from.line, end);
H A Dcodemirror.js2210 var preLine = pos.line - diff, lastLine = doc.first + doc.size - 1;
2211 if (preLine > lastLine) return Pos(lastLine, getLine(doc, lastLine).text.length);
2365 if (change.from.line > doc.lastLine()) return;
2374 var last = doc.lastLine();
3391 selectAll: function(cm) {cm.setSelection(Pos(cm.firstLine(), 0), Pos(cm.lastLine()));},
3409 goDocEnd: function(cm) {cm.extendSelection(Pos(cm.lastLine()));},
4530 var firstLine = getLine(doc, from.line), lastLine = getLine(doc, to.line);
4539 update(lastLine, lastLin
[all...]
/external/llvm/tools/llvm-objdump/
H A DMachODump.cpp397 DILineInfo lastLine; local
432 if (dli != lastLine && dli.getLine() != 0)
435 lastLine = dli;
/external/chromium_org/third_party/icu/source/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/icu4c/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);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A Dexterns.js451 lastLine: function() { },
H A DCodeMirrorTextEditor.js868 newPaddingBottom = Math.max(scrollInfo.clientHeight - this._codeMirror.getLineHandle(this._codeMirror.lastLine()).height, 0);
1124 var lastLine = this._codeMirror.getLine(lineCount - 1);
1125 return this._toRange(new CodeMirror.Pos(0, 0), new CodeMirror.Pos(lineCount - 1, lastLine.length));
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dcucdtst.c3304 static char *lastLine= (char *)"10FFFF; C; 10FFFF;"; local
3316 fields[0][0]=lastLine;
3317 fields[0][1]=lastLine+6;
3318 fields[1][0]=lastLine+7;
3319 fields[1][1]=lastLine+9;
3320 fields[2][0]=lastLine+10;
3321 fields[2][1]=lastLine+17;
/external/icu4c/test/cintltst/
H A Dcucdtst.c3448 static char *lastLine= (char *)"10FFFF; C; 10FFFF;"; local
3460 fields[0][0]=lastLine;
3461 fields[0][1]=lastLine+6;
3462 fields[1][0]=lastLine+7;
3463 fields[1][1]=lastLine+9;
3464 fields[2][0]=lastLine+10;
3465 fields[2][1]=lastLine+17;

Completed in 815 milliseconds

12