Home
last modified time | relevance | path

Searched refs:lastLine (Results 1 – 25 of 55) sorted by relevance

123

/third_party/node/deps/npm/node_modules/node-gyp/test/
Dtest-addon.js45 var lastLine = logLines[logLines.length - 1]
47 t.strictEqual(lastLine, 'gyp info ok', 'should end in ok')
117 var lastLine = logLines[logLines.length - 1]
119 t.strictEqual(lastLine, 'gyp info ok', 'should end in ok')
142 var lastLine = logLines[logLines.length - 1]
144 t.strictEqual(lastLine, 'gyp info ok', 'should end in ok')
/third_party/icu/tools/unicode/c/genprops/misc/
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/jerryscript/tools/vera++/scripts/rules/
Djerry_no_leading_or_trailing_empty_line.tcl25 set lastLine [getLine $f $lineCount]
26 if {[string trim $lastLine] == ""} {
/third_party/vk-gl-cts/scripts/src_util/
Dcheck_include_guards.py49 lastLine = ""
52 lastLine = line.strip()
54 if lastLine != expectedComment:
/third_party/node/test/sequential/
Dtest-repl-timeout-throw.js57 const lastLine = stdout.trim().split(/\r?\n/).pop();
58 assert.strictEqual(lastLine, '> 3');
/third_party/typescript_eslint/packages/eslint-plugin-internal/src/rules/
Dplugin-test-formatting.ts287 const lastLine = lines[lines.length - 1]; constant
291 const isEndEmpty = lastLine.trimLeft() === '';
316 if (lastLine.length !== parentIndent) {
322 [literal.range[1] - lastLine.length - 1, literal.range[1]],
/third_party/icu/icu4c/source/samples/layout/
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()
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()
Dclayout.c239 le_int32 firstLine, lastLine; in WndProc() local
258lastLine = min (si.nPos + (le_int32) si.nPage, pf_getLineCount(context->paragraph) - 1); in WndProc()
260 pf_draw(context->paragraph, surface, firstLine, lastLine); in WndProc()
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()
Dpflow.h32 void pf_draw(pf_flow *flow, rs_surface *surface, le_int32 firstLine, le_int32 lastLine);
/third_party/skia/third_party/externals/icu/source/samples/layout/
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()
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()
Dclayout.c239 le_int32 firstLine, lastLine; in WndProc() local
258lastLine = min (si.nPos + (le_int32) si.nPage, pf_getLineCount(context->paragraph) - 1); in WndProc()
260 pf_draw(context->paragraph, surface, firstLine, lastLine); in WndProc()
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()
Dpflow.h32 void pf_draw(pf_flow *flow, rs_surface *surface, le_int32 firstLine, le_int32 lastLine);
/third_party/flutter/skia/third_party/externals/icu/source/samples/layout/
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()
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()
Dclayout.c239 le_int32 firstLine, lastLine; in WndProc() local
258lastLine = min (si.nPos + (le_int32) si.nPage, pf_getLineCount(context->paragraph) - 1); in WndProc()
260 pf_draw(context->paragraph, surface, firstLine, lastLine); in WndProc()
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()
Dpflow.h32 void pf_draw(pf_flow *flow, rs_surface *surface, le_int32 firstLine, le_int32 lastLine);
/third_party/skia/modules/skparagraph/src/
DTextWrapper.cpp292 auto lastLine = (hasEllipsis && unlimitedLines) || fLineNumber >= maxLines; in breakTextIntoLines() local
293 needEllipsis = hasEllipsis && !endlessLine && lastLine; in breakTextIntoLines()
358 if (disableLastDescent && (lastLine || (startLine == end && !fHardLineBreak ))) { in breakTextIntoLines()
404 } else if (lastLine) { in breakTextIntoLines()
/third_party/flutter/skia/third_party/externals/icu/source/tools/gencnval/
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/third_party/externals/icu/source/tools/gencnval/
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/icu/icu4c/source/tools/gencnval/
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()

123