| /external/tensorflow/tensorflow/contrib/tensorboard/plugins/trace/ |
| trace.py | 68 fname, lineno, _, _ = trace 74 line_trace.line_number = lineno 165 lineno = node[2] 166 line2par[lineno - 1] += (1 if tok in LEFT_TOKENS else -1)
|
| /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Basic/ |
| SourceManagerInternals.h | 34 unsigned LineNo; 54 E.LineNo = Line; 105 unsigned LineNo, int FilenameID); 107 unsigned LineNo, int FilenameID,
|
| /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/Basic/ |
| SourceManagerInternals.h | 34 unsigned LineNo; 54 E.LineNo = Line; 105 unsigned LineNo, int FilenameID); 107 unsigned LineNo, int FilenameID,
|
| /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/ |
| OutputWindow.py | 101 filename, lineno = result 103 edit.gotoline(lineno) 109 filename, lineno = match.group(1, 2) 119 return filename, int(lineno)
|
| /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/ |
| OutputWindow.py | 101 filename, lineno = result 103 edit.gotoline(lineno) 109 filename, lineno = match.group(1, 2) 119 return filename, int(lineno)
|
| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
| OutputWindow.py | 101 filename, lineno = result 103 edit.gotoline(lineno) 109 filename, lineno = match.group(1, 2) 119 return filename, int(lineno)
|
| /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
| OutputWindow.py | 101 filename, lineno = result 103 edit.gotoline(lineno) 109 filename, lineno = match.group(1, 2) 119 return filename, int(lineno)
|
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Parser/ |
| parser.c | 108 shift(register stack *s, int type, char *str, int newstate, int lineno, int col_offset)
112 err = PyNode_AddChild(s->s_top->s_parent, type, str, lineno, col_offset);
120 push(register stack *s, int type, dfa *d, int newstate, int lineno, int col_offset)
126 err = PyNode_AddChild(n, type, (char *)NULL, lineno, col_offset);
221 int lineno, int col_offset, int *expected_ret)
253 arrow, lineno, col_offset)) > 0) {
263 x, lineno, col_offset)) > 0) {
|
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/ |
| parser.c | 108 shift(register stack *s, int type, char *str, int newstate, int lineno, int col_offset)
112 err = PyNode_AddChild(s->s_top->s_parent, type, str, lineno, col_offset);
120 push(register stack *s, int type, dfa *d, int newstate, int lineno, int col_offset)
126 err = PyNode_AddChild(n, type, (char *)NULL, lineno, col_offset);
221 int lineno, int col_offset, int *expected_ret)
253 arrow, lineno, col_offset)) > 0) {
263 x, lineno, col_offset)) > 0) {
|
| /external/freetype/src/tools/docmaker/ |
| sources.py | 263 def __init__( self, processor, filename, lineno, lines ): 266 self.lineno = lineno 294 return "(" + self.filename + ":" + repr( self.lineno ) + ")" 351 self.lineno = 0 388 self.lineno = fileinput.filelineno() 397 self.lineno,
|
| /external/python/cpython2/Parser/ |
| parser.c | 108 shift(register stack *s, int type, char *str, int newstate, int lineno, int col_offset) 112 err = PyNode_AddChild(s->s_top->s_parent, type, str, lineno, col_offset); 120 push(register stack *s, int type, dfa *d, int newstate, int lineno, int col_offset) 126 err = PyNode_AddChild(n, type, (char *)NULL, lineno, col_offset); 221 int lineno, int col_offset, int *expected_ret) 253 arrow, lineno, col_offset)) > 0) { 263 x, lineno, col_offset)) > 0) {
|
| /external/python/cpython3/Include/ |
| pyerrors.h | 24 PyObject *lineno; member in struct:__anon33169 321 PyAPI_FUNC(void) _PyErr_BadInternalCall(const char *filename, int lineno); 367 int lineno); 370 int lineno, 375 int lineno, 380 int lineno); 384 int lineno);
|
| /external/python/cpython3/Parser/ |
| parser.c | 108 shift(stack *s, int type, char *str, int newstate, int lineno, int col_offset) 112 err = PyNode_AddChild(s->s_top->s_parent, type, str, lineno, col_offset); 120 push(stack *s, int type, dfa *d, int newstate, int lineno, int col_offset) 126 err = PyNode_AddChild(n, type, (char *)NULL, lineno, col_offset); 228 int lineno, int col_offset, int *expected_ret) 260 arrow, lineno, col_offset)) > 0) { 270 x, lineno, col_offset)) > 0) {
|
| /external/selinux/libselinux/src/ |
| label_backends_android.c | 87 int pass, unsigned lineno) 101 lineno, errbuf ?: strerror(errno)); 112 lineno); 130 path, lineno, spec_arr[nspec].lr.ctx_raw); 146 unsigned int lineno, maxnspec, pass; local 173 lineno = 0; 177 if (process_line(rec, path, line_buf, pass, ++lineno))
|
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/ |
| errors.c | 538 _PyErr_BadInternalCall(char *filename, int lineno)
542 filename, lineno);
724 PyErr_SyntaxLocation(const char *filename, int lineno)
733 tmp = PyInt_FromLong(lineno);
737 if (PyObject_SetAttrString(v, "lineno", tmp))
751 tmp = PyErr_ProgramText(filename, lineno);
790 PyErr_ProgramText(const char *filename, int lineno)
796 if (filename == NULL || *filename == '\0' || lineno <= 0)
801 for (i = 0; i < lineno; i++) {
815 if (i == lineno) {
[all...] |
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/ |
| errors.c | 516 _PyErr_BadInternalCall(char *filename, int lineno)
520 filename, lineno);
702 PyErr_SyntaxLocation(const char *filename, int lineno)
711 tmp = PyInt_FromLong(lineno);
715 if (PyObject_SetAttrString(v, "lineno", tmp))
729 tmp = PyErr_ProgramText(filename, lineno);
768 PyErr_ProgramText(const char *filename, int lineno)
774 if (filename == NULL || *filename == '\0' || lineno <= 0)
779 for (i = 0; i < lineno; i++) {
793 if (i == lineno) {
[all...] |
| /external/python/cpython2/Python/ |
| errors.c | 535 _PyErr_BadInternalCall(const char *filename, int lineno) 539 filename, lineno); 727 PyErr_SyntaxLocation(const char *filename, int lineno) 736 tmp = PyInt_FromLong(lineno); 740 if (PyObject_SetAttrString(v, "lineno", tmp)) 754 tmp = PyErr_ProgramText(filename, lineno); 793 PyErr_ProgramText(const char *filename, int lineno) 799 if (filename == NULL || *filename == '\0' || lineno <= 0) 804 for (i = 0; i < lineno; i++) { 818 if (i == lineno) { [all...] |
| /external/skia/tools/ |
| pathops_visualizer.htm | 539 function match_regexp(str, lineNo, array, id, pattern) { 559 for (var lineNo = 0; lineNo < lines.length; ++lineNo) { 560 var line = lines[lineNo]; 606 lastLineNo = lineNo; 611 found = match_regexp(line, lineNo, record, ACTIVE_LINE_SPAN, "debugShowActiveSpans" + 613 ) || match_regexp(line, lineNo, record, ACTIVE_QUAD_SPAN, "debugShowActiveSpans" + 615 ) || match_regexp(line, lineNo, record, ACTIVE_CONIC_SPAN, "debugShowActiveSpans" + 617 ) || match_regexp(line, lineNo, record, ACTIVE_CUBIC_SPAN, "debugShowActiveSpans" [all...] |
| /external/skqp/tools/ |
| pathops_visualizer.htm | 539 function match_regexp(str, lineNo, array, id, pattern) { 559 for (var lineNo = 0; lineNo < lines.length; ++lineNo) { 560 var line = lines[lineNo]; 606 lastLineNo = lineNo; 611 found = match_regexp(line, lineNo, record, ACTIVE_LINE_SPAN, "debugShowActiveSpans" + 613 ) || match_regexp(line, lineNo, record, ACTIVE_QUAD_SPAN, "debugShowActiveSpans" + 615 ) || match_regexp(line, lineNo, record, ACTIVE_CONIC_SPAN, "debugShowActiveSpans" + 617 ) || match_regexp(line, lineNo, record, ACTIVE_CUBIC_SPAN, "debugShowActiveSpans" [all...] |
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
| doctest.py | 109 # info about where the docstring came from (name, filename, lineno).
422 - lineno: The line number within the DocTest string containing
436 def __init__(self, source, want, exc_msg=None, lineno=0, indent=0,
448 self.lineno = lineno
470 - lineno: The line number within filename where this DocTest
478 def __init__(self, examples, globs, name, filename, lineno, docstring):
490 self.lineno = lineno
500 (self.name, self.filename, self.lineno, examples)) [all...] |
| /external/dtc/ |
| srcpos.c | 156 srcfile->lineno = 1; 220 pos->first_line = current_srcfile->lineno; 225 current_srcfile->lineno++; 234 pos->last_line = current_srcfile->lineno; 301 current_srcfile->lineno = l;
|
| /external/elfutils/tests/ |
| dwflmodtest.c | 56 int lineno = 0, colno = 0; local 59 lineno = val; 63 if (lineno == 0) 69 printf (" at %s:%u", file, lineno); 71 printf (" at %s:%u:%u", file, lineno, colno);
|
| /external/libchrome/base/third_party/dynamic_annotations/ |
| dynamic_annotations.c | 64 volatile unsigned short lineno = (__LINE__ << 8) + __COUNTER__; (void)lineno; 67 volatile unsigned short lineno = (__LINE__ << 8); (void)lineno; 71 Otherwise, lineno (see above) numbers for different Annotate* functions may
|
| /external/python/cpython3/Lib/test/ |
| test_fileinput.py | 116 self.assertEqual(fi.lineno(), 31) 126 self.assertEqual(fi.lineno(), 21) 135 self.assertEqual(fi.lineno(), 22) 155 self.assertEqual(fi.lineno(), 0) 158 self.assertEqual(fi.lineno(), 0) 202 self.assertEqual(fi.lineno(), 1) 208 self.assertEqual(fi.lineno(), 1) 224 self.assertEqual(fi.lineno(), 6) 367 self.assertEqual(fi.lineno(), 6) 559 def lineno(self) member in class:MockFileInput [all...] |
| /external/swiftshader/third_party/LLVM/include/llvm/Support/ |
| SourceMgr.h | 160 int LineNo, ColumnNo; 166 SMDiagnostic() : SM(0), LineNo(0), ColumnNo(0), ShowLine(0) {} 169 : SM(0), Filename(filename), LineNo(-1), ColumnNo(-1), 177 : SM(&sm), Loc(L), Filename(FN), LineNo(Line), ColumnNo(Col), Message(Msg), 183 int getLineNo() const { return LineNo; }
|