HomeSort by relevance Sort by last modified time
    Searched refs:lnotab (Results 1 - 7 of 7) sorted by null

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_new.py 122 lnotab = c.co_lnotab
128 firstlineno, lnotab, freevars, cellvars)
133 firstlineno, lnotab)
138 constants, names, varnames, filename, name, firstlineno, lnotab)
143 constants, names, varnames, filename, name, firstlineno, lnotab)
148 constants, (5,), varnames, filename, name, firstlineno, lnotab)
156 firstlineno, lnotab)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_new.py 122 lnotab = c.co_lnotab
128 firstlineno, lnotab, freevars, cellvars)
133 firstlineno, lnotab)
138 constants, names, varnames, filename, name, firstlineno, lnotab)
143 constants, names, varnames, filename, name, firstlineno, lnotab)
148 constants, (5,), varnames, filename, name, firstlineno, lnotab)
156 firstlineno, lnotab)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
pyassem.py 506 self.lnotab = lnotab = LineAddrTable()
510 lnotab.addCode(self.opnum[opname])
514 lnotab.nextLine(oparg)
518 lnotab.addCode(self.opnum[opname], lo, hi)
540 self.lnotab.getCode(), self.getConsts(),
542 self.filename, self.name, self.lnotab.firstline,
543 self.lnotab.getTable(), tuple(self.freevars),
588 """lnotab
590 This class builds the lnotab, which is documented in compile.c
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/
pyassem.py 506 self.lnotab = lnotab = LineAddrTable()
510 lnotab.addCode(self.opnum[opname])
514 lnotab.nextLine(oparg)
518 lnotab.addCode(self.opnum[opname], lo, hi)
540 self.lnotab.getCode(), self.getConsts(),
542 self.filename, self.name, self.lnotab.firstline,
543 self.lnotab.getTable(), tuple(self.freevars),
588 """lnotab
590 This class builds the lnotab, which is documented in compile.c
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
parser.py 358 # Getting numbers from the lnotab value changed in Py3.0.
360 def _lnotab_increments(self, lnotab):
361 """Return a list of ints from the lnotab bytes in 3.x"""
362 return list(lnotab)
364 def _lnotab_increments(self, lnotab):
365 """Return a list of ints from the lnotab string in 2.x"""
366 return [ord(c) for c in lnotab]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
trace.py 328 lnotab = find_executable_linenos(filename)
330 lnotab = {}
335 lnotab, count)
357 def write_results_file(self, path, lines, lnotab, lines_hit):
383 if lineno in lnotab and not PRAGMA_NOCOVER in lines[i]:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
trace.py 328 lnotab = find_executable_linenos(filename)
330 lnotab = {}
335 lnotab, count)
357 def write_results_file(self, path, lines, lnotab, lines_hit):
383 if lineno in lnotab and not PRAGMA_NOCOVER in lines[i]:

Completed in 460 milliseconds