/third_party/node/deps/v8/tools/release/ |
H A D | common_includes.py | 82 for line in f: 83 yield line 440 for line in self.GitBranch(cwd=cwd).splitlines(): 441 if re.match(r"\*?\s*%s$" % re.escape(name), line): 490 match = re.match(r"^#define %s\s+(\d*)" % def_name, line) 494 for line in LinesInFile(os.path.join(self.default_cwd, VERSION_FILE)): 627 for line in FileToText(version_file).splitlines(): 628 if line.startswith("#define V8_MAJOR_VERSION"): 629 line = re.sub("\d+$", self[prefix + "major"], line) [all...] |
/third_party/python/Lib/ |
H A D | traceback.py | 39 whose source text line is not None. 69 containing attributes filename, lineno, name, and line 71 trace. The line is a string with leading and trailing 119 appropriate format, it prints the line where the syntax error 120 occurred with a caret on the next line indicating the approximate 168 line = "%s\n" % etype 170 line = "%s: %s\n" % (etype, valuestr) 171 return line 226 line number, function name, text), and the entries are in order 251 - :attr:`lineno` The line withi 317 def line(self): global() member in FrameSummary [all...] |
/kernel/linux/build/test/kernel_ltp/ |
H A D | generate_config.sh | 30 while read line; do 31 if [[ "${line}" == *"#"* ]]; then 34 macro=$(echo $line | awk -F "'" '{print $2}') 35 flag=$(echo $line | awk -F "'" '{print $4}')
|
/kernel/linux/linux-5.10/arch/openrisc/mm/ |
H A D | cache.c | 22 unsigned long line = paddr & ~(L1_CACHE_BYTES - 1); in cache_loop() local 24 while (line < paddr + PAGE_SIZE) { in cache_loop() 25 mtspr(reg, line); in cache_loop() 26 line += L1_CACHE_BYTES; in cache_loop()
|
/kernel/linux/linux-6.6/arch/openrisc/mm/ |
H A D | cache.c | 22 unsigned long line = paddr & ~(L1_CACHE_BYTES - 1); in cache_loop() local 24 while (line < paddr + PAGE_SIZE) { in cache_loop() 25 mtspr(reg, line); in cache_loop() 26 line += L1_CACHE_BYTES; in cache_loop()
|
/kernel/linux/linux-5.10/drivers/net/wireless/broadcom/brcm80211/include/ |
H A D | defs.h | 89 #define _PADLINE(line) pad ## line 90 #define _XSTR(line) _PADLINE(line)
|
/kernel/linux/linux-5.10/drivers/gpu/drm/nouveau/include/nvkm/subdev/ |
H A D | gpio.h | 15 u8 line; member 30 int nvkm_gpio_find(struct nvkm_gpio *, int idx, u8 tag, u8 line, 32 int nvkm_gpio_set(struct nvkm_gpio *, int idx, u8 tag, u8 line, int state); 33 int nvkm_gpio_get(struct nvkm_gpio *, int idx, u8 tag, u8 line);
|
/kernel/linux/linux-6.6/include/dt-bindings/pinctrl/ |
H A D | stm32-pinfunc.h | 31 #define PIN_NO(port, line) (((port) - 'A') * 0x10 + (line)) 33 #define STM32_PINMUX(port, line, mode) (((PIN_NO(port, line)) << 8) | (mode))
|
/kernel/linux/linux-6.6/drivers/net/wireless/broadcom/brcm80211/include/ |
H A D | defs.h | 89 #define _PADLINE(line) pad ## line 90 #define _XSTR(line) _PADLINE(line)
|
/kernel/linux/linux-6.6/scripts/dtc/include-prefixes/dt-bindings/pinctrl/ |
H A D | stm32-pinfunc.h | 31 #define PIN_NO(port, line) (((port) - 'A') * 0x10 + (line)) 33 #define STM32_PINMUX(port, line, mode) (((PIN_NO(port, line)) << 8) | (mode))
|
/third_party/curl/tests/ |
H A D | test1477.pl | 47 my $line = 0; 49 $line++; 57 $wherefrom{$name}="$file:$line"; 67 my $line = 0; 69 $line++; 73 $manfrom{$name}="$file:$line";
|
/third_party/cJSON/tests/unity/auto/ |
H A D | colour_reporter.rb | 16 message.each_line do |line| 17 line.chomp! 18 colour = case line 34 colour_puts(colour, line)
|
/third_party/cups-filters/cupsfilters/ |
H A D | testimage.c | 29 main(int argc, /* I - Number of command-line arguments */ in main() 30 char *argv[]) /* I - Command-line arguments */ in main() 35 cups_ib_t *line; /* Line from file */ in main() local 36 int y, /* Current line */ in main() 73 line = calloc(width, depth); in main() 81 cupsImageGetRow(img, 0, y, width, line); in main() 82 fwrite(line, width, depth, out); in main()
|
/third_party/jerryscript/tools/vera++/scripts/rules/ |
H A D | jerry_no_space_before_closing_parentheses.tcl | 22 set line [getLine $file $line_num] 23 set line [string range $line $col_start $col_end] 25 if {[regexp {[[:graph:]][[:blank:]]+\)} $line]} {
|
H A D | jerry_no_space_after_opening_parentheses.tcl | 22 set line [getLine $file $line_num] 23 set line [string range $line $col_start $col_end] 25 if {[regexp {\(+[[:blank:]]} $line]} {
|
H A D | jerry_funcname_space_parentheses.tcl | 21 set line [getLine $file $line_num] 23 if {[regexp {^\s*#[ ]*define} $line]} { 27 set line [string range $line $col_start $col_end] 29 if {[regexp {([[:alnum:]][\s]{2,}\()|([[:alnum:]]\()} $line]} {
|
H A D | jerry_identifier_no_space_bracket.tcl | 22 set line [getLine $file $line_num] 23 set line [string range $line $col_start $col_end] 25 if {[regexp {[[:alnum:]_][\s]+\[} $line]} {
|
H A D | jerry_typecast_space_parentheses.tcl | 22 set line [getLine $file $line_num] 23 set line [string range $line $col_start $col_end] 25 if {[regexp {\)[\w\(&~=]} $line]} {
|
/third_party/mesa3d/src/gallium/frontends/d3d10umd/ |
H A D | Debug.cpp | 46 CheckHResult(HRESULT hr, const char *function, unsigned line) in CheckHResult() argument 60 DebugPrintf("%s: %u: 0x%08lX: %s", function, line, hr, lpMessageBuffer); in CheckHResult() 70 unsigned line, in AssertFail() 73 DebugPrintf("%s:%u:%s: Assertion `%s' failed.\n", file, line, function, expr); in AssertFail() 68 AssertFail(const char *expr, const char *file, unsigned line, const char *function) AssertFail() argument
|
/third_party/musl/src/passwd/ |
H A D | getgrent.c | 4 static char *line, **mem; variable 21 __getgrent_a(f, &gr, &line, &size, &mem, &nmem, &res); in getgrent() 29 __getgr_a(0, gid, &gr, &line, &size, &mem, &nmem, &res); in getgrgid() 37 __getgr_a(name, 0, &gr, &line, &size, &mem, &nmem, &res); in getgrnam()
|
/third_party/ltp/testcases/open_posix_testsuite/include/ |
H A D | affinity.h | 60 char line[4096]; in get_online_cpu_from_cpuinfo() local 67 if (!fgets(line, sizeof(line), f)) in get_online_cpu_from_cpuinfo() 75 if (sscanf(line, "processor%*[^0123456789]%d", &cpu) == 1) in get_online_cpu_from_cpuinfo()
|
/third_party/node/deps/v8/include/v8-include/ |
H A D | v8-source-location.h | 40 const char* file = __builtin_FILE(), size_t line = __builtin_LINE()) { in Current() 41 return SourceLocation(function, file, line); in Current() 68 * Returns the line number represented by this object. 70 * \returns the line number. 82 constexpr SourceLocation(const char* function, const char* file, size_t line) in SourceLocation() argument 83 : function_(function), file_(file), line_(line) {} in SourceLocation()
|
/third_party/node/deps/v8/include/cppgc/ |
H A D | source-location.h | 40 const char* file = __builtin_FILE(), size_t line = __builtin_LINE()) { in Current() 41 return SourceLocation(function, file, line); in Current() 68 * Returns the line number represented by this object. 70 * \returns the line number. 82 constexpr SourceLocation(const char* function, const char* file, size_t line) in SourceLocation() argument 83 : function_(function), file_(file), line_(line) {} in SourceLocation()
|
/third_party/mesa3d/src/util/ |
H A D | os_memory_debug.h | 45 debug_malloc(const char *file, unsigned line, const char *function, 49 debug_calloc(const char *file, unsigned line, const char *function, 53 debug_free(const char *file, unsigned line, const char *function, 57 debug_realloc(const char *file, unsigned line, const char *function,
|
/third_party/musl/libc-test/src/functionalext/supplement/stdio/ |
H A D | fgetws.c | 54 wchar_t line[] = L"hello"; in fgetws_0200() local 60 fwrite(line, sizeof(line) / sizeof(wchar_t), sizeof(*line), fptr); in fgetws_0200()
|