| /packages/apps/Calculator/ |
| arity-2.1.2.jar | |
| /external/chromium_org/tools/grit/grit/node/ |
| base.py | 15 from grit import exception namespace 48 # line identifying the offending node if an exception escapes from the body 120 raise exception.UnexpectedChild(explanation) 155 raise exception.UnexpectedContent() 173 raise exception.UnexpectedAttribute(attrib) 226 raise exception.MutuallyExclusiveMandatoryAttribute(mandatt) 229 raise exception.MissingMandatoryAttribute(mandatt)
|
| /external/chromium_org/v8/test/mjsunit/ |
| debug-stepin-accessor.js | 33 var exception = null; 55 exception = e; 243 assertNull(exception);
|
| object-literal.js | 143 var exception = false; 148 exception = true; 150 assertTrue(exception);
|
| object-freeze.js | 36 var exception = false; 40 exception = true; 43 assertTrue(exception); 47 exception = false; 51 exception = true; 54 assertTrue(exception);
|
| /external/chromium_org/v8/test/webkit/ |
| toString-prefix-postfix-preserve-parens.js | 25 "This test checks that toString() round-trip on a function that has prefix, postfix and typeof operators applied to group expression will not remove the grouping. Also checks that evaluation of such a expression produces run-time exception" 124 // check that function call produces run-time exception 127 // check that function call produces run-time exception after eval(unevalf)
|
| /external/deqp/framework/platform/ios/ |
| tcuIOSApp.mm | 209 return 0; // \todo [2013-08-13 pyry] Throw exception? 338 catch (const std::exception& e) 386 catch (const std::exception& e) 405 catch (const std::exception& e)
|
| /external/libunwind/doc/ |
| unw_resume.tex | 43 Most platforms reserve some registers to pass arguments to exception 46 registers. However, if \Prog{libunwind} is used to set an exception 49 value as the contents of the register. In other words, the exception
|
| /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/ |
| ListViewTest.java | 46 public void setUp() throws Exception { 52 public void testSetSelection_ShouldFireOnItemSelectedListener() throws Exception { 73 public void addHeaderView_ShouldThrowIfAdapterIsAlreadySet() throws Exception { 78 } catch (java.lang.IllegalStateException exception) { 79 assertThat(exception.getMessage(), equalTo("Cannot add header view to list -- setAdapter has already been called")); 85 } catch (java.lang.IllegalStateException exception) { 86 assertThat(exception.getMessage(), equalTo("Cannot add header view to list -- setAdapter has already been called")); 91 public void addHeaderView_ShouldRecordHeaders() throws Exception { 117 public void addHeaderView_shouldAttachTheViewToTheList() throws Exception { 127 public void addFooterView_ShouldThrowIfAdapterIsAlreadySet() throws Exception { [all...] |
| /external/smack/src/org/jivesoftware/smack/ |
| XMPPConnection.java | 424 catch (Exception e) { 435 } catch (Exception e) { 467 catch (Exception e) { 562 XMPPException exception = null; local 567 exception = null; 580 exception = new XMPPException(errorMessage, new XMPPError(XMPPError.Condition.remote_server_timeout, 584 exception = new XMPPException(errorMessage, new XMPPError(XMPPError.Condition.remote_server_error, 588 if (exception == null) { 593 hostAddress.setException(exception); 597 // throw an exception and report all trie [all...] |
| /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/ |
| GraphRunner.java | 118 private Exception mCaughtException = null; 169 } catch (Exception e) { 176 // Exception during exception recovery? Abort all processing. Do not 177 // overwrite the original exception. 553 * thrown exception is passed to the listener in this method. If no listener is set, the 554 * exception message is logged to the error stream. You will not receive an 557 * @param exception the exception that was thrown. 560 public void onGraphRunnerError(Exception exception, boolean closedSuccessfully) [all...] |
| /frameworks/base/tests/CoreTests/android/core/ |
| SSLSocketTest.java | 277 android.util.Log.d("SSLSocketTest", "Exception", ex); 297 android.util.Log.d("SSLSocketTest", "Exception", ex); 310 public void testContextInitNullArgs() throws Exception { 319 public void testDefaultAlgorithms() throws Exception { 335 public void testMultithreadedClose() throws Exception { 347 } catch (Exception ex) { 360 } catch (Exception ex) { 426 } catch (Exception ex) { 428 "testMultithreadedFetch() got Exception", ex); 630 private Exception exception field in class:SSLSocketTest.TestServer 709 private Exception exception; field in class:SSLSocketTest.TestClient [all...] |
| /frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
| ServiceStateTracker.java | 349 * an AsyncResult, and onComplete.obj.exception will be non-null 429 if (ar.exception != null) { 430 log("EVENT_GET_CELL_INFO_LIST: error ret null, e=" + ar.exception); 449 if (ar.exception != null) { 450 log("EVENT_UNSOL_CELL_INFO_LIST: error ignoring, e=" + ar.exception); 674 if ((ar.exception == null) && (ar.result != null)) { 679 log("onSignalStrengthResult() Exception from RIL : " + ar.exception); 717 } catch (Exception e) { 730 } catch (Exception e) [all...] |
| /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/ |
| HashtableTest.java | 273 // boolean exception = false; 284 // exception = true; 286 // assertTrue("unexpected NoSuchElementException", !exception); 310 boolean exception = false; 314 exception = true; 318 exception); 451 boolean exception = false; 456 exception = true; 458 assertTrue("unexpected NoSuchElementException", !exception); 580 // boolean exception = false [all...] |
| /libcore/luni/src/test/java/libcore/xml/ |
| XsltXPathConformanceTestSuite.java | 126 public static void main(String[] args) throws Exception { 139 public static Test suite() throws Exception { 146 public static Test suite(File catalogXml) throws Exception { 349 public void test() throws Exception { 614 Exception warning; 615 Exception error; 617 public void warning(TransformerException exception) { 619 this.warning = exception; 623 public void error(TransformerException exception) { 625 this.error = exception; [all...] |
| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/dom/ |
| pulldom.py | 203 def warning(self, exception): 204 print exception 205 def error(self, exception): 206 raise exception 207 def fatalError(self, exception): 208 raise exception
|
| /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/dom/ |
| pulldom.py | 203 def warning(self, exception): 204 print exception 205 def error(self, exception): 206 raise exception 207 def fatalError(self, exception): 208 raise exception
|
| /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/ |
| ParsedEvent.java | 348 * The class implements JDWP EXCEPTION event. 352 private TaggedObject exception; field in class:ParsedEvent.Event_EXCEPTION 363 super(suspendPolicy, packet, JDWPConstants.EventKind.EXCEPTION); 364 exception = packet.getNextValueAsTaggedObject(); 369 * @return Returns the location of the caught exception. 376 * @return Returns the exception. 379 return exception; 696 case JDWPConstants.EventKind.EXCEPTION: {
|
| /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...] |
| /external/apache-xml/src/main/java/org/apache/xpath/functions/ |
| 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/chromium_org/third_party/skia/gm/rebaseline_server/ |
| imagediffdb.py | 91 # an exception if images are not found locally (instead of trying to 102 except Exception: 103 logging.exception('unable to download expected_image_url %s to file %s' % 109 except Exception: 110 logging.exception('unable to download actual_image_url %s to file %s' % 258 except Exception: 262 logging.exception( 263 'got exception while creating a DiffRecord for '
|
| /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
| org.apache.commons.logging_1.0.4.v201005080501.jar | |