HomeSort by relevance Sort by last modified time
    Searched refs:exception (Results 1101 - 1125 of 4445) sorted by null

<<41424344454647484950>>

  /external/libgdx/backends/gdx-backend-jglfw/src/com/badlogic/gdx/backends/jglfw/
JglfwApplication.java 89 exception(ex);
99 /** Called when an uncaught exception happens in the game loop. Default implementation prints the exception and calls
101 protected void exception (Throwable ex) { method in class:JglfwApplication
380 public void debug (String tag, String message, Throwable exception) {
383 exception.printStackTrace(System.out);
393 public void log (String tag, String message, Throwable exception) {
396 exception.printStackTrace(System.out);
406 public void error (String tag, String message, Throwable exception) {
409 exception.printStackTrace(System.err)
    [all...]
  /external/llvm/bindings/ocaml/linker/
llvm_linker.mli 15 exception Error of string
  /external/mockito/src/org/mockito/internal/handler/
InvocationNotifierHandler.java 58 private void notifyMethodCallException(Invocation invocation, Throwable exception) {
61 listener.reportInvocation(new NotifiedMethodInvocationReport(invocation, exception));
  /external/nanohttpd/websocket/src/main/java/fi/iki/elonen/samples/echo/
DebugWebSocketServer.java 104 protected void onException(IOException exception) {
105 DebugWebSocketServer.LOG.log(Level.SEVERE, "exception occured", exception);
  /external/objenesis/tck/test/org/objenesis/tck/
TCKTest.java 147 public void exception(Exception exception) { method in class:TCKTest.RecordingReporter
148 log.append("exception()\n");
  /external/opencv3/modules/java/src/
calib3d.cpp 22 /// throw java exception
23 static void throwJavaException(JNIEnv *env, const std::exception *e, const char *method) {
24 std::string what = "unknown exception";
28 std::string exception_type = "std::exception";
30 if(dynamic_cast<const cv::Exception*>(e)) {
31 exception_type = "cv::Exception";
38 if(!je) je = env->FindClass("java/lang/Exception");
64 } catch(const std::exception &e) {
89 } catch(const std::exception &e) {
114 } catch(const std::exception &e)
    [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...]
  /external/testng/src/main/java/org/testng/internal/
ExpectedExceptionsHolder.java 44 * @param ite The exception that was just thrown
45 * @return true if the exception that was just thrown is part of the
53 // TestException is the wrapper exception that TestNG will be throwing when an exception was
61 for (Class<?> exception : expectedClasses) {
62 if (exception.isAssignableFrom(realExceptionClass) && holder.isThrowableMatching(ite)) {
76 return new TestException("Expected exception of " +
88 return new TestException("Method " + testMethod + " should have thrown an exception of "
  /external/v8/test/mjsunit/regress/
regress-1132.js 28 // Test the case when exception is thrown from the parser when lazy
44 var exception = false; variable
48 exception = true;
50 assertTrue(exception);
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/base/
InputStreamSource.java 76 } catch (IOException exception) {
78 "InputStreamSource: Could not read stream: " + exception.getMessage() + "!");
  /libcore/luni/src/main/native/
java_util_regex_Pattern.cpp 66 jobject exception = env->NewObject(exceptionClass, method, message, pattern, error.offset); local
67 env->Throw(reinterpret_cast<jthrowable>(exception));
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/x86_64-linux/32/bits/
stdc++.h 17 // permissions described in the GCC Runtime Library Exception, version
21 // a copy of the GCC Runtime Library Exception along with this program;
68 #include <exception>
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/x86_64-linux/bits/
stdc++.h 17 // permissions described in the GCC Runtime Library Exception, version
21 // a copy of the GCC Runtime Library Exception along with this program;
68 #include <exception>
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/x86_64-linux/32/bits/
stdc++.h 17 // permissions described in the GCC Runtime Library Exception, version
21 // a copy of the GCC Runtime Library Exception along with this program;
68 #include <exception>
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/x86_64-linux/bits/
stdc++.h 17 // permissions described in the GCC Runtime Library Exception, version
21 // a copy of the GCC Runtime Library Exception along with this program;
68 #include <exception>
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/x86_64-w64-mingw32/32/bits/
stdc++.h 17 // permissions described in the GCC Runtime Library Exception, version
21 // a copy of the GCC Runtime Library Exception along with this program;
68 #include <exception>
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/x86_64-w64-mingw32/bits/
stdc++.h 17 // permissions described in the GCC Runtime Library Exception, version
21 // a copy of the GCC Runtime Library Exception along with this program;
68 #include <exception>
  /prebuilts/misc/common/swig/include/2.0.11/d/
std_vector.i 26 %typemap(dimports) std::vector< CTYPE > "static import tango.core.Exception;"
41 throw new tango.core.Exception.NoSuchElementException("Tried to assign to element out of vector bounds.");
49 throw new tango.core.Exception.NoSuchElementException("Tried to read from element out of vector bounds.");
98 throw new tango.core.Exception.IllegalArgumentException("Tried to make the capacity of a vector smaller than its size.");
153 // Wrappers for setting/getting items with the possibly thrown exception
184 static import std.exception;
220 std.exception.enforce(!empty);
225 std.exception.enforce(!empty);
230 std.exception.enforce(!empty);
236 std.exception.enforce(i < _b && _b <= _outer.length)
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/ocaml/
ocaml.i 48 %include <exception.i>
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/libs/arm64-v8a/include/bits/
stdc++.h 17 // permissions described in the GCC Runtime Library Exception, version
21 // a copy of the GCC Runtime Library Exception along with this program;
68 #include <exception>
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/libs/armeabi/include/bits/
stdc++.h 17 // permissions described in the GCC Runtime Library Exception, version
21 // a copy of the GCC Runtime Library Exception along with this program;
68 #include <exception>
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/libs/armeabi-v7a/include/bits/
stdc++.h 17 // permissions described in the GCC Runtime Library Exception, version
21 // a copy of the GCC Runtime Library Exception along with this program;
68 #include <exception>
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/libs/mips/include/bits/
stdc++.h 17 // permissions described in the GCC Runtime Library Exception, version
21 // a copy of the GCC Runtime Library Exception along with this program;
68 #include <exception>
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/libs/mips32r6/include/bits/
stdc++.h 17 // permissions described in the GCC Runtime Library Exception, version
21 // a copy of the GCC Runtime Library Exception along with this program;
68 #include <exception>
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/libs/mips64/include/bits/
stdc++.h 17 // permissions described in the GCC Runtime Library Exception, version
21 // a copy of the GCC Runtime Library Exception along with this program;
68 #include <exception>

Completed in 2225 milliseconds

<<41424344454647484950>>