Home
last modified time | relevance | path

Searched refs:lineno (Results 176 - 200 of 446) sorted by relevance

12345678910>>...18

/kernel/linux/linux-5.10/scripts/dtc/
H A Dsrcpos.c185 srcfile->lineno = 1; in srcfile_push()
238 pos->first_line = current_srcfile->lineno; in srcpos_update()
243 current_srcfile->lineno++; in srcpos_update()
249 pos->last_line = current_srcfile->lineno; in srcpos_update()
400 current_srcfile->lineno = l; in srcpos_set_line()
/kernel/linux/linux-6.6/scripts/dtc/
H A Dsrcpos.c185 srcfile->lineno = 1; in srcfile_push()
238 pos->first_line = current_srcfile->lineno; in srcpos_update()
243 current_srcfile->lineno++; in srcpos_update()
249 pos->last_line = current_srcfile->lineno; in srcpos_update()
400 current_srcfile->lineno = l; in srcpos_set_line()
/third_party/node/tools/inspector_protocol/jinja2/
H A Ddebug.py151 return fake_exc_info(exc_info, filename, error.lineno)
182 lineno = template.get_corresponding_lineno(tb.tb_lineno)
184 lineno)[2]
228 def fake_exc_info(exc_info, filename, lineno):
255 code = compile('\n' * (lineno - 1) + raise_helper, filename, 'exec')
H A Dnodes.py119 two attributes: `lineno` (the line number of the node) and `environment`.
124 attributes = ('lineno', 'environment')
208 def set_lineno(self, lineno, override=False):
213 if 'lineno' in node.attributes:
214 if node.lineno is None or override:
215 node.lineno = lineno
504 def from_untrusted(cls, value, lineno=None, environment=None):
512 return cls(value, lineno=lineno, environmen
[all...]
/third_party/ltp/tools/sparse/sparse-src/Documentation/sphinx/
H A Dcdoc.py99 (lineno, line) = next(lines)
107 return (lineno, line)
291 for (lineno, lines) in extract(f, filename):
293 lst.append(l.expandtabs(8), filename, lineno)
294 lineno += 1
/third_party/python/Lib/idlelib/
H A Dpyshell.py74 message, category, filename, lineno, file=None, line=None):
85 message, category, filename, lineno, line=line))
174 def set_breakpoint(self, lineno):
177 text.tag_add("BREAK", "%d.0" % lineno, "%d.0" % (lineno+1))
179 self.breakpoints.index(lineno)
181 self.breakpoints.append(lineno)
184 debug.set_breakpoint_here(filename, lineno)
194 lineno = int(float(text.index("insert")))
195 self.set_breakpoint(lineno)
[all...]
/third_party/ltp/lib/
H A Dtst_process_state.c14 int tst_process_state_wait(const char *file, const int lineno, in tst_process_state_wait() argument
24 safe_file_scanf(file, lineno, cleanup_fn, proc_path, in tst_process_state_wait()
H A Dtst_net.c211 void safe_getaddrinfo(const char *file, const int lineno, const char *src_addr, in safe_getaddrinfo() argument
218 tst_brk_(file, lineno, TBROK, "getaddrinfo failed, %s", in safe_getaddrinfo()
223 tst_brk_(file, lineno, TBROK, "failed to get the address"); in safe_getaddrinfo()
/third_party/python/Lib/test/
H A Dtest_flufl.py20 self.assertEqual(cm.exception.lineno, 2)
33 self.assertEqual(cm.exception.lineno, 1)
H A Dtest_fileinput.py105 self.assertEqual(fi.lineno(), 31)
115 self.assertEqual(fi.lineno(), 21)
124 self.assertEqual(fi.lineno(), 22)
144 self.assertEqual(fi.lineno(), 0)
147 self.assertEqual(fi.lineno(), 0)
189 self.assertEqual(fi.lineno(), 1)
195 self.assertEqual(fi.lineno(), 1)
207 self.assertEqual(fi.lineno(), 6)
354 self.assertEqual(fi.lineno(), 6)
486 self.assertEqual(fi.lineno(),
527 def lineno(self): global() member in MockFileInput
[all...]
H A Dtest_tracemalloc.py27 lineno = frame.f_lineno + lineno_delta
28 frames.append((code.co_filename, lineno))
75 def frame(filename, lineno):
76 return tracemalloc._Frame((filename, lineno))
81 def traceback_lineno(filename, lineno):
82 return traceback((filename, lineno))
98 "(<Frame filename='f2' lineno=2>,"
99 " <Frame filename='f1' lineno=1>)"
400 self.assertEqual(trace.traceback[0].lineno, 2)
497 stats1 = snapshot.statistics('lineno')
[all...]
/kernel/linux/linux-5.10/scripts/
H A Dcleanpatch133 $lineno = 0;
141 $lineno++;
170 "$f:$lineno: adds line exceeds $max_width ",
/kernel/linux/linux-6.6/scripts/
H A Dcleanpatch133 $lineno = 0;
141 $lineno++;
170 "$f:$lineno: adds line exceeds $max_width ",
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/
H A Dpromote.py94 lineno = 0
96 lineno = lineno + 1
/third_party/protobuf/protoc-artifacts/
H A Dbuild-protoc.sh66 lineno=$3
67 if [ -z "$lineno" ]; then
68 echo "lineno not given"
74 echo "File \"$0\", line $lineno" # Give name of file and line number.
/third_party/python/Tools/gdb/
H A Dlibpython.py711 # Initialize lineno to co_firstlineno as per PyCode_Addr2Line
713 lineno = int_from_int(self.field('co_firstlineno'))
716 return lineno
718 for addr, end_addr, line in parse_location_table(lineno, co_linetable):
1148 lineno = self.current_line_num()
1149 if lineno is None:
1161 return lines[lineno - 1]
1169 lineno = self.current_line_num()
1170 lineno = str(lineno) i
[all...]
/third_party/python/Doc/tools/extensions/
H A Dpyspecific.py61 def issue_role(typ, rawtext, text, lineno, inliner, options={}, content=[]):
66 'use :gh:`...` for GitHub IDs', line=lineno)
76 def gh_issue_role(typ, rawtext, text, lineno, inliner, options={}, content=[]):
82 'use :issue:`...` for BPO IDs', line=lineno)
92 def source_role(typ, rawtext, text, lineno, inliner, options={}, content=[]):
150 self.lineno)
297 pnode.line = self.lineno
301 n, m = self.state.inline_text(text, self.lineno)
445 self.lineno+1)
489 self.lineno
[all...]
/third_party/ltp/testcases/kernel/kvm/include/
H A Dkvm_guest.h59 void tst_res_(const char *file, const int lineno, int result,
63 void tst_brk_(const char *file, const int lineno, int result,
/third_party/vk-gl-cts/scripts/src_util/
H A Dpre_commit.py91 lineno = 1 + contents[:m.start()].count('\n')
92 croak(infile.name, lineno, "External include guard")
/third_party/skia/third_party/externals/angle2/scripts/
H A Droll_aosp.sh13 local lineno=$1
15 echo "Failed at $lineno: $msg"
/third_party/node/deps/v8/third_party/jinja2/
H A Dnodes.py106 two attributes: `lineno` (the line number of the node) and `environment`.
112 attributes = ("lineno", "environment")
199 def set_lineno(self, lineno, override=False):
204 if "lineno" in node.attributes:
205 if node.lineno is None or override:
206 node.lineno = lineno
526 def from_untrusted(cls, value, lineno=None, environment=None):
535 return cls(value, lineno=lineno, environmen
[all...]
/third_party/skia/third_party/externals/jinja2/
H A Dnodes.py106 two attributes: `lineno` (the line number of the node) and `environment`.
112 attributes = ("lineno", "environment")
199 def set_lineno(self, lineno, override=False):
204 if "lineno" in node.attributes:
205 if node.lineno is None or override:
206 node.lineno = lineno
526 def from_untrusted(cls, value, lineno=None, environment=None):
535 return cls(value, lineno=lineno, environmen
[all...]
/kernel/linux/linux-5.10/Documentation/sphinx/
H A DrstFlatTable.py81 def c_span(name, rawtext, text, lineno, inliner, options=None, content=None):
92 def r_span(name, rawtext, text, lineno, inliner, options=None, content=None):
128 line=self.lineno)
221 , line = self.directive.lineno )
/kernel/linux/linux-6.6/Documentation/sphinx/
H A DrstFlatTable.py71 def c_span(name, rawtext, text, lineno, inliner, options=None, content=None):
82 def r_span(name, rawtext, text, lineno, inliner, options=None, content=None):
118 line=self.lineno)
211 , line = self.directive.lineno )
/kernel/linux/linux-5.10/net/netfilter/ipset/
H A Dip_set_hash_ipmark.c97 enum ipset_adt adt, u32 *lineno, u32 flags, bool retried) in hash_ipmark4_uadt()
107 *lineno = nla_get_u32(tb[IPSET_ATTR_LINENO]); in hash_ipmark4_uadt()
232 enum ipset_adt adt, u32 *lineno, u32 flags, bool retried) in hash_ipmark6_uadt()
241 *lineno = nla_get_u32(tb[IPSET_ATTR_LINENO]); in hash_ipmark6_uadt()
96 hash_ipmark4_uadt(struct ip_set *set, struct nlattr *tb[], enum ipset_adt adt, u32 *lineno, u32 flags, bool retried) hash_ipmark4_uadt() argument
231 hash_ipmark6_uadt(struct ip_set *set, struct nlattr *tb[], enum ipset_adt adt, u32 *lineno, u32 flags, bool retried) hash_ipmark6_uadt() argument

Completed in 16 milliseconds

12345678910>>...18