HomeSort by relevance Sort by last modified time
    Searched refs:Exception (Results 1 - 25 of 4003) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/javasqlite/src/main/java/SQLite/
Exception.java 7 public class Exception extends java.lang.Exception {
10 * Construct a new SQLite exception.
15 public Exception(String string) {
Backup.java 19 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...]
Stmt.java 32 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...]
Vm.java 38 * } 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;
  /libcore/luni/src/main/java/java/security/
PrivilegedActionException.java 23 public class PrivilegedActionException extends Exception {
27 public PrivilegedActionException(Exception ex) {
31 public Exception getException() {
PrivilegedExceptionAction.java 24 T run() throws Exception;
  /external/clang/test/SemaTemplate/
instantiate-try-catch.cpp 19 struct Exception {
21 Exception(const Exception&); // expected-note{{declared private here}}
23 void exception() { function in class:PR10232::Templated
25 } catch(Exception e) { // expected-error{{calling a private constructor of class 'PR10232::Templated<int>::Exception'}}
30 template class Templated<int>; // expected-note{{in instantiation of member function 'PR10232::Templated<int>::exception' requested here}}
  /libcore/luni/src/main/java/java/lang/
AutoCloseable.java 44 void close() throws Exception;
Exception.java 22 * {@code Exception} is the superclass of all classes that represent recoverable
30 public class Exception extends Throwable {
34 * Constructs a new {@code Exception} that includes the current stack trace.
36 public Exception() {
40 * Constructs a new {@code Exception} with the current stack trace and the
44 * the detail message for this exception.
46 public Exception(String detailMessage) {
51 * Constructs a new {@code Exception} with the current stack trace, the
55 * the detail message for this exception.
57 * the cause of this exception
    [all...]
  /packages/apps/Camera/src/com/android/camera/
CameraDisabledException.java 23 public class CameraDisabledException extends Exception {
  /cts/tests/SignatureTest/tests/src/android/tests/sigtest/tests/data/
NormalException.java 19 import java.lang.Exception;
24 public class NormalException extends Exception {
  /external/apache-harmony/support/src/test/java/tests/support/
Support_Jetty.java 59 } 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 {
Support_Proxy_ParentException.java 20 public class Support_Proxy_ParentException extends Exception {
  /cts/tests/tests/holo/src/android/holo/cts/
HoloTest.java 34 public void testHolo() throws Exception {
38 public void testHoloDialog() throws Exception {
42 public void testHoloDialogMinimumWidth() throws Exception {
46 public void testHoloDialogNoActionBar() throws Exception {
50 public void testHoloDialogNoActionBarMinimumWidth() throws Exception {
54 public void testHoloDialogWhenLarge() throws Exception {
58 public void testHoloDialogWhenLargeNoActionBar() throws Exception {
62 public void testHoloInputMethod() throws Exception {
66 public void testHoloLight() throws Exception {
70 public void testHoloLightDarkActionBar() throws Exception {
    [all...]
  /external/javassist/sample/evolve/
CannotUpdateException.java 6 public class CannotUpdateException extends Exception {
11 public CannotUpdateException(Exception e) {
  /external/javassist/src/main/javassist/tools/reflect/
CannotCreateException.java 21 public class CannotCreateException extends Exception {
26 public CannotCreateException(Exception e) {
  /sdk/common/src/com/android/io/
StreamException.java 20 * Exception thrown when {@link IAbstractFile#getContents()} fails.
22 public class StreamException extends Exception {
25 public StreamException(Exception e) {
  /frameworks/opt/calendar/tests/src/com/android/calendarcommon/
RRuleTest.java 66 String golden) throws Exception {
71 String golden, String advanceTo, String tz) throws Exception {
86 * @throws Exception if anything goes wrong.
89 String golden, String advanceTo, String endAt, String tz) throws Exception {
145 public void testFrequencyLimits() throws Exception {
155 public void testSimpleDaily() throws Exception {
160 public void testSimpleWeekly() throws Exception {
165 public void testSimpleMonthly() throws Exception {
170 public void testSimpleYearly() throws Exception {
176 public void testMultipleByParts() throws Exception {
    [all...]
  /cts/tools/dasm/src/dasm/
DasmError.java 20 * Exception thrown if eny error detected while running Dasm.
22 public class DasmError extends Exception {
  /development/testrunner/
errors.py 18 """Defines common exception classes for this package."""
21 class MsgException(Exception):
22 """Generic exception with an optional string msg."""
27 class WaitForResponseTimedOutError(Exception):
31 class DeviceUnresponsiveError(Exception):
35 class InstrumentationError(Exception):
40 """Generic exception that indicates a fatal error has occurred and program
  /external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
WrappedRuntimeException.java 39 /** Primary checked exception.
41 private Exception m_exception;
45 * checked exception.
47 * @param e Primary checked exception
49 public WrappedRuntimeException(Exception e)
61 * @param msg Exception information.
62 * @param e Primary checked exception
64 public WrappedRuntimeException(String msg, Exception e)
73 * Get the checked exception that this runtime exception wraps
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/utils/
WrappedRuntimeException.java 32 /** Primary checked exception.
34 private Exception m_exception;
38 * checked exception.
40 * @param e Primary checked exception
42 public WrappedRuntimeException(Exception e)
54 * @param msg Exception information.
55 * @param e Primary checked exception
57 public WrappedRuntimeException(String msg, Exception e)
66 * Get the checked exception that this runtime exception wraps
    [all...]
  /external/proguard/src/proguard/
ParseException.java 25 * This <code>Exception</code> signals that a parse exception of some
30 public class ParseException extends Exception {
  /libcore/json/src/main/java/org/json/
JSONException.java 32 * <p>Although this is a checked exception, it is rarely recoverable. Most
33 * callers should simply wrap this exception in an unchecked exception and
44 public class JSONException extends Exception {
  /libcore/luni/src/main/java/java/security/acl/
AclNotFoundException.java 21 * The exception, that is thrown when a reference to a non-existent <i>Access
24 public class AclNotFoundException extends Exception {

Completed in 1725 milliseconds

1 2 3 4 5 6 7 8 91011>>