Home
last modified time | relevance | path

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

12

/third_party/icu/tools/unicode/c/genprops/misc/
H A Ducdmerge.c75 static char line[2000], firstLine[2000], lastLine[2000]; in main() local
105 end=strchr(lastLine, '#'); in main()
141 lastLine[0]=0; in main()
145 strcpy(lastLine, line); in main()
/third_party/vk-gl-cts/scripts/src_util/
H A Dcheck_include_guards.py49 lastLine = ""
52 lastLine = line.strip()
54 if lastLine != expectedComment:
55 # print("'%s' != '%s'" % (lastLine, expectedComment))
/third_party/node/test/sequential/
H A Dtest-repl-timeout-throw.js57 const lastLine = stdout.trim().split(/\r?\n/).pop();
58 assert.strictEqual(lastLine, '> 3');
/third_party/icu/icu4c/source/samples/layout/
H A Dgnomelayout.cpp227 gint firstLine = 0, lastLine = context->height / context->paragraph->getLineHeight(); in eventExpose() local
230 context->paragraph->draw(&surface, firstLine, (maxLines < lastLine)? maxLines : lastLine); in eventExpose()
H A Dlayout.cpp237 le_int32 firstLine, lastLine; in WndProc() local
256 lastLine = min (si.nPos + (le_int32) si.nPage, context->paragraph->getLineCount() - 1); in WndProc()
258 context->paragraph->draw(surface, firstLine, lastLine); in WndProc()
H A Dcgnomelayout.c221 gint firstLine = 0, lastLine = context->height / pf_getLineHeight(context->paragraph); in eventExpose() local
224 pf_draw(context->paragraph, surface, firstLine, (maxLines < lastLine)? maxLines : lastLine); in eventExpose()
H A Dclayout.c240 le_int32 firstLine, lastLine; in WndProc() local
259 lastLine = min (si.nPos + (le_int32) si.nPage, pf_getLineCount(context->paragraph) - 1); in WndProc()
261 pf_draw(context->paragraph, surface, firstLine, lastLine); in WndProc()
H A Dpflow.h32 void pf_draw(pf_flow *flow, rs_surface *surface, le_int32 firstLine, le_int32 lastLine);
H A Dparagraph.h50 void draw(RenderingSurface *surface, le_int32 firstLine, le_int32 lastLine);
H A Dpflow.c320 void pf_draw(pf_flow *flow, rs_surface *surface, le_int32 firstLine, le_int32 lastLine) in pf_draw() argument
328 for (li = firstLine; li <= lastLine; li += 1) { in pf_draw()
H A Dparagraph.cpp227 void Paragraph::draw(RenderingSurface *surface, le_int32 firstLine, le_int32 lastLine) in draw() argument
234 for (li = firstLine; li <= lastLine; li += 1) { in draw()
/third_party/skia/third_party/externals/icu/source/samples/layout/
H A Dcgnomelayout.c219 gint firstLine = 0, lastLine = context->height / pf_getLineHeight(context->paragraph); in eventExpose() local
222 pf_draw(context->paragraph, surface, firstLine, (maxLines < lastLine)? maxLines : lastLine); in eventExpose()
H A Dclayout.c239 le_int32 firstLine, lastLine; in WndProc() local
258 lastLine = min (si.nPos + (le_int32) si.nPage, pf_getLineCount(context->paragraph) - 1); in WndProc()
260 pf_draw(context->paragraph, surface, firstLine, lastLine); in WndProc()
H A Dgnomelayout.cpp227 gint firstLine = 0, lastLine = context->height / context->paragraph->getLineHeight(); in eventExpose() local
230 context->paragraph->draw(&surface, firstLine, (maxLines < lastLine)? maxLines : lastLine); in eventExpose()
H A Dlayout.cpp237 le_int32 firstLine, lastLine; in WndProc() local
256 lastLine = min (si.nPos + (le_int32) si.nPage, context->paragraph->getLineCount() - 1); in WndProc()
258 context->paragraph->draw(surface, firstLine, lastLine); in WndProc()
H A Dpflow.h32 void pf_draw(pf_flow *flow, rs_surface *surface, le_int32 firstLine, le_int32 lastLine);
H A Dparagraph.h50 void draw(RenderingSurface *surface, le_int32 firstLine, le_int32 lastLine);
H A Dparagraph.cpp227 void Paragraph::draw(RenderingSurface *surface, le_int32 firstLine, le_int32 lastLine) in draw() argument
234 for (li = firstLine; li <= lastLine; li += 1) { in draw()
H A Dpflow.c318 void pf_draw(pf_flow *flow, rs_surface *surface, le_int32 firstLine, le_int32 lastLine) in pf_draw() argument
326 for (li = firstLine; li <= lastLine; li += 1) { in pf_draw()
/third_party/icu/icu4c/source/tools/gencnval/
H A Dgencnval.c335 char lastLine[MAX_LINE_SIZE]; in parseFile() local
352 while (T_FileStream_readLine(in, lastLine, MAX_LINE_SIZE) != NULL) { in parseFile()
353 lastLineSize = chomp(lastLine); in parseFile()
354 if (lineSize == 0 || (lastLineSize > 0 && isspace((int)*lastLine))) { in parseFile()
355 uprv_strcpy(line + lineSize, lastLine); in parseFile()
386 uprv_strcpy(line, lastLine); in parseFile()
/third_party/skia/third_party/externals/icu/source/tools/gencnval/
H A Dgencnval.c334 char lastLine[MAX_LINE_SIZE]; in parseFile() local
351 while (T_FileStream_readLine(in, lastLine, MAX_LINE_SIZE) != NULL) { in parseFile()
352 lastLineSize = chomp(lastLine); in parseFile()
353 if (lineSize == 0 || (lastLineSize > 0 && isspace((int)*lastLine))) { in parseFile()
354 uprv_strcpy(line + lineSize, lastLine); in parseFile()
385 uprv_strcpy(line, lastLine); in parseFile()
/third_party/skia/experimental/sktext/tests/
H A DSelectableText.cpp172 auto lastLine = testVisitor.fTestLines.back(); in UNIX_ONLY_TEST() local
179 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(lastPosition.fBoundaries.fTop, lastLine.bounds.fTop)); in UNIX_ONLY_TEST()
181 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(lastPosition.fBoundaries.height(), lastLine.bounds.height())); in UNIX_ONLY_TEST()
/third_party/typescript/tests/baselines/reference/
H A Dparserindenter.js645 var lastLine = this.snapshot.GetLineNumberFromPosition(indentNode.AuthorNode.Details.StartOffset);
648 if (lastLine != currentLine) {
649 lastLine = currentLine;
1269 var lastLine = this.snapshot.GetLineNumberFromPosition(indentNode.AuthorNode.Details.StartOffset);
1272 if (lastLine != currentLine) {
1273 lastLine = currentLine;
/third_party/skia/experimental/sktext/src/
H A DText.cpp847 auto lastLine = fBoxLines.back();
848 auto lastGlyph = lastLine.fBoxGlyphs.back();
850 endOfText.fLineIndex = lastLine.fIndex;
851 endOfText.fGlyphRange = GlyphRange(lastLine.fBoxGlyphs.size() - 1, lastLine.fBoxGlyphs.size() - 1);
854 endOfText.fLineIndex = lastLine.fIndex;
/third_party/glslang/glslang/MachineIndependent/
H A DShaderLang.cpp1000 : getLastSourceIndex(lastSourceIndex), output(output), lastSource(-1), lastLine(0) {} in SourceLineSynchronizer()
1009 // After switching to a new source string, we need to reset lastLine in syncToMostRecentString()
1013 if (lastSource != -1 || lastLine != 0) in syncToMostRecentString()
1016 lastLine = -1; in syncToMostRecentString()
1027 const bool newLineStarted = lastLine < tokenLine; in syncToLine()
1028 for (; lastLine < tokenLine; ++lastLine) { in syncToLine()
1029 if (lastLine > 0) *output += '\n'; in syncToLine()
1035 void setLineNum(int newLineNum) { lastLine = newLineNum; }
1050 // lastLine i
[all...]

Completed in 18 milliseconds

12