Home
last modified time | relevance | path

Searched refs:line (Results 1801 - 1825 of 5661) sorted by relevance

1...<<71727374757677787980>>...227

/third_party/node/deps/googletest/include/gtest/
H A Dgtest.h567 // Returns the line where this test is defined.
568 int line() const { return location_.line; } in line() function in testing::TestInfo
1334 // RUN_ALL_TESTS(). In particular, it parses a command line for the
1602 AssertHelper(TestPartResult::Type type, const char* file, int line,
1618 : type(t), file(srcfile), line(line_num), message(msg) {} in AssertHelperData()
1622 int const line; member
1738 #define ADD_FAILURE_AT(file, line) \
1739 GTEST_MESSAGE_AT_(file, line, "Failed", \
1746 #define GTEST_FAIL_AT(file, line) \
2062 ScopedTrace(const char* file, int line, const T& message) ScopedTrace() argument
2067 ScopedTrace(const char* file, int line, const char* message) ScopedTrace() argument
2071 ScopedTrace(const char* file, int line, const std::string& message) ScopedTrace() argument
2282 RegisterTest(const char* test_suite_name, const char* test_name, const char* type_param, const char* value_param, const char* file, int line, Factory factory) RegisterTest() argument
[all...]
/third_party/mesa3d/src/gtest/include/gtest/
H A Dgtest.h729 // Returns the line where this test is defined.
730 int line() const { return location_.line; } in line() function in testing::TestInfo
1480 // RUN_ALL_TESTS(). In particular, it parses a command line for the
1772 int line,
1790 : type(t), file(srcfile), line(line_num), message(msg) { } in AssertHelperData()
1794 int const line; member
1916 #define ADD_FAILURE_AT(file, line) \
1917 GTEST_MESSAGE_AT_(file, line, "Failed", \
1924 #define GTEST_FAIL_AT(file, line) \
2223 ScopedTrace(const char* file, int line, const T& message) ScopedTrace() argument
2228 ScopedTrace(const char* file, int line, const char* message) ScopedTrace() argument
2232 ScopedTrace(const char* file, int line, const std::string& message) ScopedTrace() argument
2438 RegisterTest(const char* test_suite_name, const char* test_name, const char* type_param, const char* value_param, const char* file, int line, Factory factory) RegisterTest() argument
[all...]
/kernel/linux/linux-6.6/rust/kernel/
H A Dstd_vendor.rs115 /// file and line whenever it's reached.
149 $crate::pr_info!("[{}:{}]\n", ::core::file!(), ::core::line!())
157 ::core::file!(), ::core::line!(), ::core::stringify!($val), &tmp);
/third_party/mesa3d/src/gallium/frontends/lavapipe/
H A Dlvp_util.c27 __lvp_finishme(const char *file, int line, const char *format, ...) in __lvp_finishme() argument
36 fprintf(stderr, "%s:%d: FINISHME: %s\n", file, line, buffer); in __lvp_finishme()
/third_party/node/tools/
H A Dgetsharedopensslhasquic.py19 for line in f:
20 if (re.match(regex, line)):
/third_party/musl/src/passwd/
H A Dfgetgrent.c6 static char *line, **mem; in fgetgrent() local
10 __getgrent_a(f, &gr, &line, &size, &mem, &nmem, &res); in fgetgrent()
/third_party/unity/auto/
H A Dextract_version.py9 for line in f:
10 m = ver_re.match(line)
/third_party/vk-gl-cts/framework/delibs/decpp/
H A DdeDefs.cpp32 void throwRuntimeError (const char* message, const char* expr, const char* file, int line) in throwRuntimeError() argument
38 msg << " at " << file << ":" << line; in throwRuntimeError() local
/kernel/linux/linux-5.10/arch/arm/mm/
H A Dproc-xsc3.S41 * The cache line size of the L1 I, L1 D and unified L2 cache.
68 1: mcr p15, 0, \rd, c7, c14, 2 @ clean/invalidate L1 D line
196 mcrne p15, 0, r0, c7, c5, 1 @ invalidate L1 I line
197 mcr p15, 0, r0, c7, c14, 1 @ clean/invalidate L1 D line
217 * Note: single I-cache line invalidation isn't used here since
224 1: mcr p15, 0, r0, c7, c10, 1 @ clean L1 D line
245 1: mcr p15, 0, r0, c7, c14, 1 @ clean/invalidate L1 D line
260 * are not cache line aligned, those lines must be written
269 mcrne p15, 0, r0, c7, c10, 1 @ clean L1 D line
271 mcrne p15, 0, r1, c7, c10, 1 @ clean L1 D line
[all...]
/kernel/linux/linux-6.6/arch/arm/mm/
H A Dproc-xsc3.S41 * The cache line size of the L1 I, L1 D and unified L2 cache.
68 1: mcr p15, 0, \rd, c7, c14, 2 @ clean/invalidate L1 D line
196 mcrne p15, 0, r0, c7, c5, 1 @ invalidate L1 I line
197 mcr p15, 0, r0, c7, c14, 1 @ clean/invalidate L1 D line
217 * Note: single I-cache line invalidation isn't used here since
224 1: mcr p15, 0, r0, c7, c10, 1 @ clean L1 D line
245 1: mcr p15, 0, r0, c7, c14, 1 @ clean/invalidate L1 D line
260 * are not cache line aligned, those lines must be written
269 mcrne p15, 0, r0, c7, c10, 1 @ clean L1 D line
271 mcrne p15, 0, r1, c7, c10, 1 @ clean L1 D line
[all...]
/third_party/python/Modules/_io/
H A Dstringio.c84 /* Reserve one more char for line ending detection. */ in resize_buffer()
367 /* If we haven't found any line ending, we just return everything in _stringio_readline()
399 PyObject *line; in stringio_iternext() local
407 line = _stringio_readline(self, -1); in stringio_iternext()
411 line = PyObject_CallMethodNoArgs((PyObject *)self, in stringio_iternext()
413 if (line && !PyUnicode_Check(line)) { in stringio_iternext()
416 "not '%.200s'", Py_TYPE(line)->tp_name); in stringio_iternext()
417 Py_DECREF(line); in stringio_iternext()
422 if (line in stringio_iternext()
[all...]
H A Dtextio.c31 "This class provides a character and line based interface to stream\n"
110 "Only line endings translated during reading are considered.\n"
1033 Character and line based layer over a BufferedIOBase object, buffer.
1042 newline controls how line endings are handled. It can be None, '',
1048 caller. If it is '', universal newline mode is enabled, but line
1051 string, and the line ending is returned to the caller untranslated.
1054 translated to the system default line separator, os.linesep. If
2110 PyObject *line = NULL, *chunks = NULL, *remaining = NULL; in _textiowrapper_readline() local
2152 line = self->decoded_chars; in _textiowrapper_readline()
2155 Py_INCREF(line); in _textiowrapper_readline()
3062 PyObject *line; textiowrapper_iternext() local
[all...]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/impl/
H A DUnitsTest.java538 TestCase(String line) { in testConverterWithCLDRTests()
539 String[] fields = line in testConverterWithCLDRTests()
559 String line = f.readLine(); in testConverterWithCLDRTests()
560 if (line == null) break; in testConverterWithCLDRTests()
561 if (line.isEmpty() || line.startsWith("#")) continue; in testConverterWithCLDRTests()
562 tests.add(new TestCase(line)); in testConverterWithCLDRTests()
621 TestCase(String line) { in testUnitPreferencesWithCLDRTests()
622 String[] fields = line in testUnitPreferencesWithCLDRTests()
683 String line in testUnitPreferencesWithCLDRTests()
[all...]
/third_party/libwebsockets/lib/misc/fts/
H A Dtrie-fd.c244 int line = 1, bp, ra; in lws_fts_cache_chunktable() local
263 lt->chunk_line_number_start = line; in lws_fts_cache_chunktable()
268 line += lt->chunk_line_number_count; in lws_fts_cache_chunktable()
285 int line, off_t *_ofs) in lws_fts_getfileoffset()
296 if (line >= lt->chunk_line_number_start && in lws_fts_getfileoffset()
297 line < lt->chunk_line_number_start + in lws_fts_getfileoffset()
310 line -= lt->chunk_line_number_start; in lws_fts_getfileoffset()
315 while (line) { in lws_fts_getfileoffset()
318 line--; in lws_fts_getfileoffset()
328 lwsl_info("%s: bail %d\n", __func__, line); in lws_fts_getfileoffset()
284 lws_fts_getfileoffset(struct lws_fts_file *jtf, struct linetable *ltstart, int line, off_t *_ofs) lws_fts_getfileoffset() argument
618 uint32_t fi, tot, line, ro, ofs_linetable, lines, fplen, lws_fts_search() local
[all...]
/third_party/musl/porting/linux/user/src/network/
H A Dlookup_name.c62 static inline int get_hosts_str(char *line, int length, FILE *f, int *i) in get_hosts_str() argument
65 char *ret = fgets(line, length, f); in get_hosts_str()
67 size_t len = strlen(line); in get_hosts_str()
68 if (len > 0 && line[len - 1] != '\n' && len < length - 1) { in get_hosts_str()
69 line[len] = '\n'; in get_hosts_str()
70 line[len + 1] = '\0'; in get_hosts_str()
76 memcpy(line, fixed_hosts[*i], strlen(fixed_hosts[*i])); in get_hosts_str()
85 char line[512]; in name_from_hosts() local
91 while (i < FIXED_HOSTS_MAX_LENGTH && get_hosts_str(line, sizeof line, in name_from_hosts()
[all...]
/third_party/musl/src/network/
H A Dlookup_name.c62 static inline int get_hosts_str(char *line, int length, FILE *f, int *i) in get_hosts_str() argument
65 char *ret = fgets(line, length, f); in get_hosts_str()
67 size_t len = strlen(line); in get_hosts_str()
68 if (len > 0 && line[len - 1] != '\n' && len < length - 1) { in get_hosts_str()
69 line[len] = '\n'; in get_hosts_str()
70 line[len + 1] = '\0'; in get_hosts_str()
76 memcpy(line, fixed_hosts[*i], strlen(fixed_hosts[*i])); in get_hosts_str()
85 char line[512]; in name_from_hosts() local
91 while (i < FIXED_HOSTS_MAX_LENGTH && get_hosts_str(line, sizeof line, in name_from_hosts()
[all...]
/third_party/python/Lib/test/
H A Dtest_binascii.py70 for line in lines:
71 a = self.type2test(line)
91 def addnoise(line):
93 ratio = len(line) // len(noise)
95 while line and noise:
96 if len(line) // len(noise) > ratio:
97 c, line = line[0], line[1:]
101 return res + noise + line
[all...]
/foundation/ability/ability_runtime/js_environment/interfaces/inner_api/
H A Dsource_map.h77 bool TranslateUrlPositionBySourceMap(std::string& url, int& line, int& column);
83 bool GetLineAndColumnNumbers(int& line, int& column, SourceMapData& targetMap, std::string& url);
93 void GetPosInfo(const std::string& temp, int32_t start, std::string& line, std::string& column);
95 std::string GetSourceInfo(const std::string& line, const std::string& column,
/kernel/linux/build/test/moduletest/runtest/bin/cpuisolation_t/testcases/bin/
H A Dcpuisolation01.sh144 line=$(( $i + 1))
146 sed -n "${line}p" | awk -F ':' '{print$2}')
155 sed -n "${line}p" | awk -F ':' '{print$2}')
164 sed -n "${line}p" | awk -F ':' '{print$2}')
/kernel/linux/linux-5.10/drivers/media/pci/tw68/
H A Dtw68-risc.c28 * @bpl: number of bytes per scan line
39 unsigned int line, todo, done; in tw68_risc_field() local
55 for (line = 0; line < lines; line++) { in tw68_risc_field()
74 todo = bpl; /* one full line to be done */ in tw68_risc_field()
121 * first odd frame line
123 * first even frame line
124 * @bpl: number of data bytes per scan line
125 * @padding: number of extra bytes to add at end of line
[all...]
/kernel/linux/linux-5.10/drivers/scsi/qedf/
H A Dqedf_dbg.h84 void qedf_dbg_err(struct qedf_dbg_ctx *qedf, const char *func, u32 line,
87 void qedf_dbg_warn(struct qedf_dbg_ctx *qedf, const char *func, u32 line,
91 u32 line, const char *, ...);
93 void qedf_dbg_info(struct qedf_dbg_ctx *qedf, const char *func, u32 line,
/kernel/linux/linux-5.10/drivers/tty/serial/8250/
H A D8250_bcm2835aux.c38 * @line: index of the port's serial8250_ports[] entry
43 int line; member
131 /* Check for a fixed line number */ in bcm2835aux_serial_probe()
134 up.port.line = ret; in bcm2835aux_serial_probe()
157 data->line = ret; in bcm2835aux_serial_probe()
170 serial8250_unregister_port(data->line); in bcm2835aux_serial_remove()
/kernel/linux/linux-5.10/drivers/tty/serial/
H A Dsuncore.c56 struct uart_driver *drv, int line, bool ignore_line) in sunserial_console_match()
73 if ((line & 1) != off) in sunserial_console_match()
78 con->index = line; in sunserial_console_match()
79 add_preferred_console(con->name, line, NULL); in sunserial_console_match()
55 sunserial_console_match(struct console *con, struct device_node *dp, struct uart_driver *drv, int line, bool ignore_line) sunserial_console_match() argument
/kernel/linux/linux-5.10/include/linux/
H A Dtty_driver.h136 * the line discipline are close to full, and it should somehow
146 * overrunning the input buffers of the line disciplines.
224 * line). See tty_do_resize() if you need to wrap the standard method
286 int (*poll_init)(struct tty_driver *driver, int line, char *options);
287 int (*poll_get_char)(struct tty_driver *driver, int line);
288 void (*poll_put_char)(struct tty_driver *driver, int line, char ch);
334 extern struct tty_driver *tty_find_polling_driver(char *name, int *line);
375 * line driver, it won't do so. This allows the line driver to
399 * needed per line fo
[all...]
/kernel/linux/linux-5.10/tools/perf/util/
H A Dsrccode.c157 char *find_sourceline(char *fn, unsigned line, int *lenp) in find_sourceline() argument
163 line--; in find_sourceline()
164 if (line >= sf->numlines) in find_sourceline()
166 l = sf->lines[line]; in find_sourceline()

Completed in 21 milliseconds

1...<<71727374757677787980>>...227