HomeSort by relevance Sort by last modified time
    Searched refs:exception (Results 2251 - 2275 of 4445) sorted by null

<<919293949596979899100>>

  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_exceptions.py 115 self.raise_catch(Exception, "Exception")
117 except Exception, e: pass
120 # make sure the right exception message is raised for each of
152 # test that setting an exception at the C level works even if the
153 # exception object can't be constructed.
169 self.fail("Expected exception")
183 self.fail("Expected exception")
204 # test that exception attributes are happy
293 'exception "%s", attribute "%s"'
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/
_cmath.h 32 # if defined (_STLP_HAS_NO_NAMESPACES) && !defined (exception)
33 # define exception __math_exception macro
41 # undef exception macro
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_exceptions.py 115 self.raise_catch(Exception, "Exception")
117 except Exception, e: pass
120 # make sure the right exception message is raised for each of
152 # test that setting an exception at the C level works even if the
153 # exception object can't be constructed.
169 self.fail("Expected exception")
183 self.fail("Expected exception")
204 # test that exception attributes are happy
293 'exception "%s", attribute "%s"'
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/policyrep/
__init__.py 45 from . import exception namespace
118 raise exception.InvalidPolicy("Error opening policy file \"{0}\": {1}".
428 except exception.NoDefaults:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_exceptions.py 115 self.raise_catch(Exception, "Exception")
117 except Exception, e: pass
120 # make sure the right exception message is raised for each of
152 # test that setting an exception at the C level works even if the
153 # exception object can't be constructed.
169 self.fail("Expected exception")
183 self.fail("Expected exception")
204 # test that exception attributes are happy
293 'exception "%s", attribute "%s"'
    [all...]
  /prebuilts/tools/common/m2/repository/org/apache/maven/wagon/wagon-provider-api/1.0-alpha-6/
wagon-provider-api-1.0-alpha-6.jar 
  /prebuilts/tools/common/m2/repository/org/apache/maven/wagon/wagon-provider-api/1.0-beta-6/
wagon-provider-api-1.0-beta-6.jar 
  /system/tools/aidl/
ast_java.cpp 321 : statements(new StatementBlock), exception(e) {}
325 if (this->exception != NULL) {
327 this->exception->WriteDeclaration(to);
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
BaseTreeAdaptor.as 31 * subclass your own tree node class to avoid class cast exception.
99 * Return newRoot. Throw an exception if newRoot is not a
125 throw new Error("more than one node as root (TODO: make exception hierarchy)");
  /external/opencv3/modules/java/generator/
gen_java.py 392 } catch(const cv::Exception& e) {
393 LOGD("Core::n_1minMaxLoc() catched cv::Exception: %s", e.what());
395 if(!je) je = env->FindClass("java/lang/Exception");
399 LOGD("Core::n_1minMaxLoc() catched unknown exception (...)");
400 jclass je = env->FindClass("java/lang/Exception");
401 env->ThrowNew(je, "Unknown exception in JNI code {core::minMaxLoc()}");
477 } catch(const cv::Exception& e) {
478 LOGD("Imgproc::n_1getTextSize() catched cv::Exception: %s", e.what());
480 if(!je) je = env->FindClass("java/lang/Exception");
484 LOGD("Imgproc::n_1getTextSize() catched unknown exception (...)")
    [all...]
  /external/v8/test/unittests/compiler/
graph-reducer-unittest.cc 351 Node* exception = graph()->NewNode(common.IfException(kNoHint), effect, node); local
358 EXPECT_EQ(dead, exception->InputAt(1));
364 EXPECT_THAT(dead->uses(), ElementsAre(exception));
375 Node* exception = graph()->NewNode(common.IfException(kNoHint), effect, node); local
382 EXPECT_EQ(dead, exception->InputAt(1));
388 EXPECT_THAT(dead->uses(), ElementsAre(exception));
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/io/
ObjectInputStreamTest.java 74 private void readObject(ObjectInputStream ois) throws Exception {
185 public void test_close() throws Exception {
400 public void test_readObjectOverride() throws Exception {
419 public void test_readObjectMissingClasses() throws Exception {
452 // readStreamHeader() throws an exception.
466 // readStreamHeader() throws an exception.
688 public void test_defaultReadObject() throws Exception {
690 // throws an exception.
778 public void test_readFields() throws Exception {
853 public void test_readObject() throws Exception {
1205 private IOException exception = null; field in class:ObjectInputStreamTest.ExceptionalBufferedInputStream
    [all...]
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.equinox.p2.transport.ecf_1.1.0.v20130516-1858.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.p2.transport.ecf_1.1.0.v20130516-1858.jar 
  /art/compiler/driver/
compiler_driver_test.cc 164 // Force non-virtual call to AbstractClass foo, will throw AbstractMethodError exception.
168 jthrowable exception = env_->ExceptionOccurred(); local
171 EXPECT_TRUE(env_->IsInstanceOf(exception, jlame));
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/usb/
MtpHostTestActivity.java 196 } catch (Exception | AssertionFailedError exception) {
197 mHandler.sendMessage(mHandler.obtainMessage(MESSAGE_FAIL, exception));
  /cts/tests/tests/netsecpolicy/src/android/security/
NetworkSecurityPolicyTestBase.java 39 protected void setUp() throws Exception {
45 protected void tearDown() throws Exception {
65 public void testDefaultHttpURLConnection() throws Exception {
73 private void assertCleartextHttpURLConnectionSucceeds() throws Exception {
91 private void assertCleartextHttpURLConnectionBlocked() throws Exception {
103 fail("Exception with which request failed does not mention cleartext: " + e);
114 public void testAndroidHttpClient() throws Exception {
122 private void assertAndroidHttpClientCleartextRequestSucceeds() throws Exception {
135 private void assertAndroidHttpClientCleartextRequestBlocked() throws Exception {
143 fail("Exception with which request failed does not mention cleartext: " + e)
    [all...]
  /external/ImageMagick/Magick++/lib/Magick++/
Exception.h 6 // Definition of Magick::Exception and derived classes
8 // 'exception' class for convenience.
18 #include <exception>
22 class MagickPPExport Exception: public std::exception
27 Exception(const std::string& what_);
29 // Construct with message string and nested exception
30 Exception(const std::string& what_, Exception* nested_);
33 Exception(const Exception& original_)
    [all...]
  /external/ImageMagick/MagickWand/
drawing-wand.c 65 wand->exception,GetMagickModule(),severity,tag,"`%s'",reason);
106 *exception;
463 wand->image=AcquireImage((const ImageInfo *) NULL,wand->exception);
464 ClearMagickException(wand->exception);
512 clone_wand->exception=AcquireExceptionInfo();
513 InheritException(clone_wand->exception,wand->exception);
537 clone_wand->exception);
588 wand->exception=DestroyExceptionInfo(wand->exception);
103 *exception; member in struct:_DrawingWand
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/interpolation/
BicubicSplineInterpolatingFunction.java 22 import org.apache.commons.math.exception.NoDataException;
23 import org.apache.commons.math.exception.OutOfRangeException;
88 * @throws org.apache.commons.math.exception.NonMonotonousSequenceException
  /external/autotest/client/common_lib/
logging_manager.py 613 logging.exception('Logging subprocess died:')
655 logging.exception('Failed to cleanly shutdown logging subprocess:')
  /external/autotest/client/cros/
crash_test.py 494 exception=error.TestError(
501 exception=error.TestError(
  /external/autotest/site_utils/suite_scheduler/
deduping_scheduler_unittest.py 56 the exception message.
166 created_on__gte=mox.IgnoreArg()).AndRaise(Exception())
232 wait_for_results=False).AndRaise(Exception())
266 exception = error.ControlFileNotFound(message)
280 job_retry=False).AndRaise(exception)
  /external/autotest/site_utils/
test_push.py 114 class TestPushException(Exception):
115 """Exception to be raised when the test to push to prod failed."""
241 except Exception as e:
366 for exception in IGNORE_MISSING_TESTS:
368 missing_test_errors.remove(exception)
405 """Wrapper to call test_suite. Handle exception and pipe it to parent
408 @param queue: Queue to save exception to be accessed by parent process.
479 """Check the queue for any exception being raised.
481 @param queue: Queue used to store exception for parent process to access.
482 @raise: Any exception found in the queue
    [all...]
  /external/chromium-trace/catapult/third_party/Paste/paste/exceptions/
errormiddleware.py 38 an email address (or list of addresses) to send exception
49 variables to control the emailed exception reports
68 When this middleware encounters an exception listed in this
70 yet occurred, the exception will be re-raised instead of being
134 # is an exception in the iterator body of the response)
337 For exception handling outside of a web context
349 If you want to report, but not fully catch the exception, call
351 will reraise the exception.
411 (Turn debug on to display exception reports here)
444 def error_template(head_html, exception, extra)
    [all...]

Completed in 2850 milliseconds

<<919293949596979899100>>