Home
last modified time | relevance | path

Searched refs:line (Results 1 – 23 of 23) sorted by relevance

/hal_rpi_pico-latest/tools/pioasm/gen/
Dlocation.h72 , line (l) in filename()
83 line = l;
95 line = add_ (line, count, 1);
109 counter_type line; variable
160 return ostr << pos.line << '.' << pos.column;
292 ostr << '-' << loc.end.filename << ':' << loc.end.line << '.' << end_col;
293 else if (loc.begin.line < loc.end.line)
294 ostr << '-' << loc.end.line << '.' << end_col;
Dparser.cpp2549 if (l.begin.line == l.end.line && *l.begin.filename == *l.end.filename) { in error()
2551 std::string line; in error() local
2552 for(int i = 0; i < l.begin.line; ++i) { in error()
2553 std::getline(file, line); in error()
2555 fprintf(stderr, "%5d | %s\n", l.begin.line, line.c_str()); in error()
Dlexer.cpp858 #line 1 "tools/pioasm/lexer.ll"
864 #line 8 "tools/pioasm/lexer.ll"
877 #line 878 "tools/pioasm/gen/lexer.cpp"
/hal_rpi_pico-latest/tools/
Dcheck_board_header.py73 for lineno, line in enumerate(fh.readlines()):
76 line = re.sub(r"(?<=\S)\s*//.*$", "", line)
79 m = re.match(r"^\s*//\s*pico_cmake_set\s+(\w+)\s*=\s*(.+?)\s*$", line)
99 m = re.match(r"^\s*//\s*pico_cmake_set_default\s+(\w+)\s*=\s*(.+?)\s*$", line)
112 m = re.match(r"^\s*#else\s*$", line)
118 m = re.match(r"^\s*#endif\s*$", line)
125 m = re.match(r"""^\s*#include\s+"(.+?)"\s*$""", line)
136 m = re.match(r"^\s*#if\s+(\w+)\s*$", line)
144 m = re.match(r"^\s*#ifdef\s+(\w+)\s*$", line)
152 m = re.match(r"^\s*#ifndef\s+(\w+)\s*$", line)
[all …]
Dcheck_doxygen_groups.py24 for line in res.stdout.decode('utf8').split('\n'):
25 m = re.match(r'^(\S+):.*\\defgroup\s+(\w+)', line)
38 for line in res.stdout.decode('utf8').split('\n'):
39 m = re.match(r'^(\S+):.*\\ingroup\s+(\w+)', line)
Dextract_configs.py151 for line in fh.readlines():
153 line = line.strip() variable
154 if BASE_CMAKE_CONFIG_RE.search(line):
155 …ich isn't expected in {} files".format(BASE_CMAKE_CONFIG_NAME, file_path, linenum, line, file_ext))
156 elif BASE_BUILD_DEFINE_RE.search(line):
157 …ich isn't expected in {} files".format(BASE_BUILD_DEFINE_NAME, file_path, linenum, line, file_ext))
158 elif BASE_CONFIG_RE.search(line):
159 m = CONFIG_RE.match(line)
161 if line.startswith("//// "):
162 …r.info("Possible misformatted {} at {}:{} ({})".format(BASE_CONFIG_NAME, file_path, linenum, line))
[all …]
Dextract_build_defines.py134 for line in fh.readlines():
136 line = line.strip() variable
137 if BASE_CONFIG_RE.search(line):
138 … isn't expected in {} files".format(BASE_CONFIG_NAME, file_path, linenum, line, filename if filena…
139 elif BASE_BUILD_DEFINE_RE.search(line):
140 m = BUILD_DEFINE_RE.match(line)
142 if line.startswith("## "):
143 …("Possible misformatted {} at {}:{} ({})".format(BASE_BUILD_DEFINE_NAME, file_path, linenum, line))
145 …ion("Found misformatted {} at {}:{} ({})".format(BASE_BUILD_DEFINE_NAME, file_path, linenum, line))
Dextract_cmake_configs.py134 for line in fh.readlines():
136 line = line.strip() variable
137 if BASE_CONFIG_RE.search(line):
138 … isn't expected in {} files".format(BASE_CONFIG_NAME, file_path, linenum, line, filename if filena…
139 elif BASE_CMAKE_CONFIG_RE.search(line):
140 m = CMAKE_CONFIG_RE.match(line)
142 if line.startswith("## "):
143 …("Possible misformatted {} at {}:{} ({})".format(BASE_CMAKE_CONFIG_NAME, file_path, linenum, line))
145 …ion("Found misformatted {} at {}:{} ({})".format(BASE_CMAKE_CONFIG_NAME, file_path, linenum, line))
Dcompare_build_systems.py184 for line in f:
185 match = re.search(pattern, line)
243 for line in bazel_module_file:
244 maybe_match = pattern.match(line)
277 for line in cmake_version_file:
278 match = CMAKE_VERSION_REGEX.match(line)
Dcheck_source_files_in_bazel_build.py86 for line in process.stdout.splitlines():
87 path = line.strip().lstrip(b"/").replace(b":", b"/").decode()
/hal_rpi_pico-latest/docs/
Dmain.css15 line-height: 25px;
100 div.line,
101 div.line a,
102 div.line span {
Dstyles.css181 line-height: 20px;
333 line-height: 0;
377 div.contents .line {
378 line-height: 15px;
682 .line-1 {
685 .line-2 {
689 .line-3 {
692 .navigation-toggle.clicked .line-1 {
696 .navigation-toggle.clicked .line-2 {
699 .navigation-toggle.clicked .line-3 {
Dnormalise.css7 * 1. Correct the line height in all browsers.
13 line-height: 1.15; /* 1 */
175 * Prevent `sub` and `sup` elements from affecting the line height in
182 line-height: 0;
247 line-height: 1.15; /* 1 */
/hal_rpi_pico-latest/src/rp2_common/pico_clib_interface/
Dpicolibc_interface.c60 void __weak __assert_func(const char *file, int line, const char *func, const char *failedexpr) { in __assert_func() argument
62 failedexpr, file, line, func ? ", function: " : "", in __assert_func()
Dnewlib_interface.c163 void __weak __assert_func(const char *file, int line, const char *func, const char *failedexpr) { in __assert_func() argument
165 failedexpr, file, line, func ? ", function: " : "", in __assert_func()
/hal_rpi_pico-latest/tools/pioasm/
Dparser.yy48 NEWLINE "end of line"
173 line
174 | lines NEWLINE line;
176 line:
430 if (l.begin.line == l.end.line && *l.begin.filename == *l.end.filename) {
432 std::string line;
433 for(int i = 0; i < l.begin.line; ++i) {
434 std::getline(file, line);
436 fprintf(stderr, "%5d | %s\n", l.begin.line, line.c_str());
/hal_rpi_pico-latest/
DCONTRIBUTING.md20 * Braces are required for everything except single line `if` statements.
21 * Opening braces should not be placed on a new line.
DREADME.md49 ## Unix command line
/hal_rpi_pico-latest/src/rp2_common/pico_cyw43_driver/
DCMakeLists.txt58 …ink there is a major use case for these to be settable from CMake command line vs board header, or…
76 # # PICO_CMAKE_CONFIG: CYW43_DEFAULT_PIN_WL_HOST_WAKE, gpio (irq) pin for the irq line from …
80 # # PICO_CMAKE_CONFIG: CYW43_DEFAULT_PIN_WL_CLOCK, gpio pin for the spi clock line to the cy…
/hal_rpi_pico-latest/src/common/pico_binary_info/
DCMakeLists.txt18 # since this is the command line, we will remove newlines
/hal_rpi_pico-latest/src/
DCMakeLists.txt136 …# Choosing not to add LIB_HARDWARE_ defines to avoid command line bloat pending a need (they aren't
158 …# Choosing not to add LIB_HARDWARE_ defines to avoid command line bloat pending a need (they aren't
/hal_rpi_pico-latest/src/rp2_common/pico_standard_link/
DCMakeLists.txt103 # this line occasionally useful for debugging ... todo maybe make a PICO_ var
/hal_rpi_pico-latest/src/rp2_common/pico_btstack/
DCMakeLists.txt62 …pports RTT using pico_enable_stdio_rtt in your cmake file or -DPICO_STDIO_RTT=1 on the command line