Searched refs:exception (Results 276 - 300 of 673) sorted by relevance

<<11121314151617181920>>

/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3cyclicdfa.c57 // we want the exception to be raised.
66 rec->state->exception->type = ANTLR3_NO_VIABLE_ALT_EXCEPTION;
67 rec->state->exception->message = cdfa->description;
68 rec->state->exception->decisionNum = cdfa->decisionNumber;
69 rec->state->exception->state = s;
76 * an exception upon error.
105 // If the predicate/rule raised an exception then we leave it
H A Dantlr3exception.c3 * otherwise handling ANTLR3 standard exception structures.
42 * Creates a new ANTLR3 exception structure
44 * \param[in] exception
52 * ANTLR3_FREE() when the exception is destroyed.
55 * Pointer to newly initialized exception structure, or an ANTLR3_ERR_xx defined value
58 * An exception is 'thrown' by a recognizer when input is seen that is not predicted by
62 * the list and the one currently installed is pointed to by the newly installed exception.
65 * After an exception is created, you may add a pointer to your own structure and a pointer
66 * to a function to free this structure when the exception is destroyed.
72 antlr3ExceptionNew(ANTLR3_UINT32 exception, voi argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/exception/
H A DExtCertPathValidatorException.java1 package org.bouncycastle.jce.exception;
/external/emma/core/java12/com/vladium/emma/
H A DEMMAException.java11 import com.vladium.util.exception.AbstractException;
23 * Constructs an exception with null message and null cause.
30 * Constructs an exception with given error message/code and null cause.
40 * Constructs an exception with given error message/code and null cause.
53 * Constructs an exception with null error message/code and given cause.
55 * @param cause the cause [nested exception] [can be null]
63 * Constructs an exception with given error message/code and given cause.
66 * @param cause the cause [nested exception] [can be null]
74 * Constructs an exception with given error message/code and given cause.
78 * @param cause the cause [nested exception] [ca
[all...]
H A DEMMARuntimeException.java11 import com.vladium.util.exception.AbstractRuntimeException;
23 * Constructs an exception with null message and null cause.
30 * Constructs an exception with given error message/code and null cause.
40 * Constructs an exception with given error message/code and null cause.
53 * Constructs an exception with null error message/code and given cause.
55 * @param cause the cause [nested exception] [can be null]
63 * Constructs an exception with given error message/code and given cause.
66 * @param cause the cause [nested exception] [can be null]
74 * Constructs an exception with given error message/code and given cause.
78 * @param cause the cause [nested exception] [ca
[all...]
/external/oprofile/libabi/
H A Dabi.h19 struct abi_exception : std::exception {
/external/oprofile/libutil++/
H A Dop_exception.h3 * exception base class
5 * This provide simple base class for exception object. All
6 * exception are derived from directly or indirectly from
7 * std::exception. This class are not itended to be catched
26 * exception abstract base class
28 class op_exception : public std::exception {
40 * fatal exception, never catch it except at top level (likely main or
/external/webkit/Source/JavaScriptCore/runtime/
H A DFunctionConstructor.cpp101 JSObject* exception = 0; local
102 FunctionExecutable* function = FunctionExecutable::fromGlobalCode(functionName, exec, exec->dynamicGlobalObject()->debugger(), source, &exception);
104 ASSERT(exception);
105 return throwError(exec, exception);
/external/webkit/Source/WebCore/bindings/objc/
H A DExceptionHandlers.mm71 NSException *exception = [NSException exceptionWithName:exceptionName reason:reason userInfo:userInfo];
76 [exception raise];
/external/webkit/Source/WebCore/bindings/v8/
H A DWorkerScriptController.h55 ScriptValue evaluate(const ScriptSourceCode&, ScriptValue* exception);
60 // exception raised during JS execution, if the worker thread happens to run JS.
66 // Called on Worker thread when JS exits with termination exception caused by forbidExecution() request,
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/tool/templates/messages/languages/
H A Den.stg38 CANNOT_WRITE_FILE(arg,exception,stackTrace) ::= <<
39 cannot write file <arg>: <exception>
42 CANNOT_CLOSE_FILE(arg,exception,stackTrace) ::= "cannot close file <arg>: <exception>"
44 ERROR_READING_TOKENS_FILE(arg,exception,stackTrace) ::= <<
45 problem reading token vocabulary file <arg>: <exception>
48 DIR_NOT_FOUND(arg,exception,stackTrace) ::= "directory not found: <arg>"
49 OUTPUT_DIR_IS_FILE(arg,exception,stackTrace) ::= "output directory is a file: <arg>"
50 CANNOT_OPEN_FILE(arg,exception,stackTrace) ::= "cannot find or open file: <arg><if(exception)>; reaso
[all...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
H A DRuntimeExceptionTest.java54 RuntimeException exception = new RuntimeException(throwable);
55 assertEquals(throwable.getClass().getName() + ": " + "msg", exception.getMessage());
/external/guava/guava-testlib/src/com/google/common/testing/
H A DClusterException.java33 * thingToRun.run(); // <-- say this may throw an exception, but you want to
68 exceptions.size() + " exceptions were thrown. The first exception is listed as a cause.",
80 for (Throwable exception : exceptions) {
81 temp.add(exception);
91 * <li>If {@code exceptions} has a single exception and that exception is a
97 * the first exception in the {@code exceptions} collection.
/external/junit/src/org/junit/internal/runners/
H A DTestMethod.java49 boolean isUnexpected(Throwable exception) { argument
50 return ! getExpectedException().isAssignableFrom(exception.getClass());
/external/llvm/bindings/ocaml/bitreader/
H A Dllvm_bitreader.ml11 exception Error of string
/external/valgrind/main/gdbserver_tests/
H A Dmcsigpass.stdoutB.exp14 Program received signal SIGFPE, Arithmetic exception.
/external/webkit/Source/JavaScriptCore/API/
H A DJSBase.h102 @param exception A pointer to a JSValueRef in which to store an exception, if any. Pass NULL if you do not care to store an exception.
103 @result The JSValue that results from evaluating script, or NULL if an exception is thrown.
105 JS_EXPORT JSValueRef JSEvaluateScript(JSContextRef ctx, JSStringRef script, JSObjectRef thisObject, JSStringRef sourceURL, int startingLineNumber, JSValueRef* exception);
114 @param exception A pointer to a JSValueRef in which to store a syntax error exception, if any. Pass NULL if you do not care to store a syntax error exception.
117 JS_EXPORT bool JSCheckScriptSyntax(JSContextRef ctx, JSStringRef script, JSStringRef sourceURL, int startingLineNumber, JSValueRef* exception);
/external/webkit/Source/JavaScriptCore/debugger/
H A DDebugger.h45 virtual void exception(const DebuggerCallFrame&, intptr_t sourceID, int lineNumber, bool hasHandler) = 0;
61 JSValue evaluateInGlobalCallFrame(const UString&, JSValue& exception, JSGlobalObject*);
/external/webkit/Source/WebCore/bindings/js/
H A DJavaScriptCallFrame.cpp103 JSValue JavaScriptCallFrame::evaluate(const UString& script, JSValue& exception) const
110 return m_debuggerCallFrame.evaluate(script, exception);
H A DSerializedScriptValue.h58 static PassRefPtr<SerializedScriptValue> create(JSContextRef, JSValueRef value, JSValueRef* exception);
71 JSValueRef deserialize(JSContextRef, JSValueRef* exception);
/external/webkit/Source/WebKit/win/
H A DWebSerializedJSValue.cpp85 HRESULT WebSerializedJSValue::serialize(JSContextRef sourceContext, JSValueRef value, JSValueRef* exception) argument
93 m_value = SerializedScriptValue::create(sourceContext, value, exception);
/external/stlport/src/
H A Ddll_main.cpp64 exception::exception() _STLP_NOTHROW {}
65 exception::~exception() _STLP_NOTHROW {}
68 const char* exception::what() const _STLP_NOTHROW { return "class exception"; }
/external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
H A Dconfig_unittest.py67 def make_config(self, output='', files={}, exit_code=0, exception=None,
70 exception=exception,
165 c = self.make_config(exception=OSError)
173 c = self.make_config(exception=executive.ScriptError())
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
H A DSQLExceptionTest.java48 System.out.println("SUID check got exception: " + e.getMessage());
95 fail(i + "Unexpected exception");
144 fail(i + "Unexpected exception");
191 fail(i + "Unexpected exception");
233 fail(i + "Unexpected exception");
286 fail(i + "Unexpected exception");
342 fail(i + "Unexpected exception");
395 fail(i + "Unexpected exception");
449 fail(i + "Unexpected exception");
546 SQLException exception
[all...]
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_ListTest.java150 boolean exception = false;
155 exception = true;
158 assertTrue("list iterator next() exception: " + i, exception);
160 assertTrue("list iterator next() exception: " + i, !exception);
179 boolean exception = false;
183 exception = true;
185 assertTrue("list iterator previous() exception", exception);
[all...]

Completed in 498 milliseconds

<<11121314151617181920>>