Home
last modified time | relevance | path

Searched refs:firstLine (Results 1 – 25 of 42) sorted by relevance

12

/third_party/icu/tools/unicode/c/genprops/misc/
Ducdmerge.c75 static char line[2000], firstLine[2000], lastLine[2000]; in main() local
98 if(last>=0 && (c!=(last+1) || !sameData(firstLine, line))) { in main()
102 puts(firstLine); in main()
110 strchr(firstLine, ';'));/* first line starting from the first ; */ in main()
111 } else if(strchr(firstLine, '#')==NULL) { in main()
115 strchr(firstLine, ';'), /* first line starting from the first ; */ in main()
121 strchr(firstLine, ';'), /* first line starting from the first ; */ in main()
140 strcpy(firstLine, line); in main()
/third_party/node/lib/internal/
Dv8_prof_polyfill.js122 function versionCheck(firstLine, expected) { argument
127 firstLine = firstLine.split(',');
129 if ((firstLine.length !== 6 && firstLine.length !== 7) ||
130 firstLine[0] !== 'v8-version') {
135 if (curVer[i] !== firstLine[i + 1])
/third_party/node/deps/npm/node_modules/https-proxy-agent/dist/
Dparse-proxy-response.js51 const firstLine = buffered.toString('ascii', 0, buffered.indexOf('\r\n'));
52 const statusCode = +firstLine.split(' ')[1];
53 debug('got proxy server response: %o', firstLine);
/third_party/jerryscript/tools/vera++/scripts/rules/
Djerry_no_leading_or_trailing_empty_line.tcl20 set firstLine [getLine $f 1]
21 if {[string trim $firstLine] == ""} {
/third_party/node/test/parallel/
Dtest-common-countdown.js30 const firstLine = stdout.split('\n').shift(); constant
31 assert.strictEqual(firstLine, expected);
Dtest-common.js108 const firstLine = stdout.split('\n').shift(); constant
109 assert.strictEqual(firstLine, expected);
/third_party/node/deps/npm/node_modules/cmd-shim/lib/
Dindex.js50 const firstLine = data.trim().split(/\r*\n/)[0] constant
51 const shebang = firstLine.match(shebangExpr)
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/stringprep/
DIDNAConformanceTest.java255 boolean firstLine = true; in getInputData()
260 if (firstLine) { in getInputData()
263 firstLine = false; in getInputData()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/stringprep/
DIDNAConformanceTest.java258 boolean firstLine = true; in getInputData()
263 if (firstLine) { in getInputData()
266 firstLine = false; in getInputData()
/third_party/skia/third_party/externals/icu/source/samples/layout/
Dclayout.c239 le_int32 firstLine, lastLine; in WndProc() local
248 firstLine = si.nPos; in WndProc()
260 pf_draw(context->paragraph, surface, firstLine, lastLine); in WndProc()
Dlayout.cpp237 le_int32 firstLine, lastLine; in WndProc() local
246 firstLine = si.nPos; 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);
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()
Dparagraph.h50 void draw(RenderingSurface *surface, le_int32 firstLine, le_int32 lastLine);
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()
/third_party/icu/icu4c/source/samples/layout/
Dlayout.cpp237 le_int32 firstLine, lastLine; in WndProc() local
246 firstLine = si.nPos; in WndProc()
258 context->paragraph->draw(surface, firstLine, lastLine); in WndProc()
Dclayout.c240 le_int32 firstLine, lastLine; in WndProc() local
249 firstLine = si.nPos; in WndProc()
261 pf_draw(context->paragraph, surface, firstLine, lastLine); in WndProc()
Dpflow.h32 void pf_draw(pf_flow *flow, rs_surface *surface, le_int32 firstLine, le_int32 lastLine);
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()
Dparagraph.h50 void draw(RenderingSurface *surface, le_int32 firstLine, le_int32 lastLine);
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.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()
/third_party/gptfdisk/
Dgptcurses.cc611 uint64_t i, j = 0, firstLine, numPerLine; in DisplayOptions() local
625 firstLine = LINES - 4; in DisplayOptions()
628 move(firstLine, 0); in DisplayOptions()
638 move(firstLine + i / numPerLine, (i % numPerLine) * 12 + 4); in DisplayOptions()
/third_party/python/Lib/test/
Dtest_sys_settrace.py1274 self.firstLine = None if decorated else self.code.co_firstlineno
1284 if (self.firstLine is None and frame.f_code == self.code and
1286 self.firstLine = frame.f_lineno - 1
1287 if (event == self.event and self.firstLine is not None and
1288 frame.f_lineno == self.firstLine + self.jumpFrom):
1296 frame.f_lineno = self.firstLine + self.jumpTo

12