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

1 2 3 4 5 6 78 91011>>

  /ndk/tests/device/test-stlport_shared-exception/jni/
elide2.cpp 9 #include <exception>
spec4.cpp 2 // Testing exception specifications.
6 #include <exception>
terminate1.cpp 2 // Test that an exception thrown out of the constructor for the exception
4 // but before the exception is caught") causes us to call terminate.
6 #include <exception>
  /ndk/tests/device/test-stlport_static-exception/jni/
eh25.cpp 4 #include <exception>
eh48.cpp 4 #include <exception>
eh50.cpp 4 #include <exception>
eh51.cpp 4 #include <exception>
elide2.cpp 9 #include <exception>
spec4.cpp 2 // Testing exception specifications.
6 #include <exception>
terminate1.cpp 2 // Test that an exception thrown out of the constructor for the exception
4 // but before the exception is caught") causes us to call terminate.
6 #include <exception>
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/
SyntaxTreeBuilder.java 115 } catch (IOException exception) {
116 throw new JSilverIOException(exception);
117 } catch (ParserException exception) {
118 throw new JSilverBadSyntaxException(exception.getMessage(), exception.getToken().getText(),
119 templateName, exception.getToken().getLine(), exception.getToken().getPos(), exception); local
120 } catch (LexerException exception) {
121 throw new JSilverBadSyntaxException(exception.getMessage(), null, templateName
123 exception); local
    [all...]
  /external/libcxx/test/depr/exception.unexpected/unexpected/
Android.mk 17 test_makefile := external/libcxx/test/depr/exception.unexpected/unexpected/Android.mk
19 test_name := depr/exception.unexpected/unexpected/unexpected
  /external/libcxx/test/depr/exception.unexpected/unexpected.handler/
Android.mk 17 test_makefile := external/libcxx/test/depr/exception.unexpected/unexpected.handler/Android.mk
19 test_name := depr/exception.unexpected/unexpected.handler/unexpected_handler
  /external/libcxx/test/language.support/support.exception/
Android.mk 17 test_makefile := external/libcxx/test/language.support/support.exception/Android.mk
19 test_name := language.support/support.exception/version
  /external/libcxx/test/language.support/support.exception/uncaught/
Android.mk 17 test_makefile := external/libcxx/test/language.support/support.exception/uncaught/Android.mk
19 test_name := language.support/support.exception/uncaught/uncaught_exception
  /external/libcxx/test/thread/thread.req/thread.req.exception/
Android.mk 17 test_makefile := external/libcxx/test/thread/thread.req/thread.req.exception/Android.mk
19 test_name := thread/thread.req/thread.req.exception/nothing_to_do
  /prebuilts/misc/common/swig/include/2.0.11/r/
exception.i 1 %include <typemaps/exception.swg>
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
GrammarSyntaxMessage.java 41 public RecognitionException exception; field in class:GrammarSyntaxMessage
46 RecognitionException exception)
48 this(msgID,grammar,offendingToken,null,exception);
55 RecognitionException exception)
59 this.exception = exception;
  /external/apache-http/src/org/apache/http/impl/client/
DefaultHttpRequestRetryHandler.java 79 final IOException exception,
82 if (exception == null) {
83 throw new IllegalArgumentException("Exception parameter may not be null");
92 if (exception instanceof NoHttpResponseException) {
96 if (exception instanceof InterruptedIOException) {
100 if (exception instanceof UnknownHostException) {
104 if (exception instanceof SSLHandshakeException) {
105 // SSL handshake exception
  /external/junit/src/junit/framework/
TestCase.java 128 * @throws Throwable if any exception is thrown
131 Throwable exception= null; local
136 exception= running;
142 if (exception == null) exception= tearingDown;
145 if (exception != null) throw exception;
149 * @throws Throwable if any exception is thrown
183 protected void setUp() throws Exception {
189 protected void tearDown() throws Exception {
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/
throw_exception.hpp 29 #include <boost/exception/detail/attribute_noreturn.hpp>
32 #include <exception>
43 # include <boost/exception/exception.hpp>
54 void throw_exception( std::exception const & e ); // user defined
58 inline void throw_exception_assert_compatibility( std::exception const & ) { }
62 //All boost exceptions are required to derive from std::exception,
  /prebuilts/misc/common/swig/include/2.0.11/csharp/
std_except.i 5 * used when methods are declared with an STL exception specification, such as
15 %ignore exception;
16 struct exception {};
21 %typemap(throws, canthrow=1) std::exception "SWIG_CSharpSetPendingException(SWIG_CSharpApplicationException, $1.what());\n return $null;"
  /prebuilts/misc/common/swig/include/2.0.11/d/
std_except.i 5 * used when methods are declared with an STL exception specification, such as
15 %ignore exception;
16 struct exception {};
21 %typemap(throws, canthrow=1) std::exception "SWIG_DSetPendingException(SWIG_DException, $1.what());\n return $null;"
  /prebuilts/misc/common/swig/include/2.0.11/java/
std_except.i 5 * These typemaps are used when methods are declared with an STL exception specification, such as
15 %ignore exception;
16 struct exception {};
21 %typemap(throws) std::exception "SWIG_JavaThrowException(jenv, SWIG_JavaRuntimeException, $1.what());\n return $null;"
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8ThrowException.cpp 54 // FIXME: Handle other WebIDL exception types.
59 v8::Handle<v8::Value> exception = toV8(domException, creationContext, isolate); local
61 if (exception.IsEmpty())
65 v8::Handle<v8::Value> error = v8::Exception::Error(v8String(isolate, domException->message()));
67 ASSERT(exception->IsObject());
68 exception->ToObject()->SetAccessor(v8AtomicString(isolate, "stack"), domExceptionStackGetter, domExceptionStackSetter, error);
70 return exception;
76 v8::Handle<v8::Value> exception = createDOMException(ec, sanitizedMessage, unsanitizedMessage, creationContext, isolate); local
77 if (exception.IsEmpty())
80 return V8ThrowException::throwError(exception, isolate)
104 v8::Handle<v8::Value> exception = V8ThrowException::createError(type, message, isolate); local
117 v8::Handle<v8::Value> exception = V8ThrowException::createTypeError(message, isolate); local
    [all...]

Completed in 859 milliseconds

1 2 3 4 5 6 78 91011>>