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

1 2 3 4 5 6 7 8 91011>>

  /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/qemu/android/utils/
eintr_wrapper.c 18 long lineno,
24 lineno,
assert.c 18 long lineno; member in struct:__anon32923
38 loc->lineno = fileLineno;
59 android_panic("ASSERTION FAILURE (%s:%d) in %s\n", loc->file, loc->lineno, loc->function);
  /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...]
  /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...]
  /external/libpng/scripts/
dfn.awk 75 lineno=FNR
76 if (lineno == "") lineno=NR
79 print "line", lineno ": processing failed:"
119 print "line", lineno, ": internal error:", orig
136 print "line", lineno ": unbalanced @\" ... \"@ pair"
160 print "line", lineno ": unterminated PNG_DFN string"
181 print "line", lineno ": missing sort field:", line
  /external/chromium_org/mojo/public/tools/bindings/pylib/mojom/parse/
ast.py 9 # and lineno).
13 def __init__(self, filename=None, lineno=None):
15 self.lineno = lineno
  /external/chromium_org/mojo/public/tools/bindings/pylib/mojom/
error.py 8 def __init__(self, filename, message, lineno=None, addenda=None, **kwargs):
10 error message, |lineno| is the 1-based line number (or |None| if not
16 self.lineno = lineno
20 if self.lineno:
21 s = "%s:%d: Error: %s" % (self.filename, self.lineno, self.message)
  /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...]
ext.py 107 def attr(self, name, lineno=None):
113 self.attr('_my_attribute', lineno=lineno)
115 return nodes.ExtensionAttribute(self.identifier, name, lineno=lineno)
118 dyn_kwargs=None, lineno=None):
126 return nodes.Call(self.attr(name, lineno=lineno), args, kwargs,
127 dyn_args, dyn_kwargs, lineno=lineno)
    [all...]
  /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...]
  /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/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...]
transformer.py 78 lineno = extractLineNo(child)
79 if lineno is not None:
80 return lineno
259 lineno = nodelist[-4][2]
278 lineno=lineno)
291 return Lambda(names, defaults, flags, code, lineno=nodelist[1][2])
314 return Class(name, bases, doc, code, lineno=nodelist[1][2])
367 return Discard(exprNode, lineno=exprNode.lineno)
    [all...]
  /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...]
transformer.py 78 lineno = extractLineNo(child)
79 if lineno is not None:
80 return lineno
259 lineno = nodelist[-4][2]
278 lineno=lineno)
291 return Lambda(names, defaults, flags, code, lineno=nodelist[1][2])
314 return Class(name, bases, doc, code, lineno=nodelist[1][2])
367 return Discard(exprNode, lineno=exprNode.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...]
pyclbr.py 25 lineno -- the line in the file on which the class statement occurred
39 lineno -- the line in the file on which the class statement occurred
55 def __init__(self, module, name, super, file, lineno):
63 self.lineno = lineno
65 def _addmethod(self, name, lineno):
66 self.methods[name] = lineno
70 def __init__(self, module, name, file, lineno):
74 self.lineno = lineno
    [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...]
pyclbr.py 25 lineno -- the line in the file on which the class statement occurred
39 lineno -- the line in the file on which the class statement occurred
55 def __init__(self, module, name, super, file, lineno):
63 self.lineno = lineno
65 def _addmethod(self, name, lineno):
66 self.methods[name] = lineno
70 def __init__(self, module, name, file, lineno):
74 self.lineno = lineno
    [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:
  /frameworks/base/tools/aidl/
aidl.cpp 117 import->statement.lineno = statement->lineno;
241 filename, name->lineno, name->data, expected.c_str());
310 ((p->flattening_methods & RPC_DATA) != 0), filename, p->name.lineno);
317 filename, c->name.lineno);
338 filename, c->name.lineno);
345 filename, c->name.lineno);
358 filename, c->name.lineno);
420 m->type.type.lineno, m->type.type.data);
428 filename, m->type.type.lineno);
602 int lineno = -1; local
775 int lineno = 1; local
    [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/chromium_org/third_party/WebKit/Source/core/events/
ErrorEvent.idl 36 [InitializedByEventConstructor] readonly attribute unsigned long lineno;

Completed in 596 milliseconds

1 2 3 4 5 6 7 8 91011>>