/SCP-firmware-master/unit_test/utils/ |
A D | generate_coverage_report.py | 35 for line in fd_in.readlines(): 37 if STARTER in line: 40 if any(regex.search(line) for regex in regexes): 43 if within or "TN:" in line: 44 dump_lines.append(line) 46 if ENDED in line:
|
/SCP-firmware-master/tools/ |
A D | yaml-format.py | 22 for line in diff: 23 if line.startswith("@"): 24 yield colorama.Fore.BLUE + line + colorama.Fore.RESET 25 elif line.startswith("+"): 26 yield colorama.Fore.GREEN + line + colorama.Fore.RESET 27 elif line.startswith("-"): 28 yield colorama.Fore.RED + line + colorama.Fore.RESET 30 yield line 117 for line in colorize(diff): 118 ostream.write(line)
|
A D | check_copyright.py | 133 for line in head_lines: 134 head += line 172 for line in result.stdout: 173 filename = line.decode("utf-8").strip('\n')
|
A D | check_tabs.py | 94 git_ignores = [line.split()[-1] for line in git_clean_output.splitlines()] 134 for line, string in enumerate(file): 136 print('%d:%s has tab' % (line, path))
|
A D | check_spacing.py | 151 for line, string in enumerate(lines): 152 if line == last_line_number and string[-1] != '\n': 162 print('{}:{} has trailing space'.format(line, path)) 177 .format(keyword, path, line,
|
A D | check_api.py | 118 for line, string in enumerate(file): 121 print("{}:{}:{}".format(path, line + 1, fname),
|
/SCP-firmware-master/debugger/include/ |
A D | checkpoint.h | 110 void checkpoint(checkpoint_st *c, char *file, int32_t line, char *tag); 154 # define checkpoint(c, file, line, tag) \ argument 158 (void)line; \
|
/SCP-firmware-master/framework/src/ |
A D | assert.c | 11 void __aeabi_assert(const char *expr, const char *file, int line) in __aeabi_assert() argument 20 int line, in __assert_func() argument
|
/SCP-firmware-master/debugger/src/ |
A D | checkpoint.c | 72 void checkpoint(checkpoint_st *c, char *file, int32_t line, char *tag) in checkpoint() argument 82 line); in checkpoint() 94 line); in checkpoint()
|
/SCP-firmware-master/ |
A D | .yamllint.yaml | 4 line-length:
|
A D | contributing.md | 45 - Ensure that each commit in the series has at least one `Signed-off-by:` line, 48 they must also add their own `Signed-off-by:` line. By adding this line the
|
A D | user_guide.md | 363 command line: 434 An example command line to build Arm Trusted Firmware-A for AArch64 is given
|
/SCP-firmware-master/framework/test/ |
A D | fwk_test.c | 42 const char *file, unsigned int line, const char *function) in __assert_fail() argument 47 printf(" Line: %u\n", line); in __assert_fail()
|
/SCP-firmware-master/doc/ |
A D | code_style.md | 65 Conditional statements and iteration statements with a single line or 147 The closing `endif` statement should be followed directly by a single-line 236 To ensure a consistent look, the preferred style for single-line comments is to 241 /* A short, single-line comment */ 244 Multi-line comments should follow a similar style, and always end with 249 * This is a very, very, very, very long multi-line comment where each line 264 necessary to do so, as these can be nested (unlike multi-line comment blocks).
|
A D | code_rules.md | 177 The closing endif statement should be followed directly by a single-line comment 181 Space between definition inside the header file should be a single line only. 268 /* Do not add entries after this line */
|
A D | cmake_readme.md | 136 - Using cmake command line option 399 configure the firmware target. If you're using `cmake` on the command line, this 420 The various configuration variables can be listed on the command line with:
|
A D | Doxyfile | 43 # Using the PROJECT_BRIEF tag one can provide an optional one line description 184 # first line (until the first dot) of a Javadoc-style comment as the brief 193 # line (until the first dot) of a Qt-style comment as the brief description. If 201 # multi-line C++ special comment block (i.e. a block of //! or /// comments) as 203 # to treat a multi-line C++ comment block as a detailed description. Set this 773 # The default value is: $file:$line: $text. 775 WARN_FORMAT = "$file:$line: $text" 1029 # tools must be available from the command line (i.e. in the search path). 1438 # doxygen will group on one line in the generated HTML documentation. 2081 # remove all references to function-like macros that are alone on a line, have [all …]
|
/SCP-firmware-master/arch/arm/armv8-a/ |
A D | CMakeLists.txt | 40 # describes the command line required to preprocess a C source file. This
|
/SCP-firmware-master/doc/media/ |
A D | style.css | 98 line-height: 140%; 165 line-height: 125%; 177 div.line { 181 line-height: 1.0; 204 div.line.glow { 460 line-height: 1px; 606 line-height: 14px; 834 line-height:30px;
|
/SCP-firmware-master/arch/arm/armv8-a/src/ |
A D | arch_libc.c | 274 unsigned int line, in __assert_fail() argument
|
/SCP-firmware-master/arch/arm/arm-m/ |
A D | CMakeLists.txt | 84 # describes the command line required to preprocess a C source file. This
|
/SCP-firmware-master/cmake/ |
A D | SCPPreprocessSource.cmake | 32 # describes the command line required to preprocess a C source file. This
|
/SCP-firmware-master/debugger/src/cli/ |
A D | readme.txt | 17 Definitions of compile-time command line interface settings, such as buffer
|
/SCP-firmware-master/unit_test/ |
A D | user_guide.md | 176 The important line here, is the inclusion of module source code
|