| /external/chromium_org/v8/test/mjsunit/es6/ |
| debug-promises-caught-all.js | 8 // there is a catch handler for the exception thrown in a Promise. 9 // We expect a normal Exception debug event to be triggered. 37 if (event == Debug.DebugEvent.Exception) { 38 assertEquals("caught", event_data.exception().message); 47 print("Unexpected exception: " + e + "\n" + e.stack);
|
| debug-promises-uncaught-uncaught.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. 32 if (event == Debug.DebugEvent.Exception) { 34 assertEquals("uncaught", event_data.exception().message); 46 print("Unexpected exception: " + e + "\n" + e.stack);
|
| debug-promises-undefined-reject.js | 7 // Test debug events when an exception is thrown inside a Promise, which is 9 // We expect an Exception event with a promise to be triggered. 39 if (event == Debug.DebugEvent.Exception) { 42 event_data.exception().message); 49 print("Unexpected exception: " + e + "\n" + e.stack);
|
| /external/chromium_org/v8/test/mjsunit/regress/ |
| regress-1327557.js | 31 var exception = false; variable 35 exception = true; 38 assertTrue(exception);
|
| regress-crbug-100859.js | 32 var exception = false; variable 37 exception = true; 39 assertTrue(exception);
|
| /external/objenesis/tck/src/org/objenesis/tck/candidates/ |
| candidates.properties | 65 org.objenesis.tck.candidates.SerializableWithAncestorThrowingException = Serializable with ancestor throwing exception 70 org.objenesis.tck.candidates.ConstructorThrowingException = Constructor throwing exception 71 org.objenesis.tck.candidates.SerializableConstructorThrowingException = Constructor throwing exception (serializable)
|
| /frameworks/base/tools/layoutlib/bridge/src/android/view/ |
| BridgeInflater.java | 107 // If the class was not found, we throw the exception directly, because this 111 } catch (Exception e) { 112 // Wrap the real exception in a ClassNotFoundException, so that the calling method 114 ClassNotFoundException exception = new ClassNotFoundException("onCreateView", e); local 115 throw exception; 133 } catch (Exception e2) { 134 // Wrap the real exception in an InflateException so that the calling 136 InflateException exception = new InflateException(); local 138 exception.initCause(e2); 140 exception.initCause(e) [all...] |
| /frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/ |
| AdnRecordCache.java | 124 Exception e = new RuntimeException(errString); 125 AsyncResult.forMessage(response).exception = e; 138 * response.exception hold the exception in error 174 * response.exception hold the exception in error 242 * Responds with exception (in response) if efid is not a known ADN-like 290 AsyncResult.forMessage(response).exception 314 AsyncResult.forMessage(waiter, ar.result, ar.exception); 337 if (ar.exception == null) [all...] |
| UiccCardApplication.java | 223 if (ar.exception != null) { 224 if (DBG) log("Error in querying facility lock:" + ar.exception); 250 if (ar.exception == null) { 256 loge("Error change facility fdn with exception " + ar.exception); 260 AsyncResult.forMessage(response).exception = ar.exception; 278 if(ar.exception != null) { 279 if (DBG) log("Error in querying facility lock:" + ar.exception); 330 if (ar.exception == null) [all...] |
| /packages/services/Telephony/src/com/android/phone/ |
| CallForwardEditPreference.java | 195 if (ar.exception != null) { 196 if (DBG) Log.d(LOG_TAG, "handleGetCFResponse: ar.exception=" + ar.exception); 198 (CommandException) ar.exception); 256 if (ar.exception != null) { 257 if (DBG) Log.d(LOG_TAG, "handleSetCFResponse: ar.exception=" + ar.exception); 262 obtainMessage(MESSAGE_GET_CF, msg.arg1, MESSAGE_SET_CF, ar.exception));
|
| /external/antlr/antlr-3.4/runtime/C/src/ |
| antlr3baserecognizer.c | 214 // Free any exception space we have left around 216 thisE = recognizer->state->exception; 246 * Creates a new Mismatched Token Exception and inserts in the recognizer 247 * exception stack. 256 /* Create a basic recognition exception structure 260 /* Now update it to indicate this is a Mismatched token exception 262 recognizer->state->exception->name = ANTLR3_MISMATCHED_EX_NAME; 263 recognizer->state->exception->type = ANTLR3_MISMATCHED_TOKEN_EXCEPTION; 323 /* Create a basic exception structure 397 ex->nextException = recognizer->state->exception; /* So we don't leak the memory * [all...] |
| /external/chromium_org/content/test/data/indexeddb/ |
| common.js | 105 var exception; 110 exception = e; 114 if (exception) 115 fail(_a + " should be " + _bv + ". Threw exception " + exception);
|
| /external/lldb/tools/debugserver/source/MacOSX/ |
| MachException.cpp | 32 exception_type_t exception, 41 exception_type_t exception, 58 exception_type_t exception, 211 // Save the EXC_XXXX exception type 212 stop_info->details.exception.type = exc_type; 223 stop_info->details.exception.data_count = exc_data.size(); 236 // No special disassembly for exception data, just 240 desc += snprintf(desc, end_desc - desc, " data[%llu] = {", (uint64_t)stop_info->details.exception.data_count); 242 for (idx = 0; desc < end_desc && idx < stop_info->details.exception.data_count; ++idx) 243 desc += snprintf(desc, end_desc - desc, "0x%llx%c", (uint64_t)exc_data[idx], ((idx + 1 == stop_info->details.exception.data_count) ? '}' : ',')) [all...] |
| /external/chromium_org/v8/test/mjsunit/ |
| debug-evaluate-recursive.js | 33 exception = false; 100 exception = e 127 exception = e 149 assertFalse(exception, "exception in listener") 164 assertFalse(exception, "exception in listener")
|
| /prebuilts/misc/common/swig/include/2.0.11/ocaml/ |
| swig.ml | 30 exception BadArgs of string 31 exception BadMethodName of string * string 32 exception NotObject of c_obj 33 exception NotEnumType of c_obj 34 exception LabelNotFromThisEnum of c_obj 35 exception InvalidDirectorCall of c_obj 36 exception NoSuchClass of string
|
| /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...] |
| /external/guava/guava-tests/test/com/google/common/base/ |
| ThrowablesTest.java | 50 // Expect no exception to be thrown 66 // Expect the unchecked exception to propagate as-is 86 // Expect the undeclared exception to have been chained inside another 109 // Expect no exception to be thrown 126 // Expect the unchecked exception to propagate as-is 146 // Expect the checked exception to propagate as-is 167 // Expect the undeclared exception to have been chained inside another 190 // Expect no exception to be thrown 209 // Expect the unchecked exception to propagate as-is 232 // Expect the checked exception to propagate as-i 428 SomeCheckedException exception = new SomeCheckedException(); local 434 SomeChainingException exception = new SomeChainingException(cause); local 440 SomeChainingException exception = local [all...] |
| /cts/tests/tests/media/src/android/media/cts/ |
| ExtractDecodeEditEncodeMuxTest.java | 258 private void extractDecodeEditEncodeMux() throws Exception { 259 // Exception that may be thrown during release. 260 Exception exception = null; local 302 // configure() call to throw an unhelpful exception. 360 // case we save the first exception we got and re-throw at the end (unless something 361 // other exception has already been thrown). This guarantees the first exception thrown 368 } catch(Exception e) { 370 if (exception == null) [all...] |
| /external/lldb/examples/python/ |
| pytracer.py | 157 def exceptionEvent(self,frame,exception,value,traceback): 187 elif event == "exception": 220 def exceptionEvent(self,frame,exception): 221 print "exception %s %s raised from %s @ %s" % (exception.getType(), str(exception.getValue()), frame.getName(), frame.getLineNumber()) 222 print "tb: " + str(exception.getTraceback()) 291 def exceptionEvent(self,frame,exception): 294 print "exception %s %s raised from %s @ %s" % (exception.getType(), str(exception.getValue()), frame.getName(), frame.getLineNumber() [all...] |
| /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/helpers/ |
| XMLFilterImplTest.java | 107 throw new RuntimeException("Unexpected exception", e); 109 throw new RuntimeException("Unexpected exception", e); 119 throw new RuntimeException("Unexpected exception", e); 132 throw new RuntimeException("Unexpected exception", e); 134 throw new RuntimeException("Unexpected exception", e); 144 throw new RuntimeException("Unexpected exception", e); 189 throw new RuntimeException("Unexpected exception", e); 191 throw new RuntimeException("Unexpected exception", e); 204 throw new RuntimeException("Unexpected exception", e); 206 throw new RuntimeException("Unexpected exception", e) 443 SAXParseException exception = new SAXParseException("Oops!", null); local 457 SAXParseException exception = new SAXParseException("Oops!", null); local 471 SAXParseException exception = new SAXParseException("Oops!", null); local [all...] |
| /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/ |
| ThreadGroup002Test.java | 73 } catch (NumberFormatException exception) { 75 ("## FAILURE: Exception while getting number of started threads from debuggee = " + exception); 101 } catch (ReplyErrorCodeException exception) { 103 ("## FAILURE: Exception in vmMirror.getAllThreadID() = " + exception); 114 } catch (ReplyErrorCodeException exception) {
|
| /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/ |
| ResumeTest.java | 63 } catch (NumberFormatException exception) { 65 ("## FAILURE: Exception while getting number of started threads from debuggee = " + exception); 87 } catch (ReplyErrorCodeException exception) { 89 ("## FAILURE: Exception in vmMirror.getAllThreadID() = " + exception); 100 } catch (ReplyErrorCodeException exception) {
|
| /external/chromium_org/tools/grit/grit/ |
| grd_reader.py | 14 from grit import exception namespace 21 class StopParsingException(Exception): 22 '''An exception used to stop parsing.''' 91 raise exception.GotPathExpectedFilenameOnly() 123 raise exception.MissingElement("root tag must be <grit-part>") 125 raise exception.UnexpectedAttribute( 176 grit.exception.Parsing 192 print "parse exception: run GRIT with the -x flag to debug .grd problems" 196 raise exception.MissingElement("root tag must be <grit>")
|
| grd_reader_unittest.py | 16 from grit import exception namespace 272 (exception.UnexpectedContent, u'<part file="x">fnord</part>'), 273 (exception.UnexpectedChild, 281 (exception.UnexpectedAttribute, u'<grit-part file="xyz"></grit-part>'), 282 (exception.MissingElement, u'<output filename="x" type="y" />'),
|
| /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/ |
| etip.h | 96 # undef exception macro 97 # define exception math_exception macro 101 # undef exception macro 102 # define exception builtin_exception macro 110 # undef exception macro
|