/hal_rpi_pico-latest/tools/pioasm/gen/ |
D | location.h | 72 , 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;
|
D | parser.cpp | 2549 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()
|
D | lexer.cpp | 858 #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/ |
D | check_board_header.py | 73 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 …]
|
D | check_doxygen_groups.py | 24 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)
|
D | extract_configs.py | 151 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 …]
|
D | extract_build_defines.py | 134 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))
|
D | extract_cmake_configs.py | 134 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))
|
D | compare_build_systems.py | 184 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)
|
D | check_source_files_in_bazel_build.py | 86 for line in process.stdout.splitlines(): 87 path = line.strip().lstrip(b"/").replace(b":", b"/").decode()
|
/hal_rpi_pico-latest/docs/ |
D | main.css | 15 line-height: 25px; 100 div.line, 101 div.line a, 102 div.line span {
|
D | styles.css | 181 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 {
|
D | normalise.css | 7 * 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/ |
D | picolibc_interface.c | 60 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()
|
D | newlib_interface.c | 163 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/ |
D | parser.yy | 48 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/ |
D | CONTRIBUTING.md | 20 * Braces are required for everything except single line `if` statements. 21 * Opening braces should not be placed on a new line.
|
D | README.md | 49 ## Unix command line
|
/hal_rpi_pico-latest/src/rp2_common/pico_cyw43_driver/ |
D | CMakeLists.txt | 58 …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/ |
D | CMakeLists.txt | 18 # since this is the command line, we will remove newlines
|
/hal_rpi_pico-latest/src/ |
D | CMakeLists.txt | 136 …# 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/ |
D | CMakeLists.txt | 103 # this line occasionally useful for debugging ... todo maybe make a PICO_ var
|
/hal_rpi_pico-latest/src/rp2_common/pico_btstack/ |
D | CMakeLists.txt | 62 …pports RTT using pico_enable_stdio_rtt in your cmake file or -DPICO_STDIO_RTT=1 on the command line
|