HomeSort by relevance Sort by last modified time
    Searched full:lineno (Results 1 - 25 of 604) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
conv.py 68 lineno = 0
70 lineno += 1
73 print "%s(%s): can't parse %s" % (filename, lineno,
118 lineno = 0
121 lineno, line = lineno+1, f.next()
122 assert line == '#include "pgenheaders.h"\n', (lineno, line)
123 lineno, line = lineno+1, f.next()
124 assert line == '#include "grammar.h"\n', (lineno, line
    [all...]
driver.py 43 lineno = 1
49 if start != (lineno, column):
50 assert (lineno, column) <= start, ((lineno, column), start)
52 if lineno < s_lineno:
53 prefix += "\n" * (s_lineno - lineno)
54 lineno = s_lineno
61 lineno, column = end
63 lineno += 1
76 lineno, column = en
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
conv.py 68 lineno = 0
70 lineno += 1
73 print "%s(%s): can't parse %s" % (filename, lineno,
118 lineno = 0
121 lineno, line = lineno+1, f.next()
122 assert line == '#include "pgenheaders.h"\n', (lineno, line)
123 lineno, line = lineno+1, f.next()
124 assert line == '#include "grammar.h"\n', (lineno, line
    [all...]
driver.py 43 lineno = 1
49 if start != (lineno, column):
50 assert (lineno, column) <= start, ((lineno, column), start)
52 if lineno < s_lineno:
53 prefix += "\n" * (s_lineno - lineno)
54 lineno = s_lineno
61 lineno, column = end
63 lineno += 1
76 lineno, column = en
    [all...]
  /external/chromium_org/third_party/jinja2/
parser.py 44 def fail(self, msg, lineno=None, exc=TemplateSyntaxError):
49 if lineno is None:
50 lineno = self.stream.current.lineno
51 raise exc(msg, lineno, self.name, self.filename)
53 def _fail_ut_eof(self, name, end_token_stack, lineno):
82 self.fail(' '.join(message), lineno)
84 def fail_unknown_tag(self, name, lineno=None):
89 return self._fail_ut_eof(name, self._end_token_stack, lineno)
91 def fail_eof(self, end_tokens=None, lineno=None)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
ast.py 54 def __init__(self, leftright, lineno=None):
57 self.lineno = lineno
69 def __init__(self, nodes, lineno=None):
71 self.lineno = lineno
85 def __init__(self, expr, attrname, flags, lineno=None):
89 self.lineno = lineno
101 def __init__(self, nodes, lineno=None)
    [all...]
syntax.py 35 print "%s:%s: %s" % (node.filename, node.lineno, msg)
37 raise SyntaxError, "%s (%s:%s)" % (msg, node.filename, node.lineno)
44 ## if target.lineno is None:
45 ## target.lineno = node.lineno
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/
ast.py 54 def __init__(self, leftright, lineno=None):
57 self.lineno = lineno
69 def __init__(self, nodes, lineno=None):
71 self.lineno = lineno
85 def __init__(self, expr, attrname, flags, lineno=None):
89 self.lineno = lineno
101 def __init__(self, nodes, lineno=None)
    [all...]
syntax.py 35 print "%s:%s: %s" % (node.filename, node.lineno, msg)
37 raise SyntaxError, "%s (%s:%s)" % (msg, node.filename, node.lineno)
44 ## if target.lineno is None:
45 ## target.lineno = node.lineno
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
FormatParagraph.py 82 lineno, col = map(int, mark.split("."))
83 line = text.get("%d.0" % lineno, "%d.0 lineend" % lineno)
84 while text.compare("%d.0" % lineno, "<", "end") and is_all_white(line):
85 lineno = lineno + 1
86 line = text.get("%d.0" % lineno, "%d.0 lineend" % lineno)
87 first_lineno = lineno
92 lineno = lineno +
    [all...]
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)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
FormatParagraph.py 82 lineno, col = map(int, mark.split("."))
83 line = text.get("%d.0" % lineno, "%d.0 lineend" % lineno)
84 while text.compare("%d.0" % lineno, "<", "end") and is_all_white(line):
85 lineno = lineno + 1
86 line = text.get("%d.0" % lineno, "%d.0 lineend" % lineno)
87 first_lineno = lineno
92 lineno = lineno +
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
Python-ast.h 183 int lineno; member in struct:_stmt
311 int lineno; member in struct:_expr
353 int lineno; member in struct:_excepthandler
385 asdl_seq * decorator_list, int lineno, int col_offset,
389 asdl_seq * decorator_list, int lineno, int col_offset,
392 stmt_ty _Py_Return(expr_ty value, int lineno, int col_offset, PyArena *arena);
394 stmt_ty _Py_Delete(asdl_seq * targets, int lineno, int col_offset, PyArena
397 stmt_ty _Py_Assign(asdl_seq * targets, expr_ty value, int lineno, int
401 lineno, int col_offset, PyArena *arena);
403 stmt_ty _Py_Print(expr_ty dest, asdl_seq * values, bool nl, int lineno, in
    [all...]
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
Python-ast.h 183 int lineno; member in struct:_stmt
311 int lineno; member in struct:_expr
353 int lineno; member in struct:_excepthandler
385 asdl_seq * decorator_list, int lineno, int col_offset,
389 asdl_seq * decorator_list, int lineno, int col_offset,
392 stmt_ty _Py_Return(expr_ty value, int lineno, int col_offset, PyArena *arena);
394 stmt_ty _Py_Delete(asdl_seq * targets, int lineno, int col_offset, PyArena
397 stmt_ty _Py_Assign(asdl_seq * targets, expr_ty value, int lineno, int
401 lineno, int col_offset, PyArena *arena);
403 stmt_ty _Py_Print(expr_ty dest, asdl_seq * values, bool nl, int lineno, in
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
annotate.py 66 lineno = 0
74 lineno += 1
75 while i < len(statements) and statements[i] < lineno:
77 while j < len(missing) and missing[j] < lineno:
79 if i < len(statements) and statements[i] == lineno:
80 covered = j >= len(missing) or missing[j] > lineno
93 elif lineno in excluded:
  /external/dropbear/
configure 78 # PATH needs CR, and LINENO needs CR and PATH.
100 as_lineno_1=$LINENO
101 as_lineno_2=$LINENO
139 as_lineno_1=$LINENO
140 as_lineno_2=$LINENO
156 # Create $as_me.lineno as a copy of $as_myself, but with $LINENO
161 # substitution so that $LINENO is not a special case at line end.
169 s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3,
173 ' >$as_me.lineno &
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
warnings.py 24 def _show_warning(message, category, filename, lineno, file=None, line=None):
29 file.write(formatwarning(message, category, filename, lineno, line))
36 def formatwarning(message, category, filename, lineno, line=None):
38 s = "%s:%s: %s: %s\n" % (filename, lineno, category.__name__, message)
39 line = linecache.getline(filename, lineno) if line is None else line
45 def filterwarnings(action, message="", category=Warning, module="", lineno=0,
54 'lineno' -- an integer line number, 0 matches all warnings
65 assert isinstance(lineno, int) and lineno >= 0, \
66 "lineno must be an int >= 0
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
warnings.py 24 def _show_warning(message, category, filename, lineno, file=None, line=None):
29 file.write(formatwarning(message, category, filename, lineno, line))
36 def formatwarning(message, category, filename, lineno, line=None):
38 s = "%s:%s: %s: %s\n" % (filename, lineno, category.__name__, message)
39 line = linecache.getline(filename, lineno) if line is None else line
45 def filterwarnings(action, message="", category=Warning, module="", lineno=0,
54 'lineno' -- an integer line number, 0 matches all warnings
65 assert isinstance(lineno, int) and lineno >= 0, \
66 "lineno must be an int >= 0
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/hotshot/
log.py 27 # (fileno, lineno) -> filename, funcname
84 def get_funcname(self, fileno, lineno):
86 return self._funcmap[(fileno, lineno)]
98 what, tdelta, fileno, lineno = self._nextitem()
103 filename, funcname = self._decode_location(fileno, lineno)
104 t = (filename, lineno, funcname)
116 return what, (filename, lineno, funcname), tdelta
123 self._funcmap[(fileno, lineno)] = (filename, tdelta)
129 self.cwd = lineno
130 self.addinfo(tdelta, lineno)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/hotshot/
log.py 27 # (fileno, lineno) -> filename, funcname
84 def get_funcname(self, fileno, lineno):
86 return self._funcmap[(fileno, lineno)]
98 what, tdelta, fileno, lineno = self._nextitem()
103 filename, funcname = self._decode_location(fileno, lineno)
104 t = (filename, lineno, funcname)
116 return what, (filename, lineno, funcname), tdelta
123 self._funcmap[(fileno, lineno)] = (filename, tdelta)
129 self.cwd = lineno
130 self.addinfo(tdelta, lineno)
    [all...]
  /external/openssh/
configure 174 as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO
175 as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO
371 # as_fn_error STATUS ERROR [LINENO LOG_FD]
373 # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
374 # provided, also output the error to LOG_FD, referencing LINENO. Then exit the
381 $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
433 as_lineno_1=$LINENO as_lineno_1a=$LINENO
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/
DynamicAnnotations.cpp 38 volatile short lineno = (__LINE__ << 8) + __COUNTER__; \
39 (void)lineno;
42 volatile short lineno = (__LINE__ << 8); \
43 (void)lineno;
  /external/srtp/
configure 78 # PATH needs CR, and LINENO needs CR and PATH.
100 as_lineno_1=$LINENO
101 as_lineno_2=$LINENO
139 as_lineno_1=$LINENO
140 as_lineno_2=$LINENO
156 # Create $as_me.lineno as a copy of $as_myself, but with $LINENO
161 # substitution so that $LINENO is not a special case at line end.
169 s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3,
173 ' >$as_me.lineno &
    [all...]
  /external/qemu/android/utils/
assert.c 18 long lineno; member in struct:__anon26539
38 loc->lineno = fileLineno;
59 android_panic("ASSERTION FAILURE (%s:%d) in %s\n", loc->file, loc->lineno, loc->function);
  /external/e2fsprogs/
configure 170 as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO
171 as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO
359 # as_fn_error ERROR [LINENO LOG_FD]
361 # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
362 # provided, also output the error to LOG_FD, referencing LINENO. Then exit the
369 $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3
421 as_lineno_1=$LINENO as_lineno_1a=$LINENO
    [all...]

Completed in 1469 milliseconds

1 2 3 4 5 6 7 8 91011>>