HomeSort by relevance Sort by last modified time
    Searched defs:exception (Results 101 - 125 of 282) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
V8Initializer.cpp 130 DOMException* exception = V8DOMException::toImpl(obj); local
131 if (exception && !exception->messageForConsole().isEmpty())
132 event->setUnsanitizedMessage("Uncaught " + exception->toStringForConsole());
137 // avoid storing the exception object, as we can't create a wrapper during context creation.
235 // WorkerGlobalScope::reportException will send the exception to the worker object.
WorkerScriptController.cpp 89 ScriptValue exception; member in class:blink::FINAL
229 m_globalScopeExecutionState->exception = ScriptValue(m_scriptState.get(), block.Exception());
259 V8ErrorHandler::storeExceptionOnErrorEventWrapper(errorEvent->get(), state.exception.v8Value(), m_scriptState->context()->Global(), m_isolate);
  /external/chromium_org/tools/grit/grit/node/
message.py 18 from grit import exception namespace
292 raise exception.TooManyExamples()
  /external/chromium_org/tools/grit/grit/
tclib.py 13 from grit import exception namespace
221 raise exception.InvalidPlaceholderName(presentation)
  /external/chromium_org/v8/test/mjsunit/
strict-mode-implicit-receiver.js 42 var exception = false;
43 try { strict_get_y(); } catch(e) { exception = true; }
44 assertTrue(exception);
54 var exception = false;
58 exception = true;
60 assertTrue(exception);
69 var exception = false; variable
76 exception = true;
78 assertTrue(exception);
  /external/emma/core/java12/com/vladium/util/exception/
ExceptionCommon.java 9 package com.vladium.util.exception;
45 * it possible to extend the set of exception error codes across independently
84 * @throws Error if 'namespace' does not correspond to an exception class derived
95 // bail out if the some other exception hierarchy attempts
122 // ignored intentionally: if the exception codes rb is absent,
241 * Provides support for lookup of exception error codes from {@link AbstractException}
248 * @param code the message string value that was passed into exception
293 * Provides support for lookup of exception error codes from {@link AbstractException}
300 * @param code the message string value that was passed into exception
462 private static final String NESTED_THROWABLE_HEADER = "[NESTED EXCEPTION]:"
    [all...]
  /external/fdlibm/
fdlibm.h 75 struct exception { struct
156 extern int ieee_matherr __P((struct exception *));
  /external/guava/guava/src/com/google/common/util/concurrent/
AbstractFuture.java 181 * @param throwable the exception that the task failed with.
226 private Throwable exception; field in class:AbstractFuture.Sync
281 * on success, an exception on failure, a cancellation on cancellation, or
288 if (exception != null) {
289 throw new ExecutionException(exception);
325 * Transition to the COMPLETED state and set the exception.
346 * @param t the exception to set as the result of the computation.
354 // and exception and then release to the final state.
356 this.exception = t;
  /external/guava/guava-tests/test/com/google/common/collect/
AbstractIteratorTest.java 73 fail("no exception thrown");
160 public void testSneakyThrow() throws Exception {
174 // The first time, the sneakily-thrown exception comes out
177 fail("No exception thrown");
178 } catch (Exception e) {
187 fail("No exception thrown");
193 final SomeUncheckedException exception = new SomeUncheckedException(); local
196 throw exception;
203 fail("No exception thrown");
205 assertSame(exception, e)
    [all...]
  /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");
  /art/runtime/
debugger.h 61 result_tag(JDWP::JT_VOID), exception(0),
85 JDWP::ObjectId exception; member in struct:art::DebugInvokeReq
511 uint32_t catch_dex_pc, mirror::Throwable* exception)
  /art/runtime/interpreter/
interpreter_goto_table_impl.cc 84 * - when an exception is thrown.
240 Throwable* exception = self->GetException(nullptr); local
241 DCHECK(exception != nullptr) << "No pending exception on MOVE_EXCEPTION instruction";
242 shadow_frame.SetVRegReference(inst->VRegA_11x(inst_data), exception);
343 // Return the pending exception.
618 Object* exception = shadow_frame.GetVRegReference(inst->VRegA_11x(inst_data)); local
619 if (UNLIKELY(exception == NULL)) {
620 ThrowNullPointerException(NULL, "throw with null exception");
621 } else if (do_assignability_check && !exception->GetClass()->IsThrowableClass())
    [all...]
  /art/test/401-optimizing-compiler/src/
Main.java 90 Exception exception = null; local
94 exception = e;
97 if (exception == null) {
  /cts/tests/tests/nativeopengl/standalone/jni/
GLTestHelper.cpp 265 jthrowable exception = env->ExceptionOccurred(); local
267 if (exception) {
272 env->Throw(exception);
  /cts/tests/tests/os/src/android/os/cts/
AsyncTaskTest.java 71 if (mAsyncTask.exception != null) {
72 throw mAsyncTask.exception;
91 fail("Failed to throw exception!");
108 assertNotNull(mAsyncTask.exception);
109 assertTrue(mAsyncTask.exception instanceof InterruptedException);
121 assertNull(mAsyncTask.exception);
130 assertNull(mAsyncTask.exception);
148 public Exception exception; field in class:AsyncTaskTest.MyAsyncTask
160 } catch (Exception e)
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
SocketTransportWrapper.java 160 IOException exception = null; local
175 if (exception != null) {
176 throw exception;
235 // workaround for "Socket Closed" exception if connection was closed
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ClassType/
InvokeMethod002Test.java 52 * exception object is null;
263 TaggedObject exception = reply.getNextValueAsTaggedObject(); local
264 assertNotNull("ClassType::InvokeMethod returned null exception",
265 exception);
266 assertEquals("ClassType::InvokeMethod returned invalid exception objectID,",
267 0, exception.objectID);
268 assertEquals("ClassType::InvokeMethod returned invalid exception.tag",
269 JDWPConstants.Tag.OBJECT_TAG, exception.tag,
271 JDWPConstants.Tag.getName(exception.tag));
272 logWriter.println(" ClassType.InvokeMethod: exception.tag=" + exception.tag
    [all...]
InvokeMethodTest.java 55 * which should not throw any Exception, and checks,
57 * exception object is null;
59 * which should throw some Exception, and checks, that
60 * returned exception object is not null and has expected attributes;
163 // Make InvokeMethod without Exception
173 logWriter.println(" Send ClassType.InvokeMethod without Exception");
183 TaggedObject exception = reply.getNextValueAsTaggedObject(); local
184 assertNotNull("Returned exception is null", exception);
185 assertTrue("Invalid exception object ID:<" + exception.objectID + ">", exception.objectID == 0)
352 TaggedObject exception = reply.getNextValueAsTaggedObject(); local
479 TaggedObject exception = reply.getNextValueAsTaggedObject(); local
    [all...]
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/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ObjectReference/
InvokeMethodTest.java 47 * Case 2: nonvirtual child method without exception and nonvirtual super method without exception
142 TaggedObject exception = reply.getNextValueAsTaggedObject(); local
143 logWriter.println(" ClassType.NewInstance: exception.tag="
144 + exception.tag + " exception.objectID=" + exception.objectID);
152 assertTrue("exception must be != null", exception != null);
153 assertTrue("exception.objectID must be == 0", exception.objectID == 0)
219 TaggedObject exception = reply.getNextValueAsTaggedObject(); local
335 TaggedObject exception = reply.getNextValueAsTaggedObject(); local
    [all...]
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
SQLWarningTest.java 41 Exception[] theExceptions = { null };
60 } catch (Exception e) {
62 fail(i + "Unexpected exception");
64 assertEquals(i + "Exception mismatch", e.getClass(),
66 assertEquals(i + "Exception mismatch", e.getMessage(),
87 Exception[] theExceptions = { null, null, null, null, null, null, null,
107 } catch (Exception e) {
109 fail(i + "Unexpected exception");
111 assertEquals(i + "Exception mismatch", e.getClass(),
113 assertEquals(i + "Exception mismatch", e.getMessage()
356 SQLWarning exception = new SQLWarning(e); local
367 SQLWarning exception = new SQLWarning("reason", e); local
379 SQLWarning exception = new SQLWarning("reason", "state", e); local
392 SQLWarning exception = new SQLWarning("reason", "state", 18, e); local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/xslt/
ObjectFactory.java 99 * @exception ObjectFactory.ConfigurationError
126 * @exception ObjectFactory.ConfigurationError
146 } catch (Exception x) {
173 * @exception ObjectFactory.ConfigurationError
201 * @exception ObjectFactory.ConfigurationError
228 } catch (Exception x) {
255 * @exception ObjectFactory.ConfigurationError
324 } catch (Exception x) {
337 // Ignore the exception.
352 } catch (Exception x)
635 private Exception exception; field in class:ObjectFactory.ConfigurationError
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/
ObjectFactory.java 99 * @exception ObjectFactory.ConfigurationError
126 * @exception ObjectFactory.ConfigurationError
146 } catch (Exception x) {
173 * @exception ObjectFactory.ConfigurationError
201 * @exception ObjectFactory.ConfigurationError
228 } catch (Exception x) {
255 * @exception ObjectFactory.ConfigurationError
324 } catch (Exception x) {
337 // Ignore the exception.
352 } catch (Exception x)
635 private Exception exception; field in class:ObjectFactory.ConfigurationError
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
ObjectFactory.java 98 * @exception ObjectFactory.ConfigurationError
125 * @exception ObjectFactory.ConfigurationError
145 } catch (Exception x) {
172 * @exception ObjectFactory.ConfigurationError
200 * @exception ObjectFactory.ConfigurationError
227 } catch (Exception x) {
254 * @exception ObjectFactory.ConfigurationError
323 } catch (Exception x) {
336 // Ignore the exception.
351 } catch (Exception x)
634 private Exception exception; field in class:ObjectFactory.ConfigurationError
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/utils/
ObjectFactory.java 99 * @exception ObjectFactory.ConfigurationError
126 * @exception ObjectFactory.ConfigurationError
146 } catch (Exception x) {
173 * @exception ObjectFactory.ConfigurationError
201 * @exception ObjectFactory.ConfigurationError
228 } catch (Exception x) {
255 * @exception ObjectFactory.ConfigurationError
324 } catch (Exception x) {
337 // Ignore the exception.
352 } catch (Exception x)
635 private Exception exception; field in class:ObjectFactory.ConfigurationError
    [all...]

Completed in 1905 milliseconds

1 2 3 45 6 7 8 91011>>