/third_party/skia/third_party/externals/brotli/research/ |
H A D | brotlidump.py | 1331 for line in self.actionTable.splitlines(keepends=False): 1333 action = line[start:end]
|
/third_party/python/Lib/test/ |
H A D | test_concurrent_futures.py | 284 self.assertTrue(any(msg in line for line in output),
|
H A D | test_curses.py | 14 # 'curses' resource be given on the regrtest command line using the -u 15 # option. If not available, nothing after this line will be executed. 1164 # as the first line of the docstring. So we parse that, 1319 for y, line in enumerate(text[:maxy]): 1320 win.addstr(y, 0, line[:maxx - (y == maxy - 1)])
|
H A D | test_compileall.py | 232 line = stdout.getvalue().splitlines()[0] 233 self.assertRegex(line, r'Listing ([^WindowsPath|PosixPath].*)')
|
H A D | test_sys_settrace.py | 1 # Testing the line trace facility. 50 (1, 'line'), 55 # clause or else clause) under what conditions do you set a line number 69 (1, 'line'), 70 (2, 'line'), 71 (3, 'line'), 72 (5, 'line'), 83 (1, 'line'), 84 (2, 'line'), 85 (3, 'line'), [all...] |
H A D | test_urllib.py | 226 # instant it returned anything beyond the first line from the 229 for line in self.returned_obj: 230 self.assertEqual(line, self.text) 462 # a status line)
|
/third_party/skia/third_party/externals/tint/src/resolver/ |
H A D | dependency_graph_test.cc | 1257 auto add_use = [&](const ast::Node* decl, auto* use, int line, in TEST_F() 1261 std::string(__FILE__) + ":" + std::to_string(line) + ": " + kind}); in TEST_F()
|
H A D | resolver_validation.cc | 558 if (decl->source.range.begin.line) { in ValidateGlobalVariable() 584 if (decl->source.range.begin.line) { in ValidateGlobalVariable()
|
/third_party/python/Objects/ |
H A D | genobject.c | 1345 int line = _PyInterpreterFrame_GetLine(frame); in compute_cr_origin() local 1346 PyObject *frameinfo = Py_BuildValue("OiO", code->co_filename, line, in compute_cr_origin()
|
H A D | object.c | 2318 const char *file, int line, const char *function) in _PyObject_AssertFailed() 2320 fprintf(stderr, "%s:%d: ", file, line); in _PyObject_AssertFailed() 2317 _PyObject_AssertFailed(PyObject *obj, const char *expr, const char *msg, const char *file, int line, const char *function) _PyObject_AssertFailed() argument
|
/third_party/selinux/libsepol/cil/src/ |
H A D | cil_copy_ast.c | 2024 new->line = orig->line; in __cil_copy_node_helper()
|
/third_party/vk-gl-cts/modules/gles3/functional/ |
H A D | es3fFboTestUtil.cpp | 925 FboIncompleteException::FboIncompleteException (deUint32 reason, const char* file, int line) in FboIncompleteException() argument 926 : TestError ("Framebuffer is not complete", getFboIncompleteReasonName(reason), file, line) in FboIncompleteException()
|
/third_party/lame/ |
H A D | configure | 85 # We need space, tab and new line, in precisely that order. Quoting is 2218 generated by GNU Autoconf 2.69. Invocation command line was 2270 # Keep a trace of the command line. 2415 # confdefs.h avoids OS command line length limits that DEFS can exceed. 3224 on the command line, even when the '-f' option is present. This is contrary 4407 # icc: Command line warning: ignoring option '-M'; no argument required 4409 # icc: Command line remark: option '-MP' not supported 5555 # find the maximum length of command line arguments 5556 { $as_echo "$as_me:${as_lineno-$LINENO}: checking the maximum length of command line arguments" >&5 5557 $as_echo_n "checking the maximum length of command line argument [all...] |
/third_party/node/test/fixtures/snapshot/ |
H A D | typescript.js | 296 // eslint-disable-next-line @typescript-eslint/no-inferrable-types 318 // eslint-disable-next-line no-in-operator 328 // eslint-disable-next-line no-in-operator 2582 * Removes the leading and trailing white space and line terminator characters from a string. 2750 // eslint-disable-next-line no-null/no-null 2945 if (!("__debugFlowFlags" in flowNode)) { // eslint-disable-line no-in-operator 2991 if (!("__tsDebuggerDisplay" in array)) { // eslint-disable-line no-in-operator 3622 // eslint-disable-next-line @typescript-eslint/naming-convention 4047 line: lc.line [all...] |
/third_party/backends/backend/ |
H A D | umax.c | 622 DBG_inq_nz("color ordering support....................: line without CCD distance\n", in umax_print_inquiry() 626 DBG_inq_nz("color ordering support....................: line with CCD distance\n", in umax_print_inquiry() 791 DBG(DBG_inquiry,"fb/uta: color line arrangement mode.......: %d\n", in umax_print_inquiry() 800 DBG(DBG_inquiry,"adf: color line arrangement mode.......: %d\n", in umax_print_inquiry() 809 DBG(DBG_inquiry,"CCD line distance.........................: %d\n", in umax_print_inquiry() 1223 /* tests if line related to optical resolution has to be skipped for selected resolution */ in umax_forget_line() 1224 /* returns 0 if line is ok, -1 if line has to be skipped */ in umax_forget_line() 1238 dev->pixelline_del[color]++; /* inc pointer to next line to skip */ in umax_forget_line() 1239 return(-1); /* skip line */ in umax_forget_line() 1256 unsigned int line = dev->pixelline_next[color]; /* bufferlinenumber */ umax_order_line_to_pixel() local [all...] |
/third_party/python/Python/ |
H A D | ceval.c | 1572 the start of each executed line of code. in trace_function_entry() 1591 return itself and isn't called for "line" events */ in trace_function_entry() 5640 /* line-by-line tracing support */ 6910 /* If the last instruction falls at the start of a line or if it 6911 represents a jump backwards, update the frame's line number and 6924 int line = _PyCode_LineNumberFromArray(frame->f_code, _PyInterpreterFrame_LASTI(frame)); local 6929 if (line != -1 && f->f_trace_lines) { 6930 /* Trace backward edges (except in 'yield from') or if line number has changed */ 6931 int trace = line ! 7926 int line = _PyCode_CheckLineNumber(addr, &trace_info->bounds); global() local [all...] |
/third_party/eudev/ |
H A D | configure | 85 # We need space, tab and new line, in precisely that order. Quoting is 2456 generated by GNU Autoconf 2.69. Invocation command line was 2508 # Keep a trace of the command line. 2653 # confdefs.h avoids OS command line length limits that DEFS can exceed. 5046 # icc: Command line warning: ignoring option '-M'; no argument required 5048 # icc: Command line remark: option '-MP' not supported 5093 on the command line, even when the '-f' option is present. This is contrary 5826 # find the maximum length of command line arguments 5827 { $as_echo "$as_me:${as_lineno-$LINENO}: checking the maximum length of command line arguments" >&5 5828 $as_echo_n "checking the maximum length of command line argument [all...] |
/third_party/skia/third_party/externals/microhttpd/ |
H A D | configure | 85 # We need space, tab and new line, in precisely that order. Quoting is 2119 generated by GNU Autoconf 2.69. Invocation command line was 2171 # Keep a trace of the command line. 2316 # confdefs.h avoids OS command line length limits that DEFS can exceed. 3047 on the command line, even when the '-f' option is present. This is contrary 4279 # icc: Command line warning: ignoring option '-M'; no argument required 4281 # icc: Command line remark: option '-MP' not supported 5019 # find the maximum length of command line arguments 5020 { $as_echo "$as_me:${as_lineno-$LINENO}: checking the maximum length of command line arguments" >&5 5021 $as_echo_n "checking the maximum length of command line argument [all...] |
/third_party/icu/icu4c/source/i18n/ |
H A D | regexcmp.cpp | 190 REGEX_SCAN_DEBUG_PRINTF(("char, line, col = (\'%c\', %d, %d) state=%s ", in compile() 1540 // treating a '#' as a to-the-end-of-line comment. in doParseActions() 2882 case URX_BACKSLASH_R: // Any line ending sequence 2883 case URX_BACKSLASH_V: // Any line ending code point, with optional negation 3156 // 3. Start of line in multi-line mode. 3170 // Match at start of line in Multi-Line mode. 3915 // Hmm. fParseErr (UParseError) line & offset fields are int32_t in public 3920 fParseErr->line = 0; 3923 fParseErr->line [all...] |
/third_party/node/deps/icu-small/source/i18n/ |
H A D | regexcmp.cpp | 190 REGEX_SCAN_DEBUG_PRINTF(("char, line, col = (\'%c\', %d, %d) state=%s ", in compile() 1540 // treating a '#' as a to-the-end-of-line comment. in doParseActions() 2882 case URX_BACKSLASH_R: // Any line ending sequence 2883 case URX_BACKSLASH_V: // Any line ending code point, with optional negation 3156 // 3. Start of line in multi-line mode. 3170 // Match at start of line in Multi-Line mode. 3915 // Hmm. fParseErr (UParseError) line & offset fields are int32_t in public 3920 fParseErr->line = 0; 3923 fParseErr->line [all...] |
/third_party/icu/icu4c/source/test/cintltst/ |
H A D | creststn.c | 278 static void checkStatus(int32_t line, UErrorCode expected, UErrorCode status) { in checkStatus() argument 280 log_data_err("Resource not present, cannot test (%s:%d)\n", __FILE__, line); in checkStatus() 283 log_err_status(status, "%s:%d: Expected error code %s, got error code %s\n", __FILE__, line, u_errorName(expected), u_errorName(status)); in checkStatus()
|
/third_party/ltp/tools/sparse/sparse-src/ |
H A D | linearize.c | 274 /* Sparse tagging (line numbers, context, whatever) */ 514 printf("%s:%d\n", stream_name(bb->pos.stream), bb->pos.line); in show_bb() 542 stream_name(from->pos.stream), from->pos.line, from->pos.pos); in show_bb() 550 stream_name(to->pos.stream), to->pos.line, to->pos.pos); in show_bb()
|
/third_party/node/deps/openssl/openssl/crypto/ec/asm/ |
H A D | ecp_nistz256-ppc64.pl | 89 undef @line; 91 push @line,(@tbl[$j*16+$i/4]>>(($i%4)*8))&0xff; 94 $code.=join(',',map { sprintf "0x%02x",$_} @line);
|
H A D | ecp_nistz256-armv8.pl | 94 undef @line; 96 push @line,(@tbl[$j*16+$i/4]>>(($i%4)*8))&0xff; 99 $code.=join(',',map { sprintf "0x%02x",$_} @line);
|
/third_party/openssl/crypto/ec/asm/ |
H A D | ecp_nistz256-ppc64.pl | 89 undef @line; 91 push @line,(@tbl[$j*16+$i/4]>>(($i%4)*8))&0xff; 94 $code.=join(',',map { sprintf "0x%02x",$_} @line);
|