/third_party/icu/tools/unicode/c/genprops/misc/ |
H A D | ucdmerge.c | 75 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 D | check_include_guards.py | 49 lastLine = "" 52 lastLine = line.strip() 54 if lastLine != expectedComment: 55 # print("'%s' != '%s'" % (lastLine, expectedComment))
|
/third_party/node/test/sequential/ |
H A D | test-repl-timeout-throw.js | 57 const lastLine = stdout.trim().split(/\r?\n/).pop(); 58 assert.strictEqual(lastLine, '> 3');
|
/third_party/icu/icu4c/source/samples/layout/ |
H A D | gnomelayout.cpp | 227 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 D | layout.cpp | 237 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 D | cgnomelayout.c | 221 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 D | clayout.c | 240 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 D | pflow.h | 32 void pf_draw(pf_flow *flow, rs_surface *surface, le_int32 firstLine, le_int32 lastLine);
|
H A D | paragraph.h | 50 void draw(RenderingSurface *surface, le_int32 firstLine, le_int32 lastLine);
|
H A D | pflow.c | 320 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 D | paragraph.cpp | 227 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 D | cgnomelayout.c | 219 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 D | clayout.c | 239 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 D | gnomelayout.cpp | 227 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 D | layout.cpp | 237 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 D | pflow.h | 32 void pf_draw(pf_flow *flow, rs_surface *surface, le_int32 firstLine, le_int32 lastLine);
|
H A D | paragraph.h | 50 void draw(RenderingSurface *surface, le_int32 firstLine, le_int32 lastLine);
|
H A D | paragraph.cpp | 227 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 D | pflow.c | 318 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 D | gencnval.c | 335 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 D | gencnval.c | 334 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 D | SelectableText.cpp | 172 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 D | parserindenter.js | 645 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 D | Text.cpp | 847 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 D | ShaderLang.cpp | 1000 : 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...] |