HomeSort by relevance Sort by last modified time
    Searched defs:Suppression (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/tools/heapcheck/
suppressions.py 25 Suppression class.
33 class Suppression(object):
34 """This class represents a single stack trace suppression.
42 """Inits Suppression.
75 """Returns bool indicating whether the suppression matches the given report.
80 True if the suppression is not empty and matches the report.
119 result.append(Suppression(cur_type, cur_descr, cur_stack))
144 """Tests the Suppression.Match() capabilities."""
147 return Suppression('', '', list(lines))
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_suppressions.h 10 // Suppression parsing/matching code shared between TSan and LSan.
31 struct Suppression {
42 bool Match(const char* str, SuppressionType type, Suppression **s);
44 void GetMatched(InternalMmapVector<Suppression *> *matched);
47 InternalMmapVector<Suppression> suppressions_;
  /external/chromium_org/tools/valgrind/
suppressions.py 8 """Post-process Valgrind suppression matcher.
25 of the Suppression class.
101 # suppression. Add one to the line number as well, since most editors use
106 class Suppression(object):
107 """This class represents a single stack trace suppression.
112 stack: The lines comprising the stack trace for the suppression.
117 """Inits Suppression.
120 defined_at: file:line identifying where the suppression was defined
129 """Returns bool indicating whether this suppression matches
130 the suppression generated from Valgrind error report
    [all...]

Completed in 7899 milliseconds