Searched refs:lineno (Results 1 - 25 of 222) sorted by relevance

123456789

/external/chromium_org/third_party/WebKit/Source/wtf/
H A DDynamicAnnotations.cpp38 volatile short lineno = (__LINE__ << 8) + __COUNTER__; \
39 (void)lineno;
42 volatile short lineno = (__LINE__ << 8); \
43 (void)lineno;
/external/qemu/android/utils/
H A Deintr_wrapper.c18 long lineno,
24 lineno,
17 android_eintr_wrapper_fatal(const char* file, long lineno, const char* function, const char* call) argument
H A Dassert.c18 long lineno; member in struct:__anon29205
38 loc->lineno = fileLineno;
59 android_panic("ASSERTION FAILURE (%s:%d) in %s\n", loc->file, loc->lineno, loc->function);
/external/chromium_org/mojo/public/tools/bindings/pylib/mojom/
H A Derror.py8 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/libpng/scripts/
H A Ddfn.awk75 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/third_party/jinja2/
H A Dparser.py44 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
[all...]
H A Dext.py107 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...]
H A Dexceptions.py84 def __init__(self, message, lineno, name=None, filename=None):
86 self.lineno = lineno
101 location = 'line %d' % self.lineno
110 line = self.source.splitlines()[self.lineno - 1]
H A Dlexer.py221 def __call__(self, lineno, filename):
222 raise self.error_class(self.message, lineno, filename)
228 lineno, type, value = (property(itemgetter(x)) for x in range(3))
230 def __new__(cls, lineno, type, value):
231 return tuple.__new__(cls, (lineno, intern(str(type)), value))
262 self.lineno,
356 self.current = Token(self.current.lineno, TOKEN_EOF, '')
369 self.current.lineno,
373 self.current.lineno,
552 for lineno, toke
[all...]
/external/chromium_org/mojo/public/tools/bindings/pylib/mojom/parse/
H A Dparser.py40 def __init__(self, filename, message, lineno=None, snippet=None):
41 Error.__init__(self, filename, message, lineno=lineno,
98 p[0] = ast.Module(p[3], p[1], filename=self.filename, lineno=p.lineno(2))
144 p[0] = ast.Attribute(p[1], p[3], filename=self.filename, lineno=p.lineno(1))
226 filename=self.filename, lineno=p.lineno(2))
259 # can't use |p.lineno(
[all...]
H A Dlexer.py31 def __init__(self, filename, message, lineno):
32 Error.__init__(self, filename, message, lineno=lineno)
48 raise LexError(self.filename, msg, token.lineno)
165 t.lexer.lineno += len(t.value)
246 t.lexer.lineno += t.value.count("\n")
/external/chromium_org/mojo/public/tools/bindings/pylib/mojom_tests/parse/
H A Dast_unittest.py50 node1 = ast.NodeBase(filename="hello.mojom", lineno=123)
59 # Check that |filename| and |lineno| are set properly (and are None by
62 self.assertEquals(node1.lineno, 123)
64 self.assertIsNone(node2.lineno)
75 node4 = _TestNode(123, filename="world.mojom", lineno=123)
81 node1 = _TestNode(1, filename="foo.mojom", lineno=1)
83 node1b = _TestNode(1, filename="foo.mojom", lineno=1)
84 node2 = _TestNode(2, filename="foo.mojom", lineno=2)
90 self.assertIsNone(nodelist1.lineno)
97 self.assertEquals(nodelist2.lineno,
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
H A Dannotate.py66 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/chromium_org/third_party/cython/src/Cython/Tests/
H A DTestStringIOTree.py60 for lineno in linenos:
61 self.write_line(lineno, tree=tree)
63 def write_line(self, lineno, tree=None):
66 tree.markers.append(lineno)
67 tree.write(linemap[lineno] + '\n')
/external/chromium_org/third_party/WebKit/Source/core/events/
H A DErrorEvent.idl36 [InitializedByEventConstructor] readonly attribute unsigned long lineno;
H A DErrorEvent.cpp42 , lineno(0)
60 , m_lineNumber(initializer.lineno)
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
H A Dstack_utils.py56 for filename, lineno, name, line in traceback.extract_stack(stack):
57 logger('File: "%s", line %d, in %s' % (filename, lineno, name))
/external/chromium_org/third_party/cython/src/Cython/Runtime/
H A Drefnanny.pyx10 cdef log(level, action, obj, lineno):
12 reflog.append((lineno, action, id(obj)))
27 self.refs = {} # id -> (count, [lineno])
30 cdef regref(self, obj, lineno, bint is_null):
31 log(LOG_ALL, u'regref', u"<NULL>" if is_null else obj, lineno)
33 self.errors.append(u"NULL argument on line %d" % lineno)
38 linenumbers.append(lineno)
40 cdef bint delref(self, obj, lineno, bint is_null) except -1:
42 log(LOG_ALL, u'delref', u"<NULL>" if is_null else obj, lineno)
44 self.errors.append(u"NULL argument on line %d" % lineno)
[all...]
/external/oprofile/libopagent/
H A Dopagent.h39 unsigned int lineno; member in struct:debug_line_info
96 * necessary to provide one lineno information entry per machine instruction;
/external/chromium_org/tools/code_coverage/
H A Dcroc_scan.py32 lineno = 0
39 lineno += 1
81 exe_lines.append(lineno)
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/
H A Dxml.py45 self._handle_style_error(error.lineno, 'xml/syntax', 5, expat.ErrorString(error.code))
/external/elfutils/0.153/libdw/
H A Ddwarf_getsrc_file.c64 dwarf_getsrc_file (Dwarf *dbg, const char *fname, int lineno, int column, argument
130 if (lineno != 0
131 && (lineno > line->line
144 || match[inner]->line != lineno
/external/doclava/src/com/google/doclava/
H A DDocFile.java81 int lineno = 1;
100 lineno++;
103 System.err.println(docfile + ":" + lineno + ": error parsing docfile");
105 System.err.println(docfile + ":" + lineno + ":" + line);
126 int lineno = 1;
145 lineno++;
148 System.err.println(docfile + ":" + lineno + ": error parsing docfile");
150 System.err.println(docfile + ":" + lineno + ":" + line);
165 Comment comment = new Comment(commentText, null, new SourcePositionInfo(docfile, lineno, 1));
/external/sepolicy/tools/
H A Dcheck_seapp.c105 int lineno; /** Line number rule was encounter on */ member in struct:rule_map
238 * @param lineno
243 static int key_map_validate(key_map *m, int lineno) { argument
261 key, value, lineno, out_file_name);
270 value, lineno, out_file_name);
304 value, lineno, out_file_name);
315 lineno, out_file_name);
325 lineno, out_file_name);
497 name, rm->lineno);
511 * @param lineno
516 rule_map_new(kvp keys[], size_t num_of_keys, int lineno) argument
919 unsigned lineno = 0; local
[all...]
/external/chromium_org/ppapi/generators/
H A Didl_log.py34 def LogLine(self, filename, lineno, pos, msg):
36 line = "%s(%d) : %s%s\n" % (filename, lineno, self._name, msg)

Completed in 582 milliseconds

123456789