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

1 2 3 4 56 7 8 91011>>

  /external/valgrind/main/include/
pub_tool_errormgr.h 95 leading spaces on the line. Increments lineno with the number of lines
96 read if lineno is non-NULL. Returns True if EOF was hit. */
97 extern Bool VG_(get_line) ( Int fd, Char** bufpp, SizeT* nBufp, Int* lineno );
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
GrepDialog.py 88 lineno = 0
94 lineno = lineno + 1
98 sys.stdout.write("%s: %s: %s\n" % (fn, lineno, line))
PyShell.py 60 def idle_showwarning(message, category, filename, lineno,
66 lineno, line=line))
70 def idle_formatwarning(message, category, filename, lineno, line=None):
73 s += ' File \"%s\", line %s\n' % (filename, lineno)
75 line = linecache.getline(filename, lineno)
135 def set_breakpoint(self, lineno):
138 text.tag_add("BREAK", "%d.0" % lineno, "%d.0" % (lineno+1))
140 i = self.breakpoints.index(lineno)
142 self.breakpoints.append(lineno)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
GrepDialog.py 88 lineno = 0
94 lineno = lineno + 1
98 sys.stdout.write("%s: %s: %s\n" % (fn, lineno, line))
PyShell.py 60 def idle_showwarning(message, category, filename, lineno,
66 lineno, line=line))
70 def idle_formatwarning(message, category, filename, lineno, line=None):
73 s += ' File \"%s\", line %s\n' % (filename, lineno)
75 line = linecache.getline(filename, lineno)
135 def set_breakpoint(self, lineno):
138 text.tag_add("BREAK", "%d.0" % lineno, "%d.0" % (lineno+1))
140 i = self.breakpoints.index(lineno)
142 self.breakpoints.append(lineno)
    [all...]
  /external/chromium_org/third_party/jinja2/
