Searched refs:lastLine (Results 26 - 50 of 57) sorted by path

123

/external/chromium_org/third_party/icu/source/samples/layout/
H A Dparagraph.h44 void draw(RenderingSurface *surface, le_int32 firstLine, le_int32 lastLine);
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) {
H A Dpflow.h29 void pf_draw(pf_flow *flow, rs_surface *surface, le_int32 firstLine, le_int32 lastLine);
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dcucdtst.c3482 static char *lastLine= (char *)"10FFFF; C; 10FFFF;"; local
3494 fields[0][0]=lastLine;
3495 fields[0][1]=lastLine+6;
3496 fields[1][0]=lastLine+7;
3497 fields[1][1]=lastLine+9;
3498 fields[2][0]=lastLine+10;
3499 fields[2][1]=lastLine+17;
/external/chromium_org/third_party/icu/source/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/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/skia/experimental/webtry/res/js/cm/
H A Dcodemirror.js470 if (Math.min(ensureTo, doc.lastLine()) >= to)
2669 for (var line = Math.min(start.line, pos.line), end = Math.min(cm.lastLine(), Math.max(start.line, pos.line));
3421 if (change.from.line > doc.lastLine()) return;
3430 var last = doc.lastLine();
3896 end = Math.min(this.lastLine(), to.line - (to.ch ? 0 : 1)) + 1;
4519 selectAll: function(cm) {cm.setSelection(Pos(cm.firstLine(), 0), Pos(cm.lastLine()), sel_dontScroll);},
4527 if (range.head.ch == len && range.head.line < cm.lastLine())
4552 goDocEnd: function(cm) {cm.extendSelection(Pos(cm.lastLine()));},
5111 return doc.findMarks(Pos(doc.first, 0), doc.clipPos(Pos(doc.lastLine())),
5428 if (lineN > doc.lastLine()) retur
[all...]
/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/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.help.base_3.5.2.v201011171123.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jface.text_3.6.1.r361_v20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.text_3.5.0.v20100601-1300.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.ui.forms_3.5.2.r36_v20100702.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
H A Djdimodel.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/icu/icu4c/source/samples/layout/
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 Dgnomelayout.cpp221 gint firstLine = 0, lastLine = context->height / context->paragraph->getLineHeight(); local
224 context->paragraph->draw(&surface, firstLine, (maxLines < lastLine)? maxLines : 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 Dparagraph.h44 void draw(RenderingSurface *surface, le_int32 firstLine, le_int32 lastLine);
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) {
H A Dpflow.h29 void pf_draw(pf_flow *flow, rs_surface *surface, le_int32 firstLine, le_int32 lastLine);
/external/icu/icu4c/source/test/cintltst/
H A Dcucdtst.c3481 static char *lastLine= (char *)"10FFFF; C; 10FFFF;"; local
3493 fields[0][0]=lastLine;
3494 fields[0][1]=lastLine+6;
3495 fields[1][0]=lastLine+7;
3496 fields[1][1]=lastLine+9;
3497 fields[2][0]=lastLine+10;
3498 fields[2][1]=lastLine+17;

Completed in 1839 milliseconds

123