Searched defs:exception (Results 76 - 100 of 660) sorted by relevance

1234567891011>>

/external/chromium-trace/catapult/telemetry/third_party/web-page-replay/third_party/dns/rdtypes/ANY/
H A DHINFO.py16 import dns.exception namespace
65 raise dns.exception.FormError
73 raise dns.exception.FormError
H A DHIP.py20 import dns.exception namespace
61 raise dns.exception.SyntaxError("HIT too long")
H A DISDN.py16 import dns.exception namespace
75 raise dns.exception.FormError
84 raise dns.exception.FormError
H A DNSEC.py18 import dns.exception namespace
62 raise dns.exception.SyntaxError("NSEC with bit 0")
64 raise dns.exception.SyntaxError("NSEC with bit > 65535")
105 raise dns.exception.FormError("NSEC too short")
109 raise dns.exception.FormError("bad NSEC octets")
113 raise dns.exception.FormError("bad NSEC bitmap length")
H A DNSEC3PARAM.py19 import dns.exception namespace
78 raise dns.exception.FormError
H A DNXT.py16 import dns.exception namespace
64 raise dns.exception.SyntaxError("NXT with bit 0")
66 raise dns.exception.SyntaxError("NXT with bit > 127")
H A DRP.py16 import dns.exception namespace
66 raise dns.exception.FormError
70 raise dns.exception.FormError
H A DSOA.py18 import dns.exception namespace
100 raise dns.exception.FormError
H A DX25.py16 import dns.exception namespace
55 raise dns.exception.FormError
/external/chromium-trace/catapult/telemetry/third_party/web-page-replay/third_party/dns/rdtypes/IN/
H A DA.py16 import dns.exception namespace
H A DAAAA.py16 import dns.exception namespace
H A DIPSECKEY.py19 import dns.exception namespace
92 raise dns.exception.SyntaxError
119 raise dns.exception.FormError
142 raise dns.exception.FormError('invalid IPSECKEY gateway type')
H A DNAPTR.py18 import dns.exception namespace
100 raise dns.exception.FormError
108 raise dns.exception.FormError
H A DNSAP.py16 import dns.exception namespace
40 raise dns.exception.SyntaxError('string does not start with 0x')
43 raise dns.exception.SyntaxError('hexstring has odd length')
H A DPX.py18 import dns.exception namespace
70 raise dns.exception.FormError
78 raise dns.exception.FormError
H A DSRV.py18 import dns.exception namespace
73 raise dns.exception.FormError
/external/chromium-trace/catapult/telemetry/third_party/web-page-replay/third_party/dns/rdtypes/
H A Dkeybase.py18 import dns.exception namespace
100 raise dns.exception.SyntaxError('unknown flag %s' % flag)
109 raise dns.exception.SyntaxError('unknown protocol %s' % protocol)
118 raise dns.exception.SyntaxError
133 raise dns.exception.FormError
H A Dnsbase.py20 import dns.exception namespace
58 raise dns.exception.FormError
H A Dtxtbase.py18 import dns.exception namespace
52 raise dns.exception.SyntaxError("expected a string")
54 raise dns.exception.SyntaxError("string too long")
57 raise dns.exception.UnexpectedEnd
77 raise dns.exception.FormError
/external/clang/test/CodeGenCXX/
H A Dweak-external.cpp37 class _LIBCPP_EXCEPTION_ABI exception class in namespace:std
40 _LIBCPP_INLINE_VISIBILITY exception() _NOEXCEPT {}
41 virtual ~exception() _NOEXCEPT;
46 : public exception
/external/emma/core/java12/com/vladium/jcd/cls/attribute/
H A DIExceptionHandlerTable.java17 * exception handler range. The order of these entries is the order in which
18 * a JVM will check for a matching exception handler when the parent method
19 * throws an exception.
33 * @param offset exception offset [must be in [0, size()) range; input not checked]
60 * that all data referenced in 'exception' will eventually be consistent
63 * @param exception new exception descriptor [may not be null]
65 int add (Exception_info exception); argument
69 * checks are made. No exception type compatibility checks are made. It is
71 * in 'exception' wil
80 set(int offset, Exception_info exception) argument
[all...]
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
H A DCollationRoot.java28 private static final RuntimeException exception; field in class:CollationRoot
31 if(exception != null) {
32 throw exception;
53 // Otherwise we would set a non-null root object if the data reader throws an exception.
63 exception = e2;
/external/junit-params/src/test/java/junitparams/
H A DRulesTest.java23 public ExpectedException exception = ExpectedException.none(); field in class:RulesTest
/external/mockito/src/test/java/org/mockito/internal/verification/
H A DVerificationOverTimeImplTest.java23 public ExpectedException exception = ExpectedException.none(); field in class:VerificationOverTimeImplTest
40 exception.expect(is(toBeThrown));
49 exception.expect(is(toBeThrown));
50 exception.expectMessage("message");
59 exception.expect(is(toBeThrown));
/external/mockito/src/test/java/org/mockito/internal/verification/checkers/
H A DAtLeastXNumberOfInvocationsCheckerTest.java25 public ExpectedException exception = ExpectedException.none(); field in class:AtLeastXNumberOfInvocationsCheckerTest
48 exception.expect(VerificationInOrderFailure.class);
49 exception.expectMessage("iMethods.simpleMethod()");
50 exception.expectMessage("Wanted *at least* 2 times");
51 exception.expectMessage("But was 1 time");
78 exception.expect(TooLittleActualInvocations.class);
79 exception.expectMessage("iMethods.simpleMethod()");
80 exception.expectMessage("Wanted *at least* 2 times");
81 exception.expectMessage("But was 1 time");

Completed in 233 milliseconds

1234567891011>>