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

  /external/autotest/client/common_lib/
gtest_parser.py 37 # Suppressions are stored here as 'hash': [suppression].
60 'Suppression \(error hash=#([0-9A-F]+)#\):')
151 """Returns list of suppression hashes found in the log."""
154 def Suppression(self, suppression_hash):
155 """Returns a list containing the suppression for a given hash.
157 If the suppression hash doesn't exist, returns [].
162 List of suppression for the hash.
274 # Is it the start of a new valgrind suppression?
279 self._RecordError(line, 'suppression reported more than once')
286 # Is it the end of a valgrind suppression
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_suppressions.h 10 // Suppression parsing/matching code.
22 struct Suppression {
23 Suppression() { internal_memset(this, 0, sizeof(*this)); }
32 // Create new SuppressionContext capable of parsing given suppression types.
39 bool Match(const char *str, const char *type, Suppression **s);
42 const Suppression *SuppressionAt(uptr i) const;
43 void GetMatched(InternalMmapVector<Suppression *> *matched);
50 InternalMmapVector<Suppression> suppressions_;
  /external/v8/tools/foozzie/
v8_suppressions.py 276 class Suppression(object):
293 class V8Suppression(Suppression):
  /external/guava/guava-tests/test/com/google/common/io/
CloserTest.java 206 new Suppression(c2, tryException, c2Exception),
207 new Suppression(c1, tryException, c1Exception));
233 new Suppression(c2, c3Exception, c2Exception),
234 new Suppression(c1, c3Exception, c1Exception));
263 new Suppression(c2, tryException, c2Exception),
264 new Suppression(c1, tryException, c1Exception));
289 new Suppression(c2, c3Exception, c2Exception),
290 new Suppression(c1, c3Exception, c1Exception));
377 private void assertSuppressed(Suppression... expected) {
386 private final List<Suppression> suppressions = Lists.newArrayList()
    [all...]

Completed in 98 milliseconds