HomeSort by relevance Sort by last modified time
    Searched refs:linenum (Results 1 - 25 of 90) sorted by null

1 2 3 4

  /external/llvm/utils/abtest/
mark_armfns.py 12 linenum = 0 variable
20 linenum += 1
22 last_align = linenum
24 last_code = linenum
26 last_globl = linenum
30 if last_code == last_align+1 and (linenum - last_code) < 4:
35 end = linenum
43 linenum = 0 variable
45 linenum += 1
46 if in_func is not None and linenum == end
    [all...]
mark_aarch64fns.py 12 linenum = 0 variable
22 linenum += 1
34 last_align = linenum
38 last_globl = linenum
42 if last_globl+2 == linenum and last_globl_name == labelname:
46 end = linenum
54 linenum = 0 variable
56 linenum += 1
57 if in_func is not None and linenum == end:
61 triple = begins.get(linenum)
    [all...]
  /build/make/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 103 my ($source, $linenum) = ($1, $2);
105 print "LIMIT: $1 returned error at $source:$linenum\n";
111 $linenum = $2;
129 print "FREE: malloc at ".$getmem{$addr}." is freed again at $source:$linenum\n";
137 $getmem{$addr}="$source:$linenum";
147 print "Mixed debug compile ($source:$linenum at line $lnum), rebuild curl now\n";
155 print "MALLOC: malloc($size) at $source:$linenum",
162 $getmem{$addr}="$source:$linenum";
180 print "CALLOC: calloc($arg1,$arg2) at $source:$linenum",
187 $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...]
  /external/google-styleguide/cpplint/
cpplint.py 577 def ParseNolintSuppressions(filename, raw_line, linenum, error):
587 linenum: int, the number of the current line.
593 suppressed_line = linenum + 1
595 suppressed_line = linenum
605 error(filename, linenum, 'readability/nolint', 5,
633 def IsErrorSuppressedByNolint(category, linenum):
641 linenum: int, the current line number.
647 linenum in _error_suppressions.get(category, set()) or
648 linenum in _error_suppressions.get(None, set()))
781 def IsInAlphabeticalOrder(self, clean_lines, linenum, header_path)
    [all...]
  /tools/repohooks/tools/
cpplint.py 578 def ParseNolintSuppressions(filename, raw_line, linenum, error):
588 linenum: int, the number of the current line.
594 suppressed_line = linenum + 1
596 suppressed_line = linenum
606 error(filename, linenum, 'readability/nolint', 5,
634 def IsErrorSuppressedByNolint(category, linenum):
642 linenum: int, the current line number.
648 linenum in _error_suppressions.get(category, set()) or
649 linenum in _error_suppressions.get(None, set()))
782 def IsInAlphabeticalOrder(self, clean_lines, linenum, header_path)
    [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...]
  /external/lz4/contrib/gen_manual/
gen_manual.cpp 66 vector<string> get_lines(vector<string>& input, int& linenum, string terminator)
72 while ((size_t)linenum < input.size()) {
73 line = input[linenum];
75 if (terminator.empty() && line.empty()) { linenum--; break; }
83 linenum++;
108 int linenum, chapter = 1; local
139 for (linenum=0; (size_t)linenum < input.size(); linenum++) {
140 line = input[linenum];
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/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)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/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/python/cpython2/Lib/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/python/cpython3/Lib/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/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/libcups/cups/
testconflicts.c 53 int linenum; /* Line number in file */ local
55 err = ppdLastError(&linenum);
58 ppdErrorString(err), linenum);
  /external/e2fsprogs/lib/ss/
ct_c.awk 52 linenum = $1;
57 printf "Error in line %d: %s\n", linenum, error
  /external/python/cpython2/Lib/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))
  /external/python/cpython3/Lib/idlelib/
codecontext.py 93 def get_line_info(self, linenum):
100 text = self.text.get("%d.0" % linenum, "%d.end" % linenum)
122 for linenum in range(new_topvisible, stopline-1, -1):
123 indent, text, opener = self.get_line_info(linenum)
129 if opener and linenum < new_topvisible and indent >= stopindent:
130 lines.append((linenum, indent, text, opener))
  /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))

Completed in 4376 milliseconds

1 2 3 4