| /external/chromium_org/v8/src/ |
| factory.cc | 477 // Make sure that an out of memory exception is thrown if the length 1181 Handle<Object> exception; local 1208 Handle<Object> exception; local [all...] |
| /external/chromium_org/v8/test/mjsunit/ |
| external-array-no-sse2.js | 113 // ArrayBuffer an exception is raised. 124 // type, otherwise an exception is raised. 132 // or an exception is raised.
|
| external-array.js | 113 // ArrayBuffer an exception is raised. 124 // type, otherwise an exception is raised. 132 // or an exception is raised.
|
| /prebuilts/misc/common/swig/include/2.0.11/ruby/ |
| rubycontainer.swg | 184 } catch (std::exception& e) { 1001 } catch (std::exception& e) { 1041 } catch (std::exception& e) {
|
| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
| test_decimal.py | 233 except DecimalException as exception: 234 #Exception raised where there shouldn't have been one. 235 self.fail('Exception "'+exception.__class__.__name__ + '" raised on line '+line) 308 for exception in Signals: 309 self.context.traps[exception] = 1 #Catch these bugs... 310 for exception in theirexceptions: 311 self.context.traps[exception] = 0 [all...] |
| test_logging.py | 500 """A special exception formatter.""" 788 logging.exception("just testing") [all...] |
| /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
| test_decimal.py | 233 except DecimalException as exception: 234 #Exception raised where there shouldn't have been one. 235 self.fail('Exception "'+exception.__class__.__name__ + '" raised on line '+line) 308 for exception in Signals: 309 self.context.traps[exception] = 1 #Catch these bugs... 310 for exception in theirexceptions: 311 self.context.traps[exception] = 0 [all...] |
| test_logging.py | 500 """A special exception formatter.""" 788 logging.exception("just testing") [all...] |
| /art/runtime/arch/mips/ |
| quick_entrypoints_mips.S | 24 /* Deliver the given exception */ 26 /* Deliver an exception pending on a thread */ 223 * exception is Thread::Current()->exception_ 236 bnez $t0, 1f # success if no exception is pending 430 * If unsuccessful, the helper will return NULL/NULL. There will be a pending exception in the 541 * Entry from managed code that calls artHandleFillArrayDataFromCode and delivers exception on 547 SETUP_REF_ONLY_CALLEE_SAVE_FRAME # save callee saves in case exception allocation triggers GC 570 * Entry from managed code that calls artUnlockObjectFromCode and delivers exception on failure. 577 SETUP_REF_ONLY_CALLEE_SAVE_FRAME # save callee saves in case exception allocation triggers GC 585 * Entry from managed code that calls artCheckCastFromCode and delivers exception on failure [all...] |
| /art/runtime/ |
| runtime.cc | 244 mirror::Throwable* exception = self->GetException(&throw_location); local 245 os << "Pending exception " << PrettyTypeOf(exception) 247 << exception->Dump(); [all...] |
| /frameworks/base/core/java/android/accounts/ |
| AccountManager.java | 134 * necessary) and either returns the result or throws an exception if an error 448 // possible security exception 465 // possible security exception [all...] |
| /frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
| PhoneProxy.java | 113 if (ar.exception == null && ar.result != null) { 116 logd("Unexpected exception on EVENT_RIL_CONNECTED"); 125 if (ar.exception == null) { 134 loge(what + ": exception=" + ar.exception); [all...] |
| SMSDispatcher.java | 352 if (ar.exception == null) { 382 } else if ((((CommandException)(ar.exception)).getCommandError() 402 if (((CommandException)(ar.exception)).getCommandError() [all...] |
| /packages/providers/TelephonyProvider/src/com/android/providers/telephony/ |
| MmsSmsProvider.java | 424 } catch (Exception ex) { 425 Log.e(LOG_TAG, "got exception: " + ex.toString()); 634 new Exception()); [all...] |
| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/logging/ |
| __init__.py | 33 'exception', 'fatal', 'getLevelName', 'getLogger', 'getLoggerClass', 77 raise Exception 176 try: #unlikely to cause an exception, but you never know... 239 the source line where the logging call was made, and any exception 432 Format and return the specified exception information as a string. 461 called to format the event time. If there is exception information, 780 try: #unlikely to raise an exception, but you never know... 790 This method should be called from handlers when an exception is 845 exception information is present, it is formatted using 1177 def exception(self, msg, *args, **kwargs): member in class:Logger 1448 def exception(self, msg, *args, **kwargs): member in class:LoggerAdapter 1587 def exception(msg, *args, **kwargs): function [all...] |
| /prebuilts/python/linux-x86/2.7.5/lib/python2.7/logging/ |
| __init__.py | 33 'exception', 'fatal', 'getLevelName', 'getLogger', 'getLoggerClass', 77 raise Exception 176 try: #unlikely to cause an exception, but you never know... 239 the source line where the logging call was made, and any exception 432 Format and return the specified exception information as a string. 461 called to format the event time. If there is exception information, 780 try: #unlikely to raise an exception, but you never know... 790 This method should be called from handlers when an exception is 845 exception information is present, it is formatted using 1177 def exception(self, msg, *args, **kwargs): member in class:Logger 1448 def exception(self, msg, *args, **kwargs): member in class:LoggerAdapter 1587 def exception(msg, *args, **kwargs): function [all...] |
| /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
| RenderPreview.java | 569 Throwable exception = render.getException(); local 570 if (exception != null) { 571 AdtPlugin.log(exception, "Failure rendering preview " + getDisplayName()); [all...] |
| /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/ |
| EclipseLintClient.java | 198 public void log(@NonNull Severity severity, @Nullable Throwable exception, 200 if (exception == null) { 203 AdtPlugin.log(exception, format, args); 574 } catch (Exception e) { [all...] |
| /cts/tests/tests/media/src/android/media/cts/ |
| Vp8CodecTestBase.java | 149 boolean forceSwGoogleCodec) throws Exception { 465 int dstWidth, int dstHeight) throws Exception { 494 String dstYuvFilename, int dstFrameWidth, int dstFrameHeight) throws Exception { 541 boolean forceSwDecoder) throws Exception { 709 private InputStream OpenFileOrResourceId(String filename, int resourceId) throws Exception { 742 throws Exception { 988 final Exception[] exception = new Exception[1]; local [all...] |
| /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/ |
| PKIXCertPathValidatorSpi.java | 29 import org.bouncycastle.jce.exception.ExtCertPathValidatorException; 91 // emulate CRL exception message in RFC3280CertPathUtilities.checkCRLs 278 // emulate CRL exception message in RFC3280CertPathUtilities.checkCRLs
|
| /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/ |
| _stream_hybi.py | 106 Exception: when bad data is given. 695 exception and continue receiving the next frame.
|
| /external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/ |
| live_regions.js | 35 * The exception is alerts, they're announced when a page is loaded. 263 // skip it. Alerts are the exception, they're announced on page load.
|
| /external/chromium_org/gpu/config/ |
| gpu_control_list.h | 433 void AddException(ScopedGpuControlListEntry exception);
|
| /external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/ |
| implement.h | 142 /* due to an exception */ 446 * "key lock then thread lock". An exception to this exists 515 * This macro constructs a software exception code following 537 ( (_exception) << 0 ) /* Exception Code */ \ 559 * generic exception selectors. 692 * "C++ exception specification ignored except to indicate that 697 void ptw32_throw (DWORD exception) [all...] |
| /external/chromium_org/ppapi/proxy/ |
| ppb_instance_proxy.h | 55 PP_Var* exception) OVERRIDE;
|