Searched refs:line (Results 1 – 14 of 14) sorted by relevance
/scripts/ |
A D | glibc_shared_code.py | 36 for line in f.readlines(): 37 line = line.strip() 38 if len(line) == 0 or line[0] == '#': 40 if line[-1] == ':': 41 cur = line[:-1] 44 projects[cur].append(line)
|
A D | documented.sh | 65 line="$line 70 $line 72 line="" 78 line="$line 82 line="$line 86 line="$line 90 $line
|
A D | gen-as-const.py | 86 for line in sym_file: 87 line = line.strip() 88 if line == '': 91 if line.startswith('#'): 92 sym_data.append(line) 94 words = line.split(maxsplit=1)
|
A D | glibcextract.py | 65 for line in s_file: 68 '([0-9Xxa-fA-F-]+).*@@@end@@@', line) 96 for line in i_file: 97 match = re.fullmatch('#define ([0-9A-Za-z_]+)(.*)\n', line) 99 raise ValueError('bad -dM output line: %s' % line) 108 raise ValueError('bad -dM output line: %s' % line) 112 raise ValueError('bad -dM output line: %s' % line) 114 raise ValueError('duplicate macro: %s' % line)
|
A D | glibcsymbols.py | 32 for line in new_contents: 33 out.write(line) 64 for line in inp: 65 version, symbol, flags = line.strip().split(' ', 2)
|
A D | check-wx-segment.py | 36 for line in inp: 38 if line.startswith(' LOAD '): 39 match = RE_LOAD.match(line) 52 print('{}: error: {}: {!r}'.format(path, error, line.strip()))
|
A D | merge-test-results.sh | 42 IFS= read -r line < "$objpfx$t.test-result" 43 echo "$line"
|
A D | soversions.awk | 34 line = set ? (lib FS numbers[lib] FS set) : (lib FS numbers[lib]); 37 lines[lib] = "DEFAULT" FS line;
|
A D | check-installed-headers.sh | 111 /* These macros may have been defined on the command line. They are 115 /* The library mode is selected here rather than on the command line to
|
A D | check-obsolete-constructs.py | 162 line = line_num 189 reporter.error(Token("BAD_BLOCK_COM", "", line, column+1, ""), 194 reporter.error(Token("BAD_STRING", "", line, column+1, ""), 199 reporter.error(Token("BAD_CHARCONST", "", line, column+1, ""), 204 tok = Token(kind, text, line, column+1, 435 self.fname, tok.line, tok.column, message))
|
A D | dso-ordering-test.py | 1082 for line in descrfile_lines: 1084 line = p.sub("", line) # Filter out comments 1085 line = line.strip() # Remove excess whitespace 1088 m = re.match(r"^tunable_option:\s*(.*)$", line) 1095 m = re.match(r"^clear_tunables$", line) 1100 m = re.match(r"^([^:]+):\s*(.*)$", line) 1138 if line: 1141 parse_description_string(t, line)
|
A D | test_printers_common.py | 200 for i, line in enumerate(src_file): 201 if string in line:
|
A D | backport-support.sh | 82 git status --porcelain | while read line ; do
|
A D | pylintrc | 34 # option multiple times (only on the command line, not in the configuration 52 # command line instead of printing them on stdout. Reports (if any) will be 147 # Minimum line length for functions/classes that require docstrings, shorter 168 # Maximum number of characters on a single line. 169 max-line-length=79 171 # Regexp for a line that is allowed to be longer than the limit.
|
Completed in 23 milliseconds