Searched refs:Exception (Results 51 - 75 of 2741) sorted by relevance

1234567891011>>

/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DRewriteEarlyExitException.cs35 using Exception = System.Exception;
52 public RewriteEarlyExitException(string elementDescription, Exception innerException)
62 public RewriteEarlyExitException(string message, string elementDescription, Exception innerException)
H A DRewriteEmptyStreamException.cs35 using Exception = System.Exception;
52 public RewriteEmptyStreamException(string elementDescription, Exception innerException)
62 public RewriteEmptyStreamException(string message, string elementDescription, Exception innerException)
/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
H A DTestSemanticPredicateEvaluation.java33 @Test public void testSimpleCyclicDFAWithPredicate() throws Exception {
44 @Test public void testSimpleCyclicDFAWithInstanceVarPredicate() throws Exception {
56 @Test public void testPredicateValidation() throws Exception {
72 @Test public void testLexerPreds() throws Exception {
85 @Test public void testLexerPreds2() throws Exception {
98 @Test public void testLexerPredInExitBranch() throws Exception {
112 @Test public void testLexerPredInExitBranch2() throws Exception {
124 @Test public void testLexerPredInExitBranch3() throws Exception {
136 @Test public void testLexerPredInExitBranch4() throws Exception {
147 @Test public void testLexerPredsInCyclicDFA() throws Exception {
[all...]
/external/apache-http/src/org/apache/http/impl/cookie/
H A DDateParseException.java42 public class DateParseException extends Exception {
/external/apache-xml/src/main/java/org/apache/xpath/functions/
H A DWrongNumberArgsException.java28 public class WrongNumberArgsException extends Exception
/external/chromium_org/tools/grit/grit/format/policy_templates/
H A Dwriter_configuration.py15 Exception: If 'defines' contains an unknown build-type.
52 raise Exception('Unknown build')
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
H A DIValueSourcePropertyEditor.java24 String getValueSource(Object value) throws Exception;
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/execution/
H A DRunnableObjectEx.java14 * Analog of {@link Runnable} where method <code>run</code> can throw {@link Exception}.
21 * Executes operation that can cause {@link Exception}.
25 T runObject() throws Exception;
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
H A DServerHostKeyVerifier.java30 * @throws Exception Will be wrapped with an IOException, extended version of returning false =)
33 throws Exception;
/external/javassist/sample/evolve/
H A DCannotCreateException.java11 public CannotCreateException(Exception e) {
/external/javassist/src/main/javassist/tools/rmi/
H A DRemoteException.java27 public RemoteException(Exception e) {
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/lexer/
H A DLexerException.java6 public class LexerException extends Exception
/external/junit/src/org/junit/experimental/max/
H A DCouldNotReadCoreException.java6 public class CouldNotReadCoreException extends Exception {
/external/junit/src/org/junit/internal/runners/
H A DFailedBefore.java12 class FailedBefore extends Exception {
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DServiceException.java38 public final class ServiceException extends Exception {
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/heightmap/
H A DCombinerHeightMap.java83 int mode) throws Exception {
88 throw new Exception("Height map may not be null");
93 throw new Exception("The two maps must be of the same size");
98 throw new Exception("factor1 and factor2 must add to 1.0");
134 int mode) throws Exception {
139 throw new Exception("Height map may not be null");
144 throw new Exception("The two maps must be of the same size");
149 throw new Exception("factor1 and factor2 must add to 1.0");
178 public void setFactors(float factor1, float factor2) throws Exception {
180 throw new Exception("factor
[all...]
H A DHeightMap.java133 * @throws Exception
137 void setMagnificationFilter(float filter) throws Exception;
145 * @throws Exception
150 void setSize(int size) throws Exception;
/external/nist-pkits/src/libcore/java/security/cert/
H A DX509CertificateNistPkitsTest.java70 throws Exception {
85 throws Exception {
95 private final X509CRL getCRL(CertificateFactory f, String name) throws Exception {
109 private final X509CRL[] getCRLs(CertificateFactory f, String[] names) throws Exception {
119 private CertPath getTestPath(CertificateFactory f, String[] pathCerts) throws Exception {
125 String[] pathCerts, String[] pathCRLs) throws Exception {
148 throws Exception, NoSuchAlgorithmException, InvalidAlgorithmParameterException {
164 throws Exception, NoSuchAlgorithmException, CertPathValidatorException,
178 public void testSignatureVerification_ValidSignaturesTest1() throws Exception {
195 public void testSignatureVerification_InvalidCASignatureTest2() throws Exception {
[all...]
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
H A DException.pm1 package ANTLR::Runtime::Exception;
3 use Exception::Class;
7 extends 'Moose::Object', 'Exception::Class::Base';
/external/antlr/antlr-3.4/runtime/Python/unittests/
H A Dtestexceptions.py18 @testbase.broken("FIXME", Exception)
28 @testbase.broken("FIXME", Exception)
38 @testbase.broken("FIXME", Exception)
48 @testbase.broken("FIXME", Exception)
58 @testbase.broken("FIXME", Exception)
68 @testbase.broken("FIXME", Exception)
78 @testbase.broken("FIXME", Exception)
88 @testbase.broken("FIXME", Exception)
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
H A DFormatterClosedExceptionTest.java30 public void testSerializationSelf() throws Exception {
38 public void testSerializationCompatibility() throws Exception {
/external/chromium_org/tools/deep_memory_profiler/lib/
H A Dexceptions.py5 class EmptyDumpException(Exception):
10 class ParsingException(Exception):
/external/guava/guava-tests/test/com/google/common/util/concurrent/
H A DSettableFutureTest.java35 protected void setUp() throws Exception {
43 public void testDefaultState() throws Exception {
50 public void testSetValue() throws Exception {
55 public void testSetFailure() throws Exception {
56 assertTrue(future.setException(new Exception("failure")));
60 public void testSetFailureNull() throws Exception {
67 assertTrue(future.setException(new Exception("failure")));
71 public void testCancel() throws Exception {
/external/objenesis/main/test/org/objenesis/
H A DSerializingInstantiatorTest.java28 protected void setUp() throws Exception {
32 protected void tearDown() throws Exception {
/external/smack/src/org/jivesoftware/smack/compression/
H A DXMPPInputOutputStream.java30 public abstract InputStream getInputStream(InputStream inputStream) throws Exception;
32 public abstract OutputStream getOutputStream(OutputStream outputStream) throws Exception;

Completed in 642 milliseconds

1234567891011>>