HomeSort by relevance Sort by last modified time
    Searched refs:exception (Results 701 - 725 of 2577) sorted by null

<<21222324252627282930>>

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/diagnostics/std.exceptions/logic.error/
logic_error.pass.cpp 20 static_assert((std::is_base_of<std::exception, std::logic_error>::value),
21 "std::is_base_of<std::exception, std::logic_error>::value");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/diagnostics/std.exceptions/runtime.error/
runtime_error.pass.cpp 20 static_assert((std::is_base_of<std::exception, std::runtime_error>::value),
21 "std::is_base_of<std::exception, std::runtime_error>::value");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.exception/except.nested/
rethrow_if_nested.pass.cpp 10 // <exception>
16 #include <exception>
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.iterators/
db_iterators_5.pass.cpp 21 #include <exception>
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/runtime/
validation.hpp 42 : public std::exception
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
aether-spi-0.9.0.M2.jar 
  /prebuilts/misc/common/swig/include/2.0.11/typemaps/
exception.swg 4 * This SWIG library file provides language independent exception handling
39 You can use the SWIG_CATCH_STDEXCEPT macro with the %exception
42 %exception {
49 SWIG_CATCH_STDEXCEPT // catch std::exception
51 SWIG_exception_fail(SWIG_UnknownError, "Unknown exception");
59 /* catching std::exception */
72 } catch (std::exception& e) {
77 catch (std::exception& e) {
81 SWIG_exception_fail(SWIG_UnknownError, "unknown exception");
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassType/
NewInstanceTest.java 52 * constructor of which should not throw any Exception, and checks,
54 * exception object is null;
56 * constructor of which should throw some Exception, and checks,
57 * that returned new object is null and returned exception object
162 // Make NewInstance without Exception
172 logWriter.println(" Send ClassType.NewInstance (without Exception)");
179 TaggedObject exception = reply.getNextValueAsTaggedObject(); local
180 logWriter.println(" ClassType.NewInstance: exception.tag="
181 + exception.tag + "; exception.objectID=" + exception.objectID)
    [all...]
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
Parser.pm 32 my $exception = $arg_ref->{exception};
TokenSource.pm 31 throw an exception not under RecognitionException and Java will naturally
33 lexing then you should not throw an exception to the parser--it has already
  /external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-java/
HelloLicenseServlet.java 100 } catch (Exception exception) {
102 output.printf("Oops! <strong>%s</strong>", exception.getMessage());
  /external/chromium_org/content/renderer/pepper/
npapi_glue.h 78 // Convenience object for converting a PPAPI call that can throw an exception
82 // Normal usage is that you will pass the result of exception() to the
83 // PPAPI function as the exception output parameter. Then you will either
87 // Both SetResult and CheckExceptionForNoResult will throw an exception to
88 // the JavaScript library if the plugin reported an exception. SetResult
93 // The object_var parameter is the object to associate any exception with.
99 // call CheckExceptionForNoResult to do the exception checking with no result
105 // Returns true if an exception has been set.
108 // Returns a pointer to the exception. You would pass this to the PPAPI
109 // function as the exception parameter. If it is set to non-void, this objec
111 PP_Var* exception() { return &exception_; } function in class:content::PPResultAndExceptionToNPResult
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DOMException.idl 32 ] exception DOMException {
  /external/chromium_org/third_party/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/chromium_org/tools/deep_memory_profiler/visualizer/
template.py 72 except OSError, exception:
73 print >> sys.stderr, 'xdg-open failed:', exception
  /external/chromium_org/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);
  /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/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/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/smack/src/org/jivesoftware/smack/
ReconnectionManager.java 164 * @param exception the exception that occured.
166 protected void notifyReconnectionFailed(Exception exception) {
169 listener.reconnectionFailed(exception);
191 public void connectionClosedOnError(Exception e) {
216 public void reconnectionFailed(Exception e) {
  /external/stlport/test/eh/
locale.cpp 1 #include <exception>
51 catch(exception &e)
53 cout<<"Exception fired:\n"<<e.what()<<'\n';
57 cout<<"Unknown exception throwed!\n";
  /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 70 jobject exception = env->NewObject(exceptionClass, method, message, pattern, error.offset); local
71 env->Throw(reinterpret_cast<jthrowable>(exception));
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/x86_64-linux/include/c++/4.6/x86_64-linux/32/bits/
stdc++.h 18 // permissions described in the GCC Runtime Library Exception, version
22 // a copy of the GCC Runtime Library Exception along with this program;
68 #include <exception>

Completed in 2197 milliseconds

<<21222324252627282930>>