debug.py 151 return fake_exc_info(exc_info, filename, error.lineno)
182 lineno = template.get_corresponding_lineno(tb.tb_lineno)
184 lineno)[2]
198 def fake_exc_info(exc_info, filename, lineno):
233 code = compile('\n' * (lineno - 1) + raise_helper, filename, 'exec')
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
fileinput.py 15 Functions filename(), lineno() return the filename and cumulative line
49 lineno(), fileline(), isfirstline(), isstdin(), nextfile() and close()
84 __all__ = ["input","close","nextfile","filename","lineno","filelineno",
137 def lineno(): function
145 return _state.lineno()
188 filename(), lineno(), fileline(), isfirstline(), isstdin(), fileno(),
356 def lineno(self): member in class:FileInput
408 print "%d: %s[%d]%s %s" % (lineno(), filename(), filelineno(),
410 print "%d: %s[%d]" % (lineno(), filename(), filelineno())
ConfigParser.py 213 def append(self, lineno, line):
214 self.errors.append((lineno, line))
215 self.message += '\n\t[line %2d]: %s' % (lineno, line)
220 def __init__(self, filename, lineno, line):
224 (filename, lineno, line))
226 self.lineno = lineno
228 self.args = (filename, lineno, line)
476 lineno = 0
482 lineno = lineno +
    [all...]
tabnanny.py 65 def __init__(self, lineno, msg, line):
66 self.lineno, self.msg, self.line = lineno, msg, line
68 return self.lineno
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_compiler.py 99 # Test that all nodes except Module have a correct lineno attribute.
110 print node.__class__, node.lineno
115 self.assertIsInstance(node.lineno, int,
116 "lineno=%s on %s" % (node.lineno, node.__class__))
117 self.assertTrue(node.lineno > 0,
118 "lineno=%s on %s" % (node.lineno, node.__class__))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
fileinput.py 15 Functions filename(), lineno() return the filename and cumulative line
49 lineno(), fileline(), isfirstline(), isstdin(), nextfile() and close()
84 __all__ = ["input","close","nextfile","filename","lineno","filelineno",
137 def lineno(): function
145 return _state.lineno()
188 filename(), lineno(), fileline(), isfirstline(), isstdin(), fileno(),
356 def lineno(self): member in class:FileInput
408 print "%d: %s[%d]%s %s" % (lineno(), filename(), filelineno(),
410 print "%d: %s[%d]" % (lineno(), filename(), filelineno())
ConfigParser.py 213 def append(self, lineno, line):
214 self.errors.append((lineno, line))
215 self.message += '\n\t[line %2d]: %s' % (lineno, line)
220 def __init__(self, filename, lineno, line):
224 (filename, lineno, line))
226 self.lineno = lineno
228 self.args = (filename, lineno, line)
476 lineno = 0
482 lineno = lineno +
    [all...]
tabnanny.py 65 def __init__(self, lineno, msg, line):
66 self.lineno, self.msg, self.line = lineno, msg, line
68 return self.lineno
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_compiler.py 99 # Test that all nodes except Module have a correct lineno attribute.
110 print node.__class__, node.lineno
115 self.assertIsInstance(node.lineno, int,
116 "lineno=%s on %s" % (node.lineno, node.__class__))
117 self.assertTrue(node.lineno > 0,
118 "lineno=%s on %s" % (node.lineno, node.__class__))
  /bionic/libc/kernel/tools/
cpp.py 75 self.lineno = 0
89 self.lineno = src.lineno
188 raise BadExpectedToken, "%d:%d: '%s' expected, received '%s'" % (tok.lineno, tok.colno, id, tok.id)
237 tok.lineno = self.line + 1
240 tok.lineno = self.line
476 def __init__(self,line,lineno=1):
478 self.line = lineno
485 def __init__(self,lines=[],lineno=1):
488 self.line = lineno
    [all...]
  /external/chromium_org/ppapi/generators/
idl_parser.py 227 Filedoc = IDLNode('Comment', self.lexobj.filename, p.lineno(2)-1,
584 p.set_lineno(0, p.lineno(1))
819 lineno = t.lineno
828 lineno = self.last.lineno
838 ErrOut.LogLine(filename, lineno, pos, msg)
841 WarnOut.LogLine(node.filename, node.lineno, node.pos, msg)
882 lineno = p.lineno(index
    [all...]
idl_node.py 54 def __init__(self, cls, filename, lineno, pos, children=None):
59 self.lineno = lineno
96 return '%s(%d)' % (self._filename, self.lineno)
101 ErrOut.LogLine(self._filename, self.lineno, 0, ' %s %s' %
112 WarnOut.LogLine(self._filename, self.lineno, 0, ' %s %s' %
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/
refactor.py 568 lineno = 0
570 lineno += 1
575 block_lineno = lineno
595 def refactor_doctest(self, block, lineno, indent, filename):
604 tree = self.parse_block(block, lineno, indent)
610 filename, lineno, err.__class__.__name__, err)
615 clipped, new = new[:lineno-1], new[lineno-1:]
616 assert clipped == [u"\n"] * (lineno-1), clipped
647 def parse_block(self, block, lineno, indent)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/
refactor.py 568 lineno = 0
570 lineno += 1
575 block_lineno = lineno
595 def refactor_doctest(self, block, lineno, indent, filename):
604 tree = self.parse_block(block, lineno, indent)
610 filename, lineno, err.__class__.__name__, err)
615 clipped, new = new[:lineno-1], new[lineno-1:]
616 assert clipped == [u"\n"] * (lineno-1), clipped
647 def parse_block(self, block, lineno, indent)
    [all...]
  /external/valgrind/main/coregrind/
m_errormgr.c 1178 Int fd, i, j, lineno = 0; local
    [all...]
  /external/expat/tests/
minicheck.c 92 _check_set_test_info(char const *function, char const *filename, int lineno)
95 _check_current_lineno = lineno;
  /ndk/sources/host-tools/nawk-20071023/
awk.h 65 extern int lineno; /* line number in awk program */
135 int lineno; member in struct:Node
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/
test_expectations.py 65 def _handle_error_message(self, lineno, message, confidence):
test_expectations_unittest.py 47 def __call__(self, lineno, category, confidence, message):
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
StreamTokenizerTest.java 124 * @tests java.io.StreamTokenizer#lineno()
128 assertEquals("the lineno should be 1", 1, st.lineno());
131 assertEquals("the lineno should be 2", 2, st.lineno());
133 assertEquals("the next line no should be 3", 3, st.lineno());

Completed in 701 milliseconds

1 2 3 4 56 7 8 91011>>