Home
last modified time | relevance | path

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

/scripts/
A Dglibc_shared_code.py36 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 Ddocumented.sh65 line="$line
70 $line
72 line=""
78 line="$line
82 line="$line
86 line="$line
90 $line
A Dgen-as-const.py86 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 Dglibcextract.py65 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 Dglibcsymbols.py32 for line in new_contents:
33 out.write(line)
64 for line in inp:
65 version, symbol, flags = line.strip().split(' ', 2)
A Dcheck-wx-segment.py36 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 Dmerge-test-results.sh42 IFS= read -r line < "$objpfx$t.test-result"
43 echo "$line"
A Dsoversions.awk34 line = set ? (lib FS numbers[lib] FS set) : (lib FS numbers[lib]);
37 lines[lib] = "DEFAULT" FS line;
A Dcheck-installed-headers.sh111 /* 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 Dcheck-obsolete-constructs.py162 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 Ddso-ordering-test.py1082 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 Dtest_printers_common.py200 for i, line in enumerate(src_file):
201 if string in line:
A Dbackport-support.sh82 git status --porcelain | while read line ; do
A Dpylintrc34 # 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