HomeSort by relevance Sort by last modified time
    Searched refs:Exception (Results 1 - 25 of 18031) 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...]
  /system/update_engine/scripts/update_payload/
error.py 8 class PayloadError(Exception):
  /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...]
  /tools/tradefederation/core/atest/
atest_error.py 20 class UnsupportedModuleTestError(Exception):
23 class TestDiscoveryException(Exception):
24 """Base Exception for issues with test discovery."""
32 class MissingPackageNameError(Exception):
35 class TooManyMethodsError(Exception):
38 class MethodWithoutClassError(Exception):
41 class UnknownTestRunnerError(Exception):
44 class NoTestRunnerName(Exception):
47 class NoTestRunnerExecutable(Exception):
50 class HostEnvCheckFailed(Exception)
    [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...]
  /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)
  /frameworks/base/core/tests/hosttests/test-apps/MultiDexLegacyAndException/src/com/android/multidexlegacyandexception/
SuperExceptionInMainDex.java 19 public class SuperExceptionInMainDex extends Exception {
SuperExceptionInSecondaryDex.java 19 public class SuperExceptionInSecondaryDex extends Exception {
  /libcore/ojluni/src/main/java/java/lang/
AutoCloseable.java 8 * particular file as subject to the "Classpath" exception as provided
58 * Exception}, implementers are <em>strongly</em> encouraged to
60 * throw more specific exceptions, or to throw no exception at all
66 * resource as closed, prior to throwing the exception. The {@code
76 * This exception interacts with a thread's interrupted status,
82 * exception to be suppressed, the {@code AutoCloseable.close}
95 * @throws Exception if this resource cannot be closed
97 void close() throws Exception;
  /packages/apps/Camera2/src/com/android/camera/
CameraDisabledException.java 23 public class CameraDisabledException extends Exception {
  /packages/apps/LegacyCamera/src/com/android/camera/
CameraDisabledException.java 23 public class CameraDisabledException extends Exception {
  /cts/tests/signature/tests/src/android/signature/cts/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 {
  /cts/hostsidetests/appsecurity/src/android/appsecurity/cts/
ScopedDirectoryAccessTest.java 27 public void testInvalidPath() throws Exception {
31 public void testUserRejects() throws Exception {
35 public void testUserAccepts() throws Exception {
39 public void testUserAcceptsNewDirectory() throws Exception {
44 public void testNotAskedAgain() throws Exception {
48 public void testDeniesOnceForAllClearedWhenPackageRemoved() throws Exception {
56 public void testDeniesOnceButAllowsAskingAgain() throws Exception {
61 public void testDeniesOnceForAll() throws Exception {
65 public void testResetDoNotAskAgain() throws Exception {
69 public void testResetGranted() throws Exception {
    [all...]
  /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...]

Completed in 329 milliseconds

1 2 3 4 5 6 7 8 91011>>