/external/pdfium/xfa/src/fxfa/src/fm2js/ |
xfa_error.h | 22 CXFA_FMErrorInfo() : linenum(0){};
24 FX_DWORD linenum;
member in class:CXFA_FMErrorInfo
|
/build/tools/ |
event_log_tags.py | 21 __slots__ = ["tagnum", "tagname", "description", "filename", "linenum"] 23 def __init__(self, tagnum, tagname, description, filename, linenum): 28 self.linenum = linenum 33 def AddError(self, msg, linenum=None): 34 if linenum is None: 35 linenum = self.linenum 36 self.errors.append((self.filename, linenum, msg)) 38 def AddWarning(self, msg, linenum=None) [all...] |
merge-event-log-tags.py | 108 (t.tagname, t.tagnum, orig.filename, orig.linenum), 109 linenum=t.linenum) variable 113 (t.tagname, orig.tagnum, orig.filename, orig.linenum), 114 linenum=t.linenum) variable 123 (t.tagnum, orig.tagname, orig.filename, orig.linenum), 124 linenum=t.linenum) variable
|
/external/curl/tests/ |
memanalyze.pl | 100 my ($source, $linenum) = ($1, $2); 102 print "LIMIT: $1 returned error at $source:$linenum\n"; 108 $linenum = $2; 126 print "FREE: malloc at ".$getmem{$addr}." is freed again at $source:$linenum\n"; 134 $getmem{$addr}="$source:$linenum"; 144 print "Mixed debug compile ($source:$linenum at line $lnum), rebuild curl now\n"; 152 print "MALLOC: malloc($size) at $source:$linenum", 159 $getmem{$addr}="$source:$linenum"; 177 print "CALLOC: calloc($arg1,$arg2) at $source:$linenum", 184 $getmem{$addr}="$source:$linenum"; [all...] |
/external/compiler-rt/lib/sanitizer_common/scripts/ |
cpplint.py | 360 def ParseNolintSuppressions(filename, raw_line, linenum, error): 370 linenum: int, the number of the current line. 378 _error_suppressions.setdefault(None, set()).add(linenum) 383 _error_suppressions.setdefault(category, set()).add(linenum) 385 error(filename, linenum, 'readability/nolint', 5, 394 def IsErrorSuppressedByNolint(category, linenum): 402 linenum: int, the current line number. 406 return (linenum in _error_suppressions.get(category, set()) or 407 linenum in _error_suppressions.get(None, set())) 700 def Check(self, error, filename, linenum) [all...] |
/art/tools/ |
cpplint.py | 364 def ParseNolintSuppressions(filename, raw_line, linenum, error): 374 linenum: int, the number of the current line. 382 _error_suppressions.setdefault(None, set()).add(linenum) 387 _error_suppressions.setdefault(category, set()).add(linenum) 389 error(filename, linenum, 'readability/nolint', 5, 398 def IsErrorSuppressedByNolint(category, linenum): 406 linenum: int, the current line number. 410 return (linenum in _error_suppressions.get(category, set()) or 411 linenum in _error_suppressions.get(None, set())) 726 def Check(self, error, filename, linenum) [all...] |
/external/libvpx/libvpx/tools/ |
cpplint.py | 455 def ParseNolintSuppressions(filename, raw_line, linenum, error): 465 linenum: int, the number of the current line. 473 _error_suppressions.setdefault(None, set()).add(linenum) 478 _error_suppressions.setdefault(category, set()).add(linenum) 480 error(filename, linenum, 'readability/nolint', 5, 489 def IsErrorSuppressedByNolint(category, linenum): 497 linenum: int, the current line number. 501 return (linenum in _error_suppressions.get(category, set()) or 502 linenum in _error_suppressions.get(None, set())) 601 def IsInAlphabeticalOrder(self, clean_lines, linenum, header_path) [all...] |
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/tools/ |
cpplint.py | 455 def ParseNolintSuppressions(filename, raw_line, linenum, error): 465 linenum: int, the number of the current line. 473 _error_suppressions.setdefault(None, set()).add(linenum) 478 _error_suppressions.setdefault(category, set()).add(linenum) 480 error(filename, linenum, 'readability/nolint', 5, 489 def IsErrorSuppressedByNolint(category, linenum): 497 linenum: int, the current line number. 501 return (linenum in _error_suppressions.get(category, set()) or 502 linenum in _error_suppressions.get(None, set())) 601 def IsInAlphabeticalOrder(self, clean_lines, linenum, header_path) [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/xml/sax/ |
_exceptions.py | 94 linenum = self.getLineNumber() 95 if linenum is None: 96 linenum = "?" 100 return "%s:%s:%s: %s" % (sysid, linenum, colnum, self._msg)
|
/prebuilts/gdb/linux-x86/lib/python2.7/xml/sax/ |
_exceptions.py | 94 linenum = self.getLineNumber() 95 if linenum is None: 96 linenum = "?" 100 return "%s:%s:%s: %s" % (sysid, linenum, colnum, self._msg)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/sax/ |
_exceptions.py | 94 linenum = self.getLineNumber() 95 if linenum is None: 96 linenum = "?" 100 return "%s:%s:%s: %s" % (sysid, linenum, colnum, self._msg)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/sax/ |
_exceptions.py | 94 linenum = self.getLineNumber() 95 if linenum is None: 96 linenum = "?" 100 return "%s:%s:%s: %s" % (sysid, linenum, colnum, self._msg)
|
/external/e2fsprogs/lib/ss/ |
ct_c.awk | 52 linenum = $1; 57 printf "Error in line %d: %s\n", linenum, error
|
/external/autotest/client/common_lib/ |
cartesian_config.py | 34 def __init__(self, msg, line=None, filename=None, linenum=None): 38 self.linenum = linenum 43 self.filename, self.linenum) 45 return "%s (%s:%s)" % (self.msg, self.filename, self.linenum) 249 filename, linenum, obj = t 258 obj.line, filename, linenum) 263 obj.line, filename, linenum) 289 filename, linenum, filter = t 294 filename, linenum, filter = [all...] |
/external/skia/tools/ |
parse_llvm_coverage.py | 80 cov, linenum, code = line.split('|', 2) 86 linenum = int(linenum.strip()) 87 assert linenum == len(file_lines) + 1 88 file_lines.append((linenum, cov, code.decode('utf-8', 'replace')))
|
/prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/ |
CodeContext.py | 91 def get_line_info(self, linenum): 98 text = self.text.get("%d.0" % linenum, "%d.end" % linenum) 120 for linenum in xrange(new_topvisible, stopline-1, -1): 121 indent, text, opener = self.get_line_info(linenum) 127 if opener and linenum < new_topvisible and indent >= stopindent: 128 lines.append((linenum, indent, text, opener))
|
/prebuilts/gdb/linux-x86/lib/python2.7/idlelib/ |
CodeContext.py | 91 def get_line_info(self, linenum): 98 text = self.text.get("%d.0" % linenum, "%d.end" % linenum) 120 for linenum in xrange(new_topvisible, stopline-1, -1): 121 indent, text, opener = self.get_line_info(linenum) 127 if opener and linenum < new_topvisible and indent >= stopindent: 128 lines.append((linenum, indent, text, opener))
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
CodeContext.py | 91 def get_line_info(self, linenum): 98 text = self.text.get("%d.0" % linenum, "%d.end" % linenum) 120 for linenum in xrange(new_topvisible, stopline-1, -1): 121 indent, text, opener = self.get_line_info(linenum) 127 if opener and linenum < new_topvisible and indent >= stopindent: 128 lines.append((linenum, indent, text, opener))
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
CodeContext.py | 91 def get_line_info(self, linenum): 98 text = self.text.get("%d.0" % linenum, "%d.end" % linenum) 120 for linenum in xrange(new_topvisible, stopline-1, -1): 121 indent, text, opener = self.get_line_info(linenum) 127 if opener and linenum < new_topvisible and indent >= stopindent: 128 lines.append((linenum, indent, text, opener))
|
/toolchain/binutils/binutils-2.25/gas/ |
listing.c | 127 unsigned int linenum; member in struct:file_info_struct 283 p->linenum = 0; 545 file->linenum++; 558 unsigned int linenum, 571 if (file == NULL || buffer == NULL || size <= 1 || file->linenum <= linenum) 602 current_line = file->linenum; 635 if (current_line == linenum) 1043 if (current_file->linenum > list->hll_line 1095 while (current_file->linenum < list->hll_lin [all...] |
/external/toybox/toys/posix/ |
patch.c | 54 long linenum; 159 TT.linenum++; 164 if (!backwarn) backwarn = TT.linenum; 178 TT.hunknum, TT.linenum); 402 TT.linenum = 0;
|
/external/valgrind/include/ |
pub_tool_debuginfo.h | 49 extern Bool VG_(get_linenum) ( Addr a, UInt* linenum ); 54 optionally directory name. filename and linenum may not be NULL. 71 /*OUT*/UInt* linenum );
|
/external/opencv3/modules/java/ |
check-tests.py | 98 linenum = 0 100 linenum += 1 130 func_loc = fname + " (line: " + str(linenum) + ")"
|
/art/tools/dmtracedump/ |
createtesttrace.cc | 155 int32_t linenum = 0; local 165 linenum += 1; 253 fprintf(stderr, "Error: line %d: %s", linenum, buf); 263 fprintf(stderr, "Error: line %d: %s", linenum, buf); 271 fprintf(stderr, "Error: line %d: %s", linenum, buf);
|
/prebuilts/misc/darwin-x86_64/sdl2/include/SDL2/ |
SDL_assert.h | 113 int linenum; member in struct:SDL_assert_data 256 * item->linenum, item->trigger_count,
|