Searched refs:Exception (Results 1 - 25 of 2741) sorted by relevance

1234567891011>>

/external/chromium_org/tools/telemetry/unittest_data/discoverable_classes/
H A Ddiscover_dummyclass.py7 class DummyException(Exception):
/external/chromium_org/tools/telemetry/telemetry/core/
H A Dexceptions.py4 class BrowserGoneException(Exception):
13 class TabCrashException(Exception):
19 class LoginException(Exception):
22 class EvaluateException(Exception):
25 class ProfilingException(Exception):
/external/javasqlite/src/main/java/SQLite/
H A DException.java7 public class Exception extends java.lang.Exception { class in inherits:java.lang.Exception
15 public Exception(String string) { method in class:Exception
H A DBackup.java19 protected void finish() throws SQLite.Exception {
33 } catch (SQLite.Exception e) {
38 protected native void _finalize() throws SQLite.Exception;
47 public boolean step(int n) throws SQLite.Exception {
53 private native boolean _step(int n) throws SQLite.Exception;
59 public void backup() throws SQLite.Exception {
69 public int remaining() throws SQLite.Exception {
75 private native int _remaining() throws SQLite.Exception;
81 public int pagecount() throws SQLite.Exception {
87 private native int _pagecount() throws SQLite.Exception;
[all...]
H A DStmt.java32 public native boolean prepare() throws SQLite.Exception;
60 * } catch (SQLite.Exception e) {
69 public native boolean step() throws SQLite.Exception;
75 public native void close() throws SQLite.Exception;
82 public native void reset() throws SQLite.Exception;
88 public native void clear_bindings() throws SQLite.Exception;
96 public native void bind(int pos, int value) throws SQLite.Exception;
104 public native void bind(int pos, long value) throws SQLite.Exception;
112 public native void bind(int pos, double value) throws SQLite.Exception;
120 public native void bind(int pos, byte[] value) throws SQLite.Exception;
[all...]
H A DVm.java38 * } catch (SQLite.Exception e) {
47 public native boolean step(Callback cb) throws SQLite.Exception;
55 public native boolean compile() throws SQLite.Exception;
61 public native void stop() throws SQLite.Exception;
/external/chromium_org/third_party/android_testrunner/
H A Derrors.py21 class MsgException(Exception):
27 class WaitForResponseTimedOutError(Exception):
31 class DeviceUnresponsiveError(Exception):
35 class InstrumentationError(Exception):
/external/clang/test/SemaTemplate/
H A Dinstantiate-try-catch.cpp19 struct Exception { struct in class:PR10232::Templated
21 Exception(const Exception&); // expected-note{{declared private here}}
25 } catch(Exception e) { // expected-error{{calling a private constructor of class 'PR10232::Templated<int>::Exception'}}
/external/jmonkeyengine/engine/src/desktop/jme3tools/navigation/
H A DInvalidPositionException.java12 public class InvalidPositionException extends Exception{
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_Jetty.java59 } catch (Exception e) {
98 public static int startDefaultHttpServer() throws Exception{
114 public static int startDefaultServlet() throws Exception{
129 public static int startHttpServerWithDocRoot(String root) throws Exception {
146 private static void stopDefaultServer() throws Exception {
155 private static void stopServer() throws Exception {
164 private static void stopDefaultServlet() throws Exception {
H A DSupport_Proxy_ParentException.java20 public class Support_Proxy_ParentException extends Exception {
/external/javassist/sample/evolve/
H A DCannotUpdateException.java6 public class CannotUpdateException extends Exception {
11 public CannotUpdateException(Exception e) {
/external/javassist/src/main/javassist/tools/reflect/
H A DCannotCreateException.java21 public class CannotCreateException extends Exception {
26 public CannotCreateException(Exception e) {
/external/smack/src/org/jivesoftware/smack/
H A DConnectionListener.java47 public void connectionClosedOnError(Exception e);
68 public void reconnectionFailed(Exception e);
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
H A DInvalidInputException.java30 public class InvalidInputException extends Exception {
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
H A DEarlyExitException.pm6 use base qw( ANTLR::Runtime::Exception );
/external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
H A DWrappedRuntimeException.java41 private Exception m_exception;
49 public WrappedRuntimeException(Exception e)
61 * @param msg Exception information.
64 public WrappedRuntimeException(String msg, Exception e)
77 public Exception getException()
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DWrappedRuntimeException.java34 private Exception m_exception;
42 public WrappedRuntimeException(Exception e)
54 * @param msg Exception information.
57 public WrappedRuntimeException(String msg, Exception e)
70 public Exception getException()
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
H A DCMSException.java4 extends Exception
6 Exception e;
16 Exception e)
23 public Exception getUnderlyingException()
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/transport/
H A DNegotiateException.java13 public class NegotiateException extends Exception
/external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/
H A DCallable.java25 V call() throws Exception;
/external/junit/src/org/junit/runner/manipulation/
H A DNoTestsRemainException.java6 public class NoTestsRemainException extends Exception {
/external/proguard/src/proguard/
H A DParseException.java25 * This <code>Exception</code> signals that a parse exception of some
30 public class ParseException extends Exception {
/external/clang/test/SemaCXX/
H A D__try.cpp17 class Exception class
20 Exception(const char* s = "Unknown"){what = strdup(s); } function in class:Exception
21 Exception(const Exception& e ){what = strdup(e.what); } function in class:Exception
22 ~Exception() {free(what); }
46 throw(Exception("Hardware error: Divide by 0"));
49 catch(const Exception& e)
51 printf("Caught C++ Exception: %s :\n", e.msg());
/external/sfntly/cpp/src/sfntly/port/
H A Dexception_type.h30 class Exception : public std::exception { class in namespace:sfntly
32 Exception() : what_("Unknown exception") {} function in class:sfntly::Exception
33 explicit Exception(const char* message) throw() { SetMessage(message); } function in class:sfntly::Exception
34 virtual ~Exception() throw() {}
48 class IndexOutOfBoundException : public Exception {
50 IndexOutOfBoundException() throw() : Exception("Index out of bound") {}
52 : Exception(message) {}
65 class IOException : public Exception {
67 IOException() throw() : Exception("I/O exception") {}
68 explicit IOException(const char* message) throw() : Exception(messag
[all...]

Completed in 570 milliseconds

1234567891011>>