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

1 2 3 4 5 6 7 8 91011>>

  /art/test/111-unresolvable-exception/src/
TestException.java 17 public class TestException extends Exception {
  /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;
  /external/autotest/venv/skylab_staging/
errors.py 5 """errors contains common exception types raised from this package."""
7 class TestPushError(Exception):
8 """Exception raised when one of the TestPush condition fails."""
  /external/grpc-grpc/src/python/grpcio/grpc/framework/foundation/
abandonment.py 17 class Abandoned(Exception):
21 an exception indicating some operational or programming defect.
  /external/smali/smalidea/src/test/java/org/jf/smalidea/
ParserTest.java 44 public void testEmpty() throws Exception { doTest(true); }
45 public void testFieldAnnotations() throws Exception { doTest(true); }
46 public void testInvalidAnnotation() throws Exception { doTest(true); }
47 public void testInvalidClassDirective() throws Exception { doTest(true); }
48 public void testInvalidClassDirective2() throws Exception { doTest(true); }
49 public void testInvalidClassDirective3() throws Exception { doTest(true); }
50 public void testInvalidEnumLiteral() throws Exception { doTest(true); }
51 public void testInvalidField() throws Exception { doTest(true); }
52 public void testInvalidField2() throws Exception { doTest(true); }
53 public void testInvalidField3() throws Exception { doTest(true);
    [all...]
  /cts/tests/tests/mediastress/src/android/mediastress/cts/
H264R720pAacShortPlayerTest.java 37 public void testPlay00() throws Exception {
41 public void testPlay01() throws Exception {
45 public void testPlay02() throws Exception {
49 public void testPlay03() throws Exception {
53 public void testPlay04() throws Exception {
57 public void testPlay05() throws Exception {
61 public void testPlay06() throws Exception {
65 public void testPlay07() throws Exception {
69 public void testPlay08() throws Exception {
73 public void testPlay09() throws Exception {
    [all...]
H264R480pAacShortPlayerTest.java 36 public void testPlay00() throws Exception {
40 public void testPlay01() throws Exception {
44 public void testPlay02() throws Exception {
48 public void testPlay03() throws Exception {
52 public void testPlay04() throws Exception {
56 public void testPlay05() throws Exception {
60 public void testPlay06() throws Exception {
64 public void testPlay07() throws Exception {
68 public void testPlay08() throws Exception {
72 public void testPlay09() throws Exception {
    [all...]
H264R480x360AacShortPlayerTest.java 36 public void testPlay00() throws Exception {
40 public void testPlay01() throws Exception {
44 public void testPlay02() throws Exception {
48 public void testPlay03() throws Exception {
52 public void testPlay04() throws Exception {
56 public void testPlay05() throws Exception {
60 public void testPlay06() throws Exception {
64 public void testPlay07() throws Exception {
68 public void testPlay08() throws Exception {
72 public void testPlay09() throws Exception {
    [all...]
Vp8R480x360ShortPlayerTest.java 36 public void testPlay00() throws Exception {
40 public void testPlay01() throws Exception {
44 public void testPlay02() throws Exception {
48 public void testPlay03() throws Exception {
52 public void testPlay04() throws Exception {
56 public void testPlay05() throws Exception {
60 public void testPlay06() throws Exception {
64 public void testPlay07() throws Exception {
68 public void testPlay08() throws Exception {
72 public void testPlay09() throws Exception {
    [all...]
H263QcifShortPlayerTest.java 48 public void testPlay00() throws Exception {
52 public void testPlay01() throws Exception {
56 public void testPlay02() throws Exception {
60 public void testPlay03() throws Exception {
64 public void testPlay04() throws Exception {
68 public void testPlay05() throws Exception {
72 public void testPlay06() throws Exception {
76 public void testPlay07() throws Exception {
80 public void testPlay08() throws Exception {
84 public void testPlay09() throws Exception {
    [all...]
HEVCR720pAacShortPlayerTest.java 33 public void testPlay00() throws Exception {
37 public void testPlay01() throws Exception {
41 public void testPlay02() throws Exception {
45 public void testPlay03() throws Exception {
49 public void testPlay04() throws Exception {
53 public void testPlay05() throws Exception {
57 public void testPlay06() throws Exception {
61 public void testPlay07() throws Exception {
65 public void testPlay08() throws Exception {
HEVCR480pAacShortPlayerTest.java 30 public void testPlay00() throws Exception {
34 public void testPlay01() throws Exception {
38 public void testPlay02() throws Exception {
42 public void testPlay03() throws Exception {
46 public void testPlay04() throws Exception {
50 public void testPlay05() throws Exception {
  /art/test/1940-ddms-ext/src/art/
Test1940.java 20 public static void 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}}
  /external/kmod/libkmod/python/kmod/
error.py 17 class KmodError (Exception):
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
throw_exception.hpp 23 template <typename Exception>
24 void throw_exception(const Exception& e);
30 template <typename Exception>
31 void throw_exception(const Exception& e)
  /external/yapf/yapf/yapflib/
errors.py 17 class YapfError(Exception):
  /art/test/137-cfi/src-multidex/
Base.java 18 public void $noinline$runTest() throws Exception {
19 // Conditionally throw exception to prevent the compiler from inlining the code.
21 throw new Exception("Who is calling?");
  /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 {
  /external/sfntly/cpp/src/sfntly/port/
exception_type.h 24 #include <exception>
30 class Exception : public std::exception {
32 Exception() : what_("Unknown exception") {}
33 explicit Exception(const char* message) throw() { SetMessage(message); }
34 virtual ~Exception() throw() {}
48 class IndexOutOfBoundException : public Exception {
50 IndexOutOfBoundException() throw() : Exception("Index out of bound") {}
52 : Exception(message) {
    [all...]
  /cts/hostsidetests/devicepolicy/src/com/android/cts/devicepolicy/
DeviceAdminHostSideTestApi29.java 31 public void testRunDeviceAdminTest() throws Exception {
42 public void testResetPassword_nycRestrictions() throws Exception {
51 public void testRunDeviceOwnerPasswordTest() throws Exception {
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/CommonDataClass/
Exceptions.py 14 class EvaluationException(Exception):
20 class WrnExpression(Exception):
24 class MacroException(Exception):

Completed in 1694 milliseconds

1 2 3 4 5 6 7 8 91011>>