HomeSort by relevance Sort by last modified time
    Searched full:lastline (Results 1 - 25 of 81) sorted by null

1 2 3 4

  /external/chromium_org/third_party/WebKit/Source/core/paint/
InlinePainter.cpp 71 const LayoutRect& lastline, const LayoutRect& thisline, const LayoutRect& nextline, const Color outlineColor)
87 IntRect pixelSnappedLastLine = pixelSnappedIntRect(paintOffset.x() + lastline.x(), 0, lastline.width(), 0);
93 pixelSnappedBox.y() - (lastline.isEmpty() || thisline.x() < lastline.x() || (lastline.maxX() - 1) <= thisline.x() ? outlineWidth : 0),
98 (lastline.isEmpty() || thisline.x() < lastline.x() || (lastline.maxX() - 1) <= thisline.x() ? outlineWidth : -outlineWidth),
105 pixelSnappedBox.y() - (lastline.isEmpty() || lastline.maxX() < thisline.maxX() || (thisline.maxX() - 1) <= lastline.x() ? outlineW (…)
    [all...]
  /external/chromium_org/third_party/icu/source/samples/layout/
pflow.h 29 void pf_draw(pf_flow *flow, rs_surface *surface, le_int32 firstLine, le_int32 lastLine);
paragraph.h 44 void draw(RenderingSurface *surface, le_int32 firstLine, le_int32 lastLine);
cgnomelayout.c 213 gint firstLine = 0, lastLine = context->height / pf_getLineHeight(context->paragraph);
216 pf_draw(context->paragraph, surface, firstLine, (maxLines < lastLine)? maxLines : lastLine);
gnomelayout.cpp 221 gint firstLine = 0, lastLine = context->height / context->paragraph->getLineHeight();
224 context->paragraph->draw(&surface, firstLine, (maxLines < lastLine)? maxLines : lastLine);
clayout.c 233 le_int32 firstLine, lastLine;
252 lastLine = min (si.nPos + (le_int32) si.nPage, pf_getLineCount(context->paragraph) - 1);
254 pf_draw(context->paragraph, surface, firstLine, lastLine);
layout.cpp 231 le_int32 firstLine, lastLine;
250 lastLine = min (si.nPos + (le_int32) si.nPage, context->paragraph->getLineCount() - 1);
252 context->paragraph->draw(surface, firstLine, lastLine);
  /external/icu/icu4c/source/samples/layout/
pflow.h 29 void pf_draw(pf_flow *flow, rs_surface *surface, le_int32 firstLine, le_int32 lastLine);
paragraph.h 44 void draw(RenderingSurface *surface, le_int32 firstLine, le_int32 lastLine);
cgnomelayout.c 213 gint firstLine = 0, lastLine = context->height / pf_getLineHeight(context->paragraph);
216 pf_draw(context->paragraph, surface, firstLine, (maxLines < lastLine)? maxLines : lastLine);
gnomelayout.cpp 221 gint firstLine = 0, lastLine = context->height / context->paragraph->getLineHeight();
224 context->paragraph->draw(&surface, firstLine, (maxLines < lastLine)? maxLines : lastLine);
clayout.c 233 le_int32 firstLine, lastLine;
252 lastLine = min (si.nPos + (le_int32) si.nPage, pf_getLineCount(context->paragraph) - 1);
254 pf_draw(context->paragraph, surface, firstLine, lastLine);
  /external/deqp/scripts/
check_include_guards.py 28 lastLine = ""
31 lastLine = line.strip()
33 if lastLine != expectedComment:
34 # print "'%s' != '%s'" % (lastLine, expectedComment)
  /external/chromium_org/third_party/WebKit/Source/core/rendering/line/
LineInfo.h 52 void setLastLine(bool lastLine) { m_isLastLine = lastLine; }
  /external/chromium_org/net/ftp/
ftp_ctrl_response_buffer_unittest.cc 66 EXPECT_EQ(net::OK, PushDataToBuffer("230 LastLine\r\n"));
75 EXPECT_EQ("LastLine", response.lines[2]);
91 EXPECT_EQ(net::OK, PushDataToBuffer("230 LastLine\r\n"));
100 EXPECT_EQ("LastLine", response.lines[2]);
111 EXPECT_EQ(net::OK, PushDataToBuffer("230 LastLine\r\n"));
119 EXPECT_EQ("LastLine", response.lines[1]);
  /external/chromium_org/third_party/lcov/contrib/galaxy/
conglomerate_functions.pl 39 my $LastLine = pop (@Arranged);
40 my $Fill = Box_2 ($LastLine,$CFile);
43 my @Output = Box ('normal', 'Helvetica-Bold', 32, $CFile, $LastLine);
122 my $LastLine = pop (@Input);
136 push (@Output, Box ('dashed', 'Helvetica', 24, $FuncName, $LastLine));
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
CallTipWindow.py 23 self.lastline = None
30 if curline == self.lastline:
32 self.lastline = curline
136 self.parenline = self.parencol = self.lastline = None
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
CallTipWindow.py 23 self.lastline = None
30 if curline == self.lastline:
32 self.lastline = curline
136 self.parenline = self.parencol = self.lastline = None
  /external/chromium_org/third_party/skia/experimental/Intersection/
EdgeWalkerRectangles_Test.cpp 170 SkPoint pts[4], lastLine[2];
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/
EdgeWalkerRectangles_Test.cpp 170 SkPoint pts[4], lastLine[2];
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/skia/third_party/lua/src/
llex.h 54 int lastline; /* line of last token `consumed' */ member in struct:LexState
  /frameworks/native/libs/binder/
BufferedTextOutput.cpp 188 const char* lastLine = txt+1;
190 if (*txt++ == '\n') lastLine = txt;
194 vec.iov_len = lastLine-first;
197 txt = lastLine;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
EllipsisBox.cpp 77 RootInlineBox* lastLine = block.lineAtIndex(block.lineCount() - 1);
78 if (!lastLine)
83 InlineBox* anchorBox = lastLine->lastChild();
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/stabs/
stabs-dbgfmt.c 85 unsigned long lastline; /* track line and file of bytecodes */ member in struct:__anon33
264 info->lastline = 0; /* new file, so line changes */
271 if (info->basebc != NULL && info->curline != info->lastline) {
272 info->lastline = bc->line;
278 info->lastline = info->curline;
333 info.lastline = 0;
  /external/llvm/include/llvm/Support/
GCOV.h 359 LineData() : LastLine(0) {}
362 uint32_t LastLine;
384 if (Line > LineInfo[Filename].LastLine)
385 LineInfo[Filename].LastLine = Line;
390 if (Line > LineInfo[Filename].LastLine)
391 LineInfo[Filename].LastLine = Line;

Completed in 3970 milliseconds

1 2 3 4