| /prebuilts/gdb/darwin-x86/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())
|
| /prebuilts/gdb/linux-x86/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())
|
| /prebuilts/go/darwin-x86/src/cmd/asm/internal/asm/ |
| endtoend_test.go | 58 lineno := 0 64 lineno++ 84 t.Errorf("%s:%d: unable to understand comments: %s", input, lineno, line) 100 t.Errorf("%s:%d: malformed hex instruction encoding: %s", input, lineno, line) 105 hexByLine[fmt.Sprintf("%s:%d", input, lineno)] = hexes 153 want := fmt.Sprintf("%05d (%s:%d)\t%s", seq, input, lineno, printed) 322 lineno := 0 325 lineno++ 327 fileline := fmt.Sprintf("%s:%d", input, lineno)
|
| /prebuilts/go/linux-x86/src/cmd/asm/internal/asm/ |
| endtoend_test.go | 58 lineno := 0 64 lineno++ 84 t.Errorf("%s:%d: unable to understand comments: %s", input, lineno, line) 100 t.Errorf("%s:%d: malformed hex instruction encoding: %s", input, lineno, line) 105 hexByLine[fmt.Sprintf("%s:%d", input, lineno)] = hexes 153 want := fmt.Sprintf("%05d (%s:%d)\t%s", seq, input, lineno, printed) 322 lineno := 0 325 lineno++ 327 fileline := fmt.Sprintf("%s:%d", input, lineno)
|
| /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())
|
| /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())
|
| /toolchain/binutils/binutils-2.27/ld/testsuite/ld-powerpc/ |
| aix52.exp | 67 foreach file { "aix-lineno-1.txt" } { 186 "" {aix-lineno-1.s} 187 {{objdump -dS aix-lineno-1a.dd} {nm {} aix-lineno-1a.nd}} 188 "aix-lineno-1a.exe"} 191 "" {aix-lineno-1.s} 192 {{objdump -dS aix-lineno-1b.dd} {nm {} aix-lineno-1b.nd}} 193 "aix-lineno-1b.exe"}
|
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/ |
| refactor.py | 562 lineno = 0
564 lineno += 1
569 block_lineno = lineno
589 def refactor_doctest(self, block, lineno, indent, filename):
598 tree = self.parse_block(block, lineno, indent)
604 filename, lineno, err.__class__.__name__, err)
609 clipped, new = new[:lineno-1], new[lineno-1:]
610 assert clipped == [u"\n"] * (lineno-1), clipped
641 def parse_block(self, block, lineno, indent): [all...] |
| /external/elfutils/src/ |
| addr2line.c | 374 unsigned int lineno = 0; local 379 lineno = val; 404 if (lineno == 0) 409 comp_dir, comp_dir_sep, file, lineno); 412 comp_dir, comp_dir_sep, file, lineno, colno); 569 print_src (const char *src, int lineno, int linecol, Dwarf_Die *cu) 586 comp_dir, comp_dir_sep, src, lineno, linecol); 589 comp_dir, comp_dir_sep, src, lineno); 696 int lineno, linecol; local 698 if (line != NULL && (src = dwfl_lineinfo (line, &addr, &lineno, &linecol [all...] |
| /external/python/cpython2/Lib/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/python/cpython3/Lib/lib2to3/ |
| refactor.py | 565 lineno = 0 567 lineno += 1 572 block_lineno = lineno 592 def refactor_doctest(self, block, lineno, indent, filename): 601 tree = self.parse_block(block, lineno, indent) 607 filename, lineno, err.__class__.__name__, err) 612 clipped, new = new[:lineno-1], new[lineno-1:] 613 assert clipped == ["\n"] * (lineno-1), clipped 644 def parse_block(self, block, lineno, indent) [all...] |
| /external/python/cpython3/Python/ |
| traceback.c | 147 /* Insert a frame into the traceback for (funcname, filename, lineno). */ 148 void _PyTraceback_Add(const char *funcname, const char *filename, int lineno) 163 code = PyCode_NewEmpty(filename, funcname, lineno); 173 frame->f_lineno = lineno; 263 _Py_DisplaySourceLine(PyObject *f, PyObject *filename, int lineno, int indent) 333 /* get the line number lineno */ 334 for (i = 0; i < lineno; i++) { 395 tb_displayline(PyObject *f, PyObject *filename, int lineno, PyObject *name) 403 filename, lineno, name); 411 if (_Py_DisplaySourceLine(f, filename, lineno, 4) 646 int lineno; local [all...] |
| /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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...] |
| /toolchain/binutils/binutils-2.27/bfd/ |
| ihex.c | 210 ihex_bad_byte (bfd *abfd, unsigned int lineno, int c, bfd_boolean error) 230 abfd, lineno, buf); 244 unsigned int lineno; local 258 lineno = 1; 268 ++lineno; 273 ihex_bad_byte (abfd, lineno, c, error); 298 ihex_bad_byte (abfd, lineno, hdr[i], error); 324 ihex_bad_byte (abfd, lineno, buf[i], error); 337 abfd, lineno, 392 abfd, lineno); [all...] |
| srec.c | 238 unsigned int lineno, 260 abfd, lineno, buf); 298 unsigned int lineno = 1; local 318 srec_bad_byte (abfd, lineno, c, error); 322 ++lineno; 335 srec_bad_byte (abfd, lineno, c, error); 339 ++lineno; 359 srec_bad_byte (abfd, lineno, c, error); 391 srec_bad_byte (abfd, lineno, c, error); 408 srec_bad_byte (abfd, lineno, c, error) [all...] |
| /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/ |
| VfrSyntax.g | [all...] |
| /device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/ |
| String.py | 563 LineNo = 0
567 LineNo = LineNo + 1
583 EdkLogger.error("Parser", FORMAT_INVALID, Line=LineNo, File=FileName, RaiseError=EdkLogger.IsRaiseError)
593 EdkLogger.error("Parser", FORMAT_INVALID, Line=LineNo, File=FileName, RaiseError=EdkLogger.IsRaiseError)
601 EdkLogger.error("Parser", FORMAT_INVALID, Line=LineNo, File=FileName, RaiseError=EdkLogger.IsRaiseError)
619 def CheckFileType(CheckFilename, ExtName, ContainerFilename, SectionName, Line, LineNo= -1):
624 if LineNo == -1:
625 LineNo = GetLineNo(ContainerFile, Line)
627 EdkLogger.error("Parser", PARSER_ERROR, ErrorMsg, Line=LineNo,
[all...] |
| /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Library/ |
| String.py | 473 LineNo = 0
477 LineNo = LineNo + 1
492 Logger.Error("Parser", FORMAT_INVALID, Line=LineNo, File=FileName, RaiseError=Logger.IS_RAISE_ERROR)
501 Logger.Error("Parser", FORMAT_INVALID, Line=LineNo, File=FileName, RaiseError=Logger.IS_RAISE_ERROR)
508 Logger.Error("Parser", FORMAT_INVALID, Line=LineNo, File=FileName, RaiseError=Logger.IS_RAISE_ERROR)
526 def CheckFileType(CheckFilename, ExtName, ContainerFilename, SectionName, Line, LineNo= -1):
531 if LineNo == -1:
532 LineNo = GetLineNo(ContainerFile, Line)
534 Logger.Error("Parser", PARSER_ERROR, ErrorMsg, Line=LineNo, \
[all...] |
| /external/mesa3d/src/gallium/drivers/swr/rasterizer/scripts/mako/ |
| pygen.py | 30 self.lineno = 1 45 self.lineno += num 47 def start_source(self, lineno): 48 if self.lineno not in self.source_map: 49 self.source_map[self.lineno] = lineno
|
| /prebuilts/go/darwin-x86/src/crypto/ecdsa/ |
| ecdsa_test.go | 232 lineNo := 1 247 lineNo++ 250 t.Fatalf("bad line ending (expected \\r\\n) on line %d", lineNo) 300 t.Fatalf("failed to decode message on line %d: %s", lineNo, err) 316 t.Fatalf("incorrect result on line %d", lineNo) 319 t.Fatalf("unknown variable on line %d: %s", lineNo, line)
|
| /prebuilts/go/linux-x86/src/crypto/ecdsa/ |
| ecdsa_test.go | 232 lineNo := 1 247 lineNo++ 250 t.Fatalf("bad line ending (expected \\r\\n) on line %d", lineNo) 300 t.Fatalf("failed to decode message on line %d: %s", lineNo, err) 316 t.Fatalf("incorrect result on line %d", lineNo) 319 t.Fatalf("unknown variable on line %d: %s", lineNo, line)
|
| /system/sepolicy/tools/ |
| insertkeys.py | 37 lineNo = 1 46 "line: " + str(lineNo)) 54 + str(lineNo)) 83 sys.exit("Detected erroneous line \""+ line + "\" on " + str(lineNo) 96 lineNo = lineNo + 1
|