HomeSort by relevance Sort by last modified time
    Searched refs:lineno (Results 51 - 75 of 372) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
dis.py 181 Generate pairs (offset, lineno) as described in Python/compile.c.
188 lineno = code.co_firstlineno
192 if lineno != lastlineno:
193 yield (addr, lineno)
194 lastlineno = lineno
196 lineno += line_incr
197 if lineno != lastlineno:
198 yield (addr, lineno)
linecache.py 13 def getline(filename, lineno, module_globals=None):
15 if 1 <= lineno <= len(lines):
16 return lines[lineno-1]
bdb.py 130 lineno = frame.f_lineno
131 if not lineno in self.breaks[filename]:
134 lineno = frame.f_code.co_firstlineno
135 if not lineno in self.breaks[filename]:
139 (bp, flag) = effective(filename, lineno, frame)
247 # Set_break prints out the breakpoint line and file:lineno.
251 def set_break(self, filename, lineno, temporary=0, cond = None,
255 line = linecache.getline(filename, lineno)
258 lineno)
262 if not lineno in list
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
ScriptBinding.py 74 msgtxt, (lineno, start) = msg
75 self.editwin.gotoline(lineno)
106 msg, (errorfilename, lineno, offset, line) = err
108 err.args = msg, (filename, lineno, offset, line)
110 self.colorize_syntax_error(msg, lineno, offset)
119 def colorize_syntax_error(self, msg, lineno, offset):
121 pos = "0.0 + %d lines + %d chars" % (lineno-1, offset-1)
StackViewer.py 63 frame, lineno = self.info
71 sourceline = linecache.getline(filename, lineno)
74 item = "%s, line %d: %s" % (modname, lineno, sourceline)
77 lineno, sourceline)
81 frame, lineno = self.info
92 frame, lineno = self.info
95 self.flist.gotofileline(filename, lineno)
OutputWindow.py 101 filename, lineno = result
103 edit.gotoline(lineno)
109 filename, lineno = match.group(1, 2)
119 return filename, int(lineno)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
dis.py 181 Generate pairs (offset, lineno) as described in Python/compile.c.
188 lineno = code.co_firstlineno
192 if lineno != lastlineno:
193 yield (addr, lineno)
194 lastlineno = lineno
196 lineno += line_incr
197 if lineno != lastlineno:
198 yield (addr, lineno)
linecache.py 13 def getline(filename, lineno, module_globals=None):
15 if 1 <= lineno <= len(lines):
16 return lines[lineno-1]
bdb.py 130 lineno = frame.f_lineno
131 if not lineno in self.breaks[filename]:
134 lineno = frame.f_code.co_firstlineno
135 if not lineno in self.breaks[filename]:
139 (bp, flag) = effective(filename, lineno, frame)
247 # Set_break prints out the breakpoint line and file:lineno.
251 def set_break(self, filename, lineno, temporary=0, cond = None,
255 line = linecache.getline(filename, lineno)
258 lineno)
262 if not lineno in list
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
ScriptBinding.py 74 msgtxt, (lineno, start) = msg
75 self.editwin.gotoline(lineno)
106 msg, (errorfilename, lineno, offset, line) = err
108 err.args = msg, (filename, lineno, offset, line)
110 self.colorize_syntax_error(msg, lineno, offset)
119 def colorize_syntax_error(self, msg, lineno, offset):
121 pos = "0.0 + %d lines + %d chars" % (lineno-1, offset-1)
StackViewer.py 63 frame, lineno = self.info
71 sourceline = linecache.getline(filename, lineno)
74 item = "%s, line %d: %s" % (modname, lineno, sourceline)
77 lineno, sourceline)
81 frame, lineno = self.info
92 frame, lineno = self.info
95 self.flist.gotofileline(filename, lineno)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
html.py 145 for lineno, line in enumerate(source_token_lines(source)):
146 lineno += 1 # 1-based line numbers.
151 if lineno in analysis.statements:
153 if lineno in analysis.excluded:
155 elif lineno in analysis.missing:
157 elif self.arcs and lineno in missing_branch_arcs:
161 for b in missing_branch_arcs[lineno]:
171 elif lineno in analysis.statements:
187 'number': lineno,
  /external/elfutils/src/
addr2line.c 267 unsigned int lineno = 0; local
272 lineno = val;
277 if (lineno == 0)
283 printf (" at %s:%u", file, lineno);
285 printf (" at %s:%u:%u", file, lineno, colno);
460 int lineno, linecol; local
461 if (line != NULL && (src = dwfl_lineinfo (line, &addr, &lineno, &linecol,
478 comp_dir, comp_dir_sep, src, lineno, linecol);
481 comp_dir, comp_dir_sep, src, lineno);
  /frameworks/base/tools/aidl/
aidl_language.h 14 unsigned lineno; member in struct:extra_text_type
22 unsigned lineno; member in struct:buffer_type
164 void init_buffer_type(buffer_type* buf, int lineno);
aidl_language_l.l 12 static void begin_extra_text(unsigned lineno, which_extra_text which);
23 yylval.buffer.lineno = yylineno; \
101 yylval.buffer.lineno = yylineno;
114 void begin_extra_text(unsigned lineno, which_extra_text which)
117 text->lineno = lineno;
aidl_language_y.y 72 $2.buffer.lineno, $2.buffer.data);
96 g_currentFilename, $1.buffer.lineno);
101 g_currentFilename, $2.buffer.lineno, $2.buffer.data);
117 g_currentFilename, $1.buffer.lineno);
122 g_currentFilename, $2.buffer.lineno, $2.buffer.data);
178 g_currentFilename, $2.buffer.lineno, $2.buffer.data);
183 g_currentFilename, $2.buffer.lineno, $2.buffer.data);
205 g_currentFilename, $3.buffer.lineno);
301 fprintf(stderr, "%s:%d: syntax error in parameter list\n", g_currentFilename, $1.buffer.lineno);
357 void init_buffer_type(buffer_type* buf, int lineno)
    [all...]
  /external/chromium_org/base/third_party/dynamic_annotations/
dynamic_annotations.c 64 volatile short lineno = (__LINE__ << 8) + __COUNTER__; (void)lineno;
67 volatile short lineno = (__LINE__ << 8); (void)lineno;
71 Otherwise, lineno (see above) numbers for different Annotate* functions may
  /external/chromium_org/tools/idl_parser/
idl_parser_test.py 46 lineno = node.GetProperty('LINENO')
47 msg = 'Mismatched tree at line %d:\n%sVS\n%s' % (lineno, value, quick)
89 lineno = node.GetProperty('LINENO')
91 filename, lineno, value, quick)
  /external/elfutils/libdwfl/
dwfl_module_getsrc_file.c 55 const char *fname, int lineno, int column,
123 if (lineno != 0
124 && (lineno > line->line
137 || dwfl_line (match[inner])->line != lineno
  /external/elfutils/tests/
addrscopes.c 44 int lineno, linecol; local
46 && (src = dwfl_lineinfo (line, &addr, &lineno, &linecol,
51 prefix, addr, src, lineno, linecol);
54 prefix, addr, src, lineno);
funcscopes.c 45 int lineno, linecol; local
47 && (src = dwfl_lineinfo (line, &addr, &lineno, &linecol,
52 prefix, addr, src, lineno, linecol);
55 prefix, addr, src, lineno);
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
node.h 21 char *str, int lineno, int col_offset);
parsetok.h 13 int lineno; member in struct:__anon60472
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/
fixer_base.py 132 lineno = node.get_lineno()
136 self.log_message(msg % (lineno, for_output))
147 lineno = node.get_lineno()
148 self.log_message("Line %d: %s" % (lineno, reason))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_ast.py 11 if hasattr(t, 'lineno') and hasattr(t, 'col_offset'):
12 result.append((t.lineno, t.col_offset))
86 # Multiline generator expression (test for .lineno & .col_offset)
134 # Multiline dict (test for .lineno & .col_offset)
186 node_pos = (ast_node.lineno, ast_node.col_offset)
188 parent_pos = (ast_node.lineno, ast_node.col_offset)
208 ast.AST(lineno=2)
282 x.lineno
287 x = ast.Num(lineno=2)
288 self.assertEqual(x.lineno, 2
    [all...]

Completed in 588 milliseconds

1 23 4 5 6 7 8 91011>>