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

123

/external/chromium_org/third_party/WebKit/Source/core/rendering/line/
H A DLineInfo.h52 void setLastLine(bool lastLine) { m_isLastLine = lastLine; } argument
/external/chromium_org/third_party/icu/source/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/icu/icu4c/source/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/deqp/scripts/
H A Dcheck_include_guards.py28 lastLine = ""
31 lastLine = line.strip()
33 if lastLine != expectedComment:
34 # print "'%s' != '%s'" % (lastLine, expectedComment)
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DEdgeWalkerRectangles_Test.cpp170 SkPoint pts[4], lastLine[2]; local
191 SkASSERT((lastLine[1].fX - lastLine[0].fX) *
192 (pts[1].fY - lastLine[0].fY) !=
193 (lastLine[1].fY - lastLine[0].fY) *
194 (pts[1].fX - lastLine[0].fX));
197 lastLine[0] = pts[0];
198 lastLine[1] = pts[1];
/external/skia/experimental/Intersection/
H A DEdgeWalkerRectangles_Test.cpp170 SkPoint pts[4], lastLine[2]; local
191 SkASSERT((lastLine[1].fX - lastLine[0].fX) *
192 (pts[1].fY - lastLine[0].fY) !=
193 (lastLine[1].fY - lastLine[0].fY) *
194 (pts[1].fX - lastLine[0].fX));
197 lastLine[0] = pts[0];
198 lastLine[1] = pts[1];
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DEllipsisBox.cpp77 RootInlineBox* lastLine = block.lineAtIndex(block.lineCount() - 1); local
78 if (!lastLine)
83 InlineBox* anchorBox = lastLine->lastChild();
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/
H A Dcomment.js54 var end = Math.min(to.ch != 0 || to.line == from.line ? to.line + 1 : to.line, self.lastLine() + 1);
87 var end = Math.min(to.line, self.lastLine());
112 var end = Math.min(to.line, self.lastLine()), start = Math.min(from.line, end);
H A Dmatchbrackets.js46 var lineEnd = dir > 0 ? Math.min(where.line + maxScanLines, cm.lastLine() + 1)
64 return lineNo - dir == (dir > 0 ? cm.lastLine() : cm.firstLine()) ? false : null;
/external/llvm/tools/llvm-objdump/
H A DMachODump.cpp390 DILineInfo lastLine; local
425 if (dli != lastLine && dli.Line != 0)
428 lastLine = dli;
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DGridResolvedPosition.cpp151 const size_t lastLine = explicitGridSizeForSide(gridContainerStyle, side); local
152 return adjustGridPositionForSide(lastLine, side);

Completed in 5689 milliseconds

123