/third_party/icu/tools/unicode/c/genprops/misc/ |
D | ucdmerge.c | 75 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/ |
D | v8_prof_polyfill.js | 122 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/ |
D | parse-proxy-response.js | 51 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/ |
D | jerry_no_leading_or_trailing_empty_line.tcl | 20 set firstLine [getLine $f 1] 21 if {[string trim $firstLine] == ""} {
|
/third_party/node/test/parallel/ |
D | test-common-countdown.js | 30 const firstLine = stdout.split('\n').shift(); constant 31 assert.strictEqual(firstLine, expected);
|
D | test-common.js | 108 const firstLine = stdout.split('\n').shift(); constant 109 assert.strictEqual(firstLine, expected);
|
/third_party/node/deps/npm/node_modules/cmd-shim/lib/ |
D | index.js | 50 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/ |
D | IDNAConformanceTest.java | 255 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/ |
D | IDNAConformanceTest.java | 258 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/ |
D | clayout.c | 239 le_int32 firstLine, lastLine; in WndProc() local 248 firstLine = si.nPos; in WndProc() 260 pf_draw(context->paragraph, surface, firstLine, lastLine); in WndProc()
|
D | layout.cpp | 237 le_int32 firstLine, lastLine; in WndProc() local 246 firstLine = si.nPos; in WndProc() 258 context->paragraph->draw(surface, firstLine, lastLine); in WndProc()
|
D | pflow.h | 32 void pf_draw(pf_flow *flow, rs_surface *surface, le_int32 firstLine, le_int32 lastLine);
|
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()
|
D | paragraph.h | 50 void draw(RenderingSurface *surface, le_int32 firstLine, le_int32 lastLine);
|
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()
|
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()
|
/third_party/icu/icu4c/source/samples/layout/ |
D | layout.cpp | 237 le_int32 firstLine, lastLine; in WndProc() local 246 firstLine = si.nPos; in WndProc() 258 context->paragraph->draw(surface, firstLine, lastLine); in WndProc()
|
D | clayout.c | 240 le_int32 firstLine, lastLine; in WndProc() local 249 firstLine = si.nPos; in WndProc() 261 pf_draw(context->paragraph, surface, firstLine, lastLine); in WndProc()
|
D | pflow.h | 32 void pf_draw(pf_flow *flow, rs_surface *surface, le_int32 firstLine, le_int32 lastLine);
|
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()
|
D | paragraph.h | 50 void draw(RenderingSurface *surface, le_int32 firstLine, le_int32 lastLine);
|
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()
|
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()
|
/third_party/gptfdisk/ |
D | gptcurses.cc | 611 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/ |
D | test_sys_settrace.py | 1274 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
|