Searched defs:exception (Results 176 - 200 of 263) sorted by relevance

1234567891011

/external/qemu/target-arm/
H A Dcpu.h43 #define EXCP_EXCEPTION_EXIT 8 /* Return from v7M exception. */
165 int exception; member in struct:CPUARMState::__anon25894
197 * To avoid having to transfer exception bits around, we simply
198 * say that the FPSCR cumulative exception flags are the logical
200 * only thing which needs to read the exception flags being
302 | env->v7m.exception;
327 env->v7m.exception = val & 0x1ff;
529 privmode = !((env->v7m.exception == 0) && (env->v7m.control & 1));
/external/qemu/target-mips/
H A Dop_helper.c28 void helper_raise_exception_err (uint32_t exception, int error_code) argument
31 if (exception < 0x100)
32 qemu_log("%s: %d %d\n", __func__, exception, error_code);
34 env->exception_index = exception;
39 void helper_raise_exception (uint32_t exception) argument
41 helper_raise_exception_err(exception, 0);
1570 /* XXX: detect conflicting TLBs and raise a MCHECK exception when needed */
/external/v8/src/
H A Disolate.h534 // Interface to pending exception.
545 void set_pending_exception(MaybeObject* exception) { argument
546 thread_local_top_.pending_exception_ = exception;
594 bool is_catchable_by_javascript(MaybeObject* exception) { argument
595 return (exception != Failure::OutOfMemoryException()) &&
596 (exception != heap()->termination_exception());
640 // exceptions. If an exception was thrown and not handled by an external
641 // handler the exception is scheduled to be rethrown when we return to running
642 // JavaScript code. If an exception is scheduled true is returned.
649 // failures like OOM or termination exception
[all...]
H A Ddebug.cc348 // function twice might happen when stepping in a function with an exception
770 Handle<Object> exception = local
783 isolate->set_pending_exception(*exception);
1115 // If exception or non boolean result handle as not triggered
1306 // hitting a break point. In other situations (e.g. unhandled exception) the
1322 // in an unhandled exception.
2418 Handle<Object> exception,
2422 // Create the new exception event object.
2424 exception,
2475 void Debugger::OnException(Handle<Object> exception, boo argument
2417 MakeExceptionEvent(Handle<Object> exec_state, Handle<Object> exception, bool uncaught, bool* caught_exception) argument
[all...]
H A Dast.h2000 Expression* exception() const { return exception_; } function in class:v8::internal::Throw
2006 Throw(Isolate* isolate, Expression* exception, int pos) argument
2007 : Expression(isolate), exception_(exception), pos_(pos) {}
2570 // If a stack-overflow exception is encountered when visiting a
2931 Throw* NewThrow(Expression* exception, int pos) { argument
2932 Throw* t = new(zone_) Throw(isolate_, exception, pos);
H A Ddebug-debugger.js757 // Disable all exception breakpoints:
1073 function MakeExceptionEvent(exec_state, exception, uncaught) {
1074 return new ExceptionEvent(exec_state, exception, uncaught);
1078 function ExceptionEvent(exec_state, exception, uncaught) {
1080 this.exception_ = exception;
1095 ExceptionEvent.prototype.exception = function() {
1127 o.event = "exception";
1129 exception: MakeMirror(this.exception_)
1864 // Now set the exception break state:
H A Dparser.cc2663 Expression* exception = ParseExpression(true, CHECK_OK); local
2666 return factory()->NewExpressionStatement(factory()->NewThrow(exception, pos));
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.ecf_3.1.0.v20100529-0735.jar ... eclipse.ecf.core.security.ObjectCallback cb Exception e } org/eclipse/ecf/core/AbstractContainerAdapterFactory.class AbstractContainerAdapterFactory. ...
H A Dorg.eclipse.equinox.preferences_3.3.0.v20100503.jar ... osgi.framework.BundleContext) throws java.lang.Exception org.osgi.framework.BundleContext context boolean shouldRegister ...
H A Dorg.eclipse.core.filesystem_1.3.1.R36x_v20100727-0745.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.debug.core_3.6.0.v20100519.jar ... runnable public void handleException (java.lang.Throwable) Throwable exception org.eclipse.core.runtime.IStatus status ...
H A Dorg.eclipse.equinox.p2.repository_2.0.1.R36x_v20100823.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.core.variables_3.2.400.v20100505.jar ... StringVariableManager) public void handleException (java.lang.Throwable) Throwable exception org.eclipse.core.runtime.IStatus status ...
H A Dorg.eclipse.ecf.provider.filetransfer_3.1.0.v20100529-0735.jar ... eclipse.core.net.proxy.IProxyService getProxyService () Exception e NoClassDefFoundError e public static void logNoProxyWarning (java.lang ...
H A Dorg.eclipse.team.core_3.5.100.R36x_v20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.ecf.identity_3.1.0.v20100529-0735.jar ... java.lang.String) throws java.lang.Exception String algo String provider Exception e public java.lang ...
/external/chromium_org/content/renderer/pepper/
H A Dpepper_plugin_instance_impl.cc2173 PP_Var* exception) {
2178 TryCatch try_catch(exception);
2211 // a trusted API, just set to a general exception message.
2171 ExecuteScript(PP_Instance instance, PP_Var script, PP_Var* exception) argument
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLMediaElement.cpp155 static void throwExceptionForMediaKeyException(MediaPlayer::MediaKeyException exception, ExceptionState& exceptionState) argument
157 switch (exception) {
1809 // 1 - If the media element's readyState is HAVE_NOTHING, then raise an InvalidStateError exception.
2542 // 1. If kind is not one of the following strings, then throw a SyntaxError exception and abort these steps
/external/chromium_org/v8/src/
H A Ddebug.cc366 // function twice might happen when stepping in a function with an exception
809 Handle<Object> exception = local
825 if (!exception.is_null()) {
826 isolate->set_pending_exception(*exception);
1164 // If exception or non boolean result handle as not triggered
1400 // hitting a break point. In other situations (e.g. unhandled exception) the
1419 // in an unhandled exception.
2690 Handle<Object> exception,
2694 // Create the new exception event object.
2696 exception,
2689 MakeExceptionEvent(Handle<Object> exec_state, Handle<Object> exception, bool uncaught, bool* caught_exception) argument
2747 OnException(Handle<Object> exception, bool uncaught) argument
[all...]
H A Ddebug-debugger.js773 // Disable all exception breakpoints:
1096 function MakeExceptionEvent(exec_state, exception, uncaught) {
1097 return new ExceptionEvent(exec_state, exception, uncaught);
1101 function ExceptionEvent(exec_state, exception, uncaught) {
1103 this.exception_ = exception;
1118 ExceptionEvent.prototype.exception = function() {
1150 o.event = "exception";
1152 exception: MakeMirror(this.exception_)
1871 // Now set the exception break state:
2045 // Returns raw value or throws exception
[all...]
H A Dparser.cc2436 Expression* exception = ParseExpression(true, CHECK_OK); local
2440 factory()->NewThrow(exception, pos), pos);
/external/qemu/android/config/linux-x86/linux/
H A Dkvm.h135 __u32 exception; member in struct:kvm_run::__anon24982::__anon24985
/external/qemu/android/config/linux-x86_64/linux/
H A Dkvm.h135 __u32 exception; member in struct:kvm_run::__anon25004::__anon25007
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
H A Djdimodel.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Djdi.jar ... sun.jdi.AbsentInformationException extends java.lang.Exception { private static final long serialVersionUID public void " href="/4.4 ...

Completed in 739 milliseconds

1234567891011