Home
last modified time | relevance | path

Searched refs:line (Results 4676 - 4700 of 5686) sorted by relevance

1...<<181182183184185186187188189190>>...228

/third_party/python/Include/cpython/
H A Dobject.h405 int line,
/third_party/python/Lib/test/test_email/
H A Dtest_defect_handling.py208 self.assertEqual(self.get_defects(msg)[0].line, ' Line 1\n')
211 # Our heuristic if we see a line that doesn't look like a header (no
212 # leading whitespace but no ':') is to assume that the blank line that
/third_party/vk-gl-cts/modules/gles3/functional/
H A Des3fFboTestUtil.hpp203 FboIncompleteException (deUint32 reason, const char* file, int line);
/foundation/arkui/ace_engine/advanced_ui_component/filter/interfaces/
H A Dfilter.js486 }, { page: 'library/src/main/ets/components/mainpage/filter.ets', line: 242, col: 9 });
512 }, { page: 'library/src/main/ets/components/mainpage/filter.ets', line: 249, col: 7 });
1877 }, { page: 'library/src/main/ets/components/mainpage/filter.ets', line: 810, col: 9 });
1952 }, { page: 'library/src/main/ets/components/mainpage/filter.ets', line: 839, col: 9 });
2300 }, { page: 'library/src/main/ets/components/mainpage/filter.ets', line: 999, col: 11 });
2326 }, { page: 'library/src/main/ets/components/mainpage/filter.ets', line: 1008, col: 9 });
/foundation/arkui/ace_engine/advanced_ui_component/segmentbutton/interfaces/
H A Dsegmentbutton.js1659 line: 813,
2338 line: 1114,
2410 line: 1125,
2487 line: 1151,
2520 line: 1157,
2557 }, { page: "segmentbutton/src/main/ets/components/MainPage.ets", line: 1172, u3: 9 });
/kernel/linux/linux-5.10/drivers/net/ethernet/broadcom/bnx2x/
H A Dbnx2x_sriov.c1645 /* called by bnx2x_init_hw_func, returns the next ilt line */
1646 int bnx2x_iov_init_ilt(struct bnx2x *bp, u16 line) in bnx2x_iov_init_ilt() argument
1652 return line; in bnx2x_iov_init_ilt()
1658 ilt->lines[line+i].page = hw_cxt->addr; in bnx2x_iov_init_ilt()
1659 ilt->lines[line+i].page_mapping = hw_cxt->mapping; in bnx2x_iov_init_ilt()
1660 ilt->lines[line+i].size = hw_cxt->size; /* doesn't matter */ in bnx2x_iov_init_ilt()
1662 return line + i; in bnx2x_iov_init_ilt()
/kernel/linux/linux-5.10/drivers/tty/
H A Dmxser.c810 /* update input line counters */ in mxser_check_modem_status()
1008 int line; in mxser_open() local
1010 line = tty->index; in mxser_open()
1011 if (line == MXSER_PORTS) in mxser_open()
1013 info = &mxser_boards[line / MXSER_PORTS_PER_BOARD].ports[line % MXSER_PORTS_PER_BOARD]; in mxser_open()
1048 * disable the receive line status interrupts, and tell the in mxser_close_port()
1050 * line status register. in mxser_close_port()
1224 ss->line = tty->index, in mxser_get_serial_info()
1317 * mxser_get_lsr_info - get line statu
[all...]
/kernel/linux/linux-5.10/net/bluetooth/rfcomm/
H A Dcore.c98 #define __get_rpn_data_bits(line) ((line) & 0x3)
99 #define __get_rpn_stop_bits(line) (((line) >> 2) & 0x1)
100 #define __get_rpn_parity(line) (((line) >> 3) & 0x7)
1494 BT_DBG("dlci %d cr %d len 0x%x bitr 0x%x line 0x%x flow 0x%x xonc 0x%x xoffc 0x%x pm 0x%x", in rfcomm_recv_rpn()
/kernel/linux/linux-6.6/drivers/net/ethernet/broadcom/bnx2x/
H A Dbnx2x_sriov.c1644 /* called by bnx2x_init_hw_func, returns the next ilt line */
1645 int bnx2x_iov_init_ilt(struct bnx2x *bp, u16 line) in bnx2x_iov_init_ilt() argument
1651 return line; in bnx2x_iov_init_ilt()
1657 ilt->lines[line+i].page = hw_cxt->addr; in bnx2x_iov_init_ilt()
1658 ilt->lines[line+i].page_mapping = hw_cxt->mapping; in bnx2x_iov_init_ilt()
1659 ilt->lines[line+i].size = hw_cxt->size; /* doesn't matter */ in bnx2x_iov_init_ilt()
1661 return line + i; in bnx2x_iov_init_ilt()
/kernel/linux/linux-6.6/net/bluetooth/rfcomm/
H A Dcore.c100 #define __get_rpn_data_bits(line) ((line) & 0x3)
101 #define __get_rpn_stop_bits(line) (((line) >> 2) & 0x1)
102 #define __get_rpn_parity(line) (((line) >> 3) & 0x7)
1498 BT_DBG("dlci %d cr %d len 0x%x bitr 0x%x line 0x%x flow 0x%x xonc 0x%x xoffc 0x%x pm 0x%x", in rfcomm_recv_rpn()
/test/xts/acts/commonlibrary/thirdparty/musl/entry/src/main/cpp/
H A Dstdiondk1.cpp1063 char *line = nullptr; in Getdelim_One() local
1071 ssize_t ret = getdelim(&line, &len, ',', fp); in Getdelim_One()
1076 napi_create_int32(env, strcmp(line, "hello,") == PARAM_0 && len > strlen("hello,"), &result); in Getdelim_One()
1082 char *line = nullptr; in Getline_One() local
1090 ssize_t ret = getline(&line, &len, fp); in Getline_One()
1095 napi_create_int32(env, strcmp(line, "helloworld") == PARAM_0 && ret == PARAM_10, &result); in Getline_One()
/third_party/backends/backend/
H A Dcanon-sane.c63 char line[PATH_MAX]; in sane_init() local
67 /* while (fgets (line, sizeof (line), fp)) */ in sane_init()
68 while (sanei_config_read (line, sizeof (line), fp)) in sane_init()
70 if (line[0] == '#') /* ignore line comments */ in sane_init()
72 len = strlen (line); in sane_init()
73 /*if (line[len - 1] == '\n') in sane_init()
74 line[ in sane_init()
[all...]
H A Dhp3900_sane.c1752 SANE_Char line[PATH_MAX]; in sane_init() local
1772 while (sanei_config_read (line, sizeof (line), conf_fp)) in sane_init()
1778 proper_str = sanei_config_get_string (line, &str); in sane_init()
1781 if ((str != NULL) && (proper_str != line) && (str[0] != '#')) in sane_init()
1783 /* If line's not blank or a comment, then it's the device in sane_init()
1785 sanei_usb_attach_matching_devices (line, attach_one_device); in sane_init()
2430 /* Allocate buffer to read one line */ in sane_start()
2507 /* get bytes per line */ in sane_read()
2539 /* read from scanner up to one line */ in sane_read()
[all...]
/third_party/jerryscript/jerry-core/parser/js/
H A Djs-parser-expr.c867 parser_line_counter_t start_line, /**< start line */ in parser_reparse_as_common_identifier()
879 context_p->line = start_line; in parser_reparse_as_common_identifier()
1082 parser_line_counter_t start_line = context_p->token.line; in parser_parse_object_literal()
1190 parser_line_counter_t debugger_line = context_p->token.line; in parser_parse_function_expression()
1238 context_p->token.line = debugger_line; in parser_parse_function_expression()
2818 parser_line_counter_t ident_line_counter) /**< identifier line counter */ in parser_pattern_form_assignment()
2926 parser_line_counter_t ident_line_counter = context_p->token.line; in parser_pattern_process_assignment()
3060 parser_line_counter_t start_line = context_p->token.line; in parser_parse_object_initializer()
/third_party/skia/third_party/externals/spirv-cross/
H A Dspirv_cross_c.cpp756 spvc_result spvc_compiler_add_header_line(spvc_compiler compiler, const char *line) in spvc_compiler_add_header_line() argument
765 static_cast<CompilerGLSL *>(compiler->compiler.get())->add_header_line(line); in spvc_compiler_add_header_line()
768 (void)line; in spvc_compiler_add_header_line()
774 spvc_result spvc_compiler_require_extension(spvc_compiler compiler, const char *line) in spvc_compiler_require_extension() argument
783 static_cast<CompilerGLSL *>(compiler->compiler.get())->require_extension(line); in spvc_compiler_require_extension()
786 (void)line; in spvc_compiler_require_extension()
/third_party/python/Lib/test/
H A Dtest_configparser.py190 'this line is much, much longer than my editor\nlikes it.')
270 'this line is much, much longer than my editor\nlikes it.')
309 foo{0[1]} this line is much, much longer than my editor
380 "foo": "this line is much, much longer than my editor\nlikes "
469 "[MySection]\nOption{} first line \n\tsecond line \n".format(
472 eq(cf.get("MySection", "Option"), "first line\nsecond line")
510 "[MySection]\nOption{} first line \n\tsecond line \
[all...]
H A Dtest_tempfile.py820 for line in out.strip().splitlines():
822 # First line of result includes our directory
823 if line.startswith(dir):
824 acl = line.removeprefix(dir).strip()
825 elif line and line[:1].isspace():
826 acl = line.strip()
/device/soc/rockchip/common/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd_wifi6/
H A Ddhd_rtt.c920 char line[128], *p; in rtt_prhex() local
921 int len = sizeof(line); in rtt_prhex()
928 p = line; in rtt_prhex()
931 nchar = snprintf(p, len, " %04d: ", i); /* line prefix */ in rtt_prhex()
942 DHD_RTT(("%s\n", line)); /* flush line */ in rtt_prhex()
943 p = line; in rtt_prhex()
944 len = sizeof(line); in rtt_prhex()
948 /* flush last partial line */ in rtt_prhex()
949 if (p != line) in rtt_prhex()
[all...]
/kernel/linux/linux-5.10/tools/perf/ui/browsers/
H A Dhists.c119 * Verify if we were at the last line and that line isn't in hist_browser__update_rows()
120 * visibe because we now show the header line(s). in hist_browser__update_rows()
1643 size_t size, int line) in hists_browser__scnprintf_headers()
1665 ret = fmt->header(fmt, &dummy_hpp, hists, line, &span); in hists_browser__scnprintf_headers()
1781 int line; in hists_browser__headers() local
1783 for (line = 0; line < hpp_list->nr_header_lines; line++) { in hists_browser__headers()
1787 sizeof(headers), line); in hists_browser__headers()
1642 hists_browser__scnprintf_headers(struct hist_browser *browser, char *buf, size_t size, int line) hists_browser__scnprintf_headers() argument
[all...]
/kernel/linux/linux-6.6/tools/perf/ui/browsers/
H A Dhists.c119 * Verify if we were at the last line and that line isn't in hist_browser__update_rows()
120 * visible because we now show the header line(s). in hist_browser__update_rows()
1644 size_t size, int line) in hists_browser__scnprintf_headers()
1666 ret = fmt->header(fmt, &dummy_hpp, hists, line, &span); in hists_browser__scnprintf_headers()
1782 int line; in hists_browser__headers() local
1784 for (line = 0; line < hpp_list->nr_header_lines; line++) { in hists_browser__headers()
1788 sizeof(headers), line); in hists_browser__headers()
1643 hists_browser__scnprintf_headers(struct hist_browser *browser, char *buf, size_t size, int line) hists_browser__scnprintf_headers() argument
[all...]
/third_party/lzma/CPP/7zip/UI/Common/
H A DBench.cpp1295 // affMask <<= 3; // debug line: to test no affinity in coder;
3160 // we need additional empty line as line for decompression results
4280 for (unsigned line = 0; line < 3; line++)
4283 f.Print(line == 0 ? "THRD" : line == 1 ? " " : "Size");
4288 if (line == 0)
4297 PrintRight(f, line
[all...]
/third_party/mesa3d/src/gallium/drivers/radeonsi/
H A Dsi_shader.c986 * disassembly one line at a time. This causes more in si_shader_dump_disassembly()
992 uint64_t line = 0; in si_shader_dump_disassembly() local
993 while (line < nbytes) { in si_shader_dump_disassembly()
994 int count = nbytes - line; in si_shader_dump_disassembly()
995 const char *nl = memchr(disasm + line, '\n', nbytes - line); in si_shader_dump_disassembly()
997 count = nl - (disasm + line); in si_shader_dump_disassembly()
1000 util_debug_message(debug, SHADER_INFO, "%.*s", count, disasm + line); in si_shader_dump_disassembly()
1003 line += count + 1; in si_shader_dump_disassembly()
/third_party/libinput/test/
H A Dlitest.c174 int line, in litest_fail_condition()
189 litest_log("in %s() (%s:%d)\n", func, file, line); in litest_fail_condition()
197 int line, in litest_fail_comparison_int()
207 litest_log("in %s() (%s:%d)\n", func, file, line); in litest_fail_comparison_int()
215 int line, in litest_fail_comparison_double()
225 litest_log("in %s() (%s:%d)\n", func, file, line); in litest_fail_comparison_double()
233 int line, in litest_fail_comparison_ptr()
238 litest_log("in %s() (%s:%d)\n", func, file, line); in litest_fail_comparison_ptr()
173 litest_fail_condition(const char *file, int line, const char *func, const char *condition, const char *message, ...) litest_fail_condition() argument
196 litest_fail_comparison_int(const char *file, int line, const char *func, const char *operator, int a, int b, const char *astr, const char *bstr) litest_fail_comparison_int() argument
214 litest_fail_comparison_double(const char *file, int line, const char *func, const char *operator, double a, double b, const char *astr, const char *bstr) litest_fail_comparison_double() argument
232 litest_fail_comparison_ptr(const char *file, int line, const char *func, const char *comparison) litest_fail_comparison_ptr() argument
/third_party/vk-gl-cts/external/openglcts/modules/common/
H A DglcViewportArrayTests.cpp674 std::string line; in printShaderSource() local
680 line.assign(source, next_line - source); in printShaderSource()
684 line = source; in printShaderSource()
689 log << std::setw(4) << line_number << "||" << line; in printShaderSource() local
2838 for (GLuint line = 0; line < height; ++line) in checkRegionR32I()
2840 const GLuint line_offset = offset + line * m_width; in checkRegionR32I()
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/ui_extension/
H A Dui_extension_pattern.cpp1440 std::string line; in DumpOthers() local
1442 while (getline(ss, line, ';')) { in DumpOthers()
1443 DumpLog::GetInstance().Print(line); in DumpOthers()

Completed in 70 milliseconds

1...<<181182183184185186187188189190>>...228