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

1 2 3 4 5 6 7 8

  /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/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/
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...]
lexer.py 221 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, token, value in stream
    [all...]
optimizer.py 59 lineno=node.lineno,
exceptions.py 84 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]
  /external/chromium_org/mojo/public/tools/bindings/pylib/mojom/parse/
parser.py 40 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(3)|
    [all...]
lexer.py 31 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/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/chromium_org/third_party/cython/src/Cython/Tests/
TestStringIOTree.py 60 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/mojo/public/tools/bindings/pylib/mojom_tests/parse/
ast_unittest.py 50 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, 1
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/events/
ErrorEvent.idl 36 [InitializedByEventConstructor] readonly attribute unsigned long lineno;
ErrorEvent.cpp 42 , lineno(0)
60 , m_lineNumber(initializer.lineno)
ErrorEvent.h 46 unsigned lineno; member in struct:blink::ErrorEventInit
74 unsigned lineno() const { return m_lineNumber; } function in class:blink::FINAL
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
stack_utils.py 56 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/
refnanny.pyx 10 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/
opagent.h 39 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/
croc_scan.py 32 lineno = 0
39 lineno += 1
81 exe_lines.append(lineno)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/
xml.py 45 self._handle_style_error(error.lineno, 'xml/syntax', 5, expat.ErrorString(error.code))
  /external/elfutils/0.153/libdw/
dwarf_getsrc_file.c 64 dwarf_getsrc_file (Dwarf *dbg, const char *fname, int lineno, int column,
130 if (lineno != 0
131 && (lineno > line->line
144 || match[inner]->line != lineno
  /external/doclava/src/com/google/doclava/
DocFile.java 81 int lineno = 1; local
100 lineno++;
103 System.err.println(docfile + ":" + lineno + ": error parsing docfile");
105 System.err.println(docfile + ":" + lineno + ":" + line);
126 int lineno = 1; local
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/chromium_org/ppapi/generators/
idl_log.py 34 def LogLine(self, filename, lineno, pos, msg):
36 line = "%s(%d) : %s%s\n" % (filename, lineno, self._name, msg)
  /external/chromium_org/third_party/sqlite/src/tool/
lemon.c 2466 int lineno = 1; local
2519 int lineno; local
3425 int lineno = *plineno; \/* The line number of the output *\/ local
3607 int lineno; local
    [all...]

Completed in 588 milliseconds

1 2 3 4 5 6 7 8