OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Suppression
(Results
1 - 3
of
3
) sorted by null
/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/autotest/server/
site_gtest_runner.py
180
# Suppressions are stored here as 'hash': [
suppression
].
203
'
Suppression
\(error hash=#([0-9A-F]+)#\):')
293
"""Returns list of
suppression
hashes found in the log."""
296
def
Suppression
(self, suppression_hash):
297
"""Returns a list containing the
suppression
for a given hash.
299
If the
suppression
hash doesn't exist, returns [].
304
List of
suppression
for the hash.
416
# Is it the start of a new valgrind
suppression
?
421
self._RecordError(line, '
suppression
reported more than once')
428
# Is it the end of a valgrind
suppression
[
all
...]
/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 533 milliseconds