| /external/chromium_org/v8/test/mjsunit/ |
| debug-stepin-builtin-callback.js | 34 var exception = false; 51 exception = true; 77 assertFalse(exception); 83 assertFalse(exception); 90 assertFalse(exception); 95 assertFalse(exception); 101 assertFalse(exception); 107 assertFalse(exception); 113 assertFalse(exception); 140 exception = true [all...] |
| /cts/tools/vm-tests-tf/src/dot/junit/opcodes/move_exception/d/ |
| T_move_exception_3.d | 25 move-exception v6
|
| /external/antlr/antlr-3.4/runtime/C/src/ |
| antlr3exception.c | 3 * 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, void * name, void * message, ANTLR3_BOOLEAN freeMessage [all...] |
| /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ObjectReference/ |
| InvokeMethod002Test.java | 45 * exception object is null. 148 logWriter.println(" Send ObjectReference.InvokeMethod without Exception"); 158 TaggedObject exception = reply.getNextValueAsTaggedObject(); local 159 assertNotNull("Returned exception is null", exception); 160 assertTrue("Invalid exception object ID:<" + exception.objectID + ">", exception.objectID == 0); 161 assertEquals("Invalid exception tag,", JDWPConstants.Tag.OBJECT_TAG, exception.ta [all...] |
| InvokeMethod003Test.java | 47 * exception object is null. 152 logWriter.println(" Send ObjectReference.InvokeMethod without Exception"); 167 TaggedObject exception = reply.getNextValueAsTaggedObject(); local 168 assertNotNull("Returned exception is null", exception); 169 assertTrue("Invalid exception object ID:<" + exception.objectID + ">", exception.objectID == 0); 170 assertEquals("Invalid exception tag,", JDWPConstants.Tag.OBJECT_TAG, exception.ta [all...] |
| /external/chromium_org/ppapi/cpp/private/ |
| instance_private.cc | 65 VarPrivate InstancePrivate::ExecuteScript(const Var& script, Var* exception) { 72 VarPrivate::OutException(exception).get()));
|
| /external/chromium_org/third_party/WebKit/PerformanceTests/resources/ |
| runner.js | 171 } catch (exception) { 172 PerfTestRunner.logFatalError("Got an exception while running test.run with name=" + exception.name + ", message=" + exception.message); 180 } catch (exception) { 181 PerfTestRunner.logFatalError("Got an exception while logging the result with name=" + exception.name + ", message=" + exception.message); 219 } catch (exception) { 220 logInDocument("Got an exception while finalizing the test with name=" + exception.name + ", message=" + exception.message) [all...] |
| /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/w3c/ |
| test_importer_unittest.py | 55 host.executive = MockExecutive2(exception=OSError()) 69 host.executive = MockExecutive2(exception=ScriptError("abort: no repository found in '/Volumes/Source/src/wk/Tools/Scripts/webkitpy/w3c' (.hg not found)!"))
|
| /external/chromium_org/tools/grit/grit/gather/ |
| admin_template.py | 12 from grit import exception namespace 16 class MalformedAdminTemplateException(exception.Base):
|
| /external/chromium_org/tools/grit/grit/node/ |
| mapping.py | 11 from grit import exception namespace 59 raise exception.UnknownElement()
|
| /external/chromium_org/v8/test/mjsunit/es6/ |
| debug-promises-throw-in-reject.js | 7 // Test debug events when an exception is thrown inside a Promise, which is 8 // caught by a custom promise, which throws a new exception in its reject 9 // handler. We expect an Exception debug event with a promise to be triggered. 42 if (event == Debug.DebugEvent.Exception) { 45 assertEquals("reject", event_data.exception().message); 53 print("Unexpected exception: " + e + "\n" + e.stack);
|
| debug-promises-uncaught-all.js | 8 // there is a catch handler for the exception thrown in a Promise. 9 // We expect an Exception debug event with a promise to be triggered. 15 var exception = undefined; variable 33 if (event == Debug.DebugEvent.Exception) { 35 assertEquals("uncaught", event_data.exception().message); 47 print("Unexpected exception: " + e + "\n" + e.stack);
|
| /external/chromium_org/v8/test/mjsunit/regress/ |
| regress-1172-bis.js | 28 // Verifies that exception thrown from JS accessors when attempting a call 32 var exception = false; variable 36 exception = true; 39 assertTrue(exception);
|
| /external/conscrypt/src/main/java/org/conscrypt/ |
| OpenSSLSessionImpl.java | 235 SSLPeerUnverifiedException exception = new SSLPeerUnverifiedException(e.getMessage()); local 236 exception.initCause(exception); 237 throw exception; 239 SSLPeerUnverifiedException exception = new SSLPeerUnverifiedException(e.getMessage()); local 240 exception.initCause(exception); 241 throw exception;
|
| /external/deqp/modules/gles2/ |
| tes2TestCaseWrapper.cpp | 66 catch (const std::exception& e) 100 catch (const std::exception& e)
|
| /external/deqp/modules/gles3/ |
| tes3TestCaseWrapper.cpp | 65 catch (const std::exception& e) 100 catch (const std::exception& e)
|
| /external/deqp/modules/gles31/ |
| tes31TestCaseWrapper.cpp | 65 catch (const std::exception& e) 91 catch (const std::exception& e)
|
| /external/guava/guava-testlib/src/com/google/common/testing/ |
| ClusterException.java | 33 * thingToRun.run(); // <-- say this may throw an exception, but you want to 43 * List<Exception> exceptions = Lists.newArrayList(); 47 * } catch (Exception e) { 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/ |
| TestMethod.java | 49 boolean isUnexpected(Throwable exception) { 50 return ! getExpectedException().isAssignableFrom(exception.getClass());
|
| /external/lldb/test/api/multithreaded/ |
| common.h | 6 #include <exception> 14 /// Simple exception class with a message 15 struct Exception : public std::exception 18 Exception(std::string ss) : s(ss) {} 19 virtual ~Exception() throw () { }
|
| /external/llvm/bindings/ocaml/bitreader/ |
| llvm_bitreader.ml | 11 exception Error of string
|
| /external/llvm/bindings/ocaml/irreader/ |
| llvm_irreader.ml | 11 exception Error of string
|
| /external/llvm/bindings/ocaml/linker/ |
| llvm_linker.ml | 10 exception Error of string
|
| /external/mockito/src/org/mockito/internal/stubbing/answers/ |
| MethodInfo.java | 26 for (Class<?> exception : exceptions) { 27 if (exception.isAssignableFrom(throwableClass)) {
|
| /external/smack/src/org/xbill/DNS/ |
| LOCRecord.java | 103 throw st.exception("Invalid LOC " + type + " degrees"); 109 throw st.exception("Invalid LOC " + type + " minutes"); 113 throw st.exception("Invalid LOC " + type + " seconds"); 119 throw st.exception("Invalid LOC " + type); 127 throw st.exception("Invalid LOC " + type); 142 throw st.exception("Invalid LOC " + type); 152 throw st.exception("Invalid LOC " + type); 156 throw st.exception("Invalid LOC " + type);
|