| /external/libgdx/backends/gdx-backend-android/src/com/badlogic/gdx/backends/android/ |
| AndroidApplication.java | 177 } catch (Exception ex) { 194 } catch (Exception e) { 222 } catch (Exception e) { 255 } catch (Exception e) { 421 public void debug (String tag, String message, Throwable exception) { 423 Log.d(tag, message, exception); 433 public void log (String tag, String message, Throwable exception) { 434 if (logLevel >= LOG_INFO) Log.i(tag, message, exception); 443 public void error (String tag, String message, Throwable exception) { 444 if (logLevel >= LOG_ERROR) Log.e(tag, message, exception); [all...] |
| AndroidFragmentApplication.java | 126 } catch (Exception e) { 204 } catch (Exception e) { 356 public void debug (String tag, String message, Throwable exception) { 358 Log.d(tag, message, exception); 368 public void log (String tag, String message, Throwable exception) { 369 if (logLevel >= LOG_INFO) Log.i(tag, message, exception); 378 public void error (String tag, String message, Throwable exception) { 379 if (logLevel >= LOG_ERROR) Log.e(tag, message, exception);
|
| /external/libgdx/backends/gdx-backend-lwjgl/src/com/badlogic/gdx/backends/lwjgl/ |
| LwjglApplication.java | 306 } catch (Exception ex) { 354 public void debug (String tag, String message, Throwable exception) { 357 exception.printStackTrace(System.out); 369 public void log (String tag, String message, Throwable exception) { 372 exception.printStackTrace(System.out); 384 public void error (String tag, String message, Throwable exception) { 387 exception.printStackTrace(System.err);
|
| /external/libgdx/backends/gdx-backend-moe/src/com/badlogic/gdx/backends/iosmoe/ |
| IOSApplication.java | 324 public void debug (String tag, String message, Throwable exception) {
326 Log.d(tag, message, exception);
336 public void log (String tag, String message, Throwable exception) {
337 if (logLevel >= LOG_INFO) Log.i(tag, message, exception);
346 public void error (String tag, String message, Throwable exception) {
347 if (logLevel >= LOG_ERROR) Log.e(tag, message, exception);
|
| /external/libgdx/backends/gdx-backend-robovm/src/com/badlogic/gdx/backends/iosrobovm/ |
| IOSApplication.java | 319 public void log (String tag, String message, Throwable exception) { 322 exception.printStackTrace(); 334 public void error (String tag, String message, Throwable exception) { 337 exception.printStackTrace(); 349 public void debug (String tag, String message, Throwable exception) { 352 exception.printStackTrace();
|
| /external/robolectric/v1/lib/main/ |
| commons-logging-1.1.1.jar | |
| /external/testng/src/main/java/org/testng/reporters/ |
| XMLSuiteResultWriter.java | 273 Throwable exception = testResult.getThrowable(); local 274 if (exception != null) { 276 exceptionAttrs.setProperty(XMLReporterConfig.ATTR_CLASS, exception.getClass().getName()); 279 if (!Utils.isStringEmpty(exception.getMessage())) { 281 xmlBuffer.addCDATA(exception.getMessage()); 285 String[] stackTraces = Utils.stackTrace(exception, false);
|
| /external/v8/src/runtime/ |
| runtime-compiler.cc | 36 return isolate->heap()->exception(); 49 return isolate->heap()->exception(); 62 return isolate->heap()->exception(); 76 return isolate->heap()->exception(); 328 // strings. Throw an exception if it doesn't. 337 return isolate->heap()->exception(); 348 isolate->heap()->exception());
|
| /external/v8/test/mjsunit/ |
| debug-stepframe-clearing.js | 35 var exception = null; 74 exception = e; 97 assertNull(exception);
|
| debug-stepin-builtin.js | 33 var exception = null; 55 exception = e; 74 assertNull(exception);
|
| debug-stepout-to-builtin.js | 33 var exception = null; 55 exception = e; 80 assertNull(exception);
|
| object-define-property.js | 32 // Check that an exception is thrown when null is passed as object. 33 var exception = false; variable 37 exception = true; 40 assertTrue(exception); 42 // Check that an exception is thrown when undefined is passed as object. 43 exception = false; 47 exception = true; 50 assertTrue(exception); 52 // Check that an exception is thrown when non-object is passed as object. 53 exception = false [all...] |
| /external/v8/test/mjsunit/es6/ |
| debug-stepnext-for.js | 9 var exception = null; 85 exception = e; 135 assertNull(exception);
|
| /external/v8/test/mjsunit/regress/ |
| regress-1639-2.js | 31 var exception = false; 83 exception = true; 96 assertFalse(exception);
|
| regress-1639.js | 32 var exception = false; variable 62 exception = true; 91 assertFalse(exception);
|
| regress-debug-deopt-while-recompile.js | 37 exception = e; 42 var exception = null; variable 84 assertNull(exception);
|
| regress-opt-after-debug-deopt.js | 43 exception = e; 48 var exception = null; variable 76 assertNull(exception);
|
| /external/v8/test/webkit/ |
| array-every.js | 77 debug("4.0 Exception Test"); 79 if(index==1) throw "exception from function"; 82 shouldThrow("[12, 5, 8, 130, 44].every(isBigEnoughAndException)", '"exception from function"'); 83 shouldThrow("[12, 54, 18, 130, 44].every(isBigEnoughAndException)", '"exception from function"');
|
| /external/v8/test/webkit/fast/js/ |
| stack-overflow-arrity-catch.js | 24 description('Test that if an arrity check causes a stack overflow, the exception goes to the right catch'); 41 // now cause a stack overflow exception due to arrity processing 72 // now cause a stack overflow exception due to arrity processing
|
| /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/ssl/ |
| HandshakeCompletedEventTest.java | 72 public final void test_Constructor() throws Exception { 78 fail("Any exception wasn't thrown for null parameters"); 79 } catch (Exception expected) { 87 public final void test_getCipherSuite() throws Exception { 98 public final void test_getLocalCertificates() throws Exception { 109 public final void test_getLocalPrincipal() throws Exception { 120 public final void test_getPeerCertificateChain() throws Exception { 336 public void testClientAuth() throws Exception { 357 // The server must have completed without an exception. 358 Exception e = server.getException() 389 private Exception exception; field in class:HandshakeCompletedEventTest.TestServer 472 private Exception exception; field in class:HandshakeCompletedEventTest.TestClient [all...] |
| /libcore/luni/src/test/java/tests/security/cert/ |
| CertPathValidatorExceptionTest.java | 53 private static Throwable tCause = new Throwable("Throwable for exception"); 262 fail("Unexpected exception: " + e.toString() 340 * that was being validated when the exception was thrown. 371 fail("Unexpected exception: " + e.getMessage()); 394 * in the certification path that caused the exception to be thrown. Note 439 public void testCertPathValidatorException_constructsCorrectlyWithReason() throws Exception { 450 CertPathValidatorException exception = new CertPathValidatorException("Test exception", local 453 assertEquals("Test exception", exception.getMessage()) [all...] |
| /packages/services/Telephony/src/com/android/phone/settings/fdn/ |
| FdnSetting.java | 250 if (ar.exception != null) { 251 if (ar.exception instanceof CommandException) { 255 ((CommandException) ar.exception).getCommandError(); 286 if (ar.exception != null) { 287 if (ar.exception instanceof CommandException) { 291 CommandException ce = (CommandException) ar.exception;
|
| /prebuilts/devtools/tools/lib/ |
| commons-logging-1.1.1.jar | |
| /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/ |
| org.apache.commons.logging_1.1.1.v201101211721.jar | |
| /prebuilts/gdb/darwin-x86/lib/python2.7/ |
| cgitb.py | 18 Alternatively, if you have caught an exception and want cgitb to display it 173 exception = ['<p>%s: %s' % (strong(pydoc.html.escape(str(etype))), variable 179 exception.append('\n<br>%s%s =\n%s' % (indent, name, value)) 181 return head + ''.join(frames) + ''.join(exception) + ''' 245 exception = ['%s: %s' % (str(etype), str(evalue))] variable 249 exception.append('\n%s%s = %s' % (" "*4, name, value)) 251 return head + ''.join(frames) + ''.join(exception) + ''' 317 """Install an exception handler that formats tracebacks as HTML.
|