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

<<21222324252627282930>>

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.set/
erase_iter_db2.pass.cpp 21 #include <exception>
erase_iter_iter_db1.pass.cpp 20 #include <exception>
erase_iter_iter_db2.pass.cpp 20 #include <exception>
erase_iter_iter_db3.pass.cpp 20 #include <exception>
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/exception.unexpected/set.unexpected/
get_unexpected.pass.cpp 12 #include <exception>
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.exception/propagation/
exception_ptr.pass.cpp 10 // <exception>
16 #include <exception>
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.access/
db_cback.pass.cpp 21 #include <exception>
db_cfront.pass.cpp 21 #include <exception>
db_cindex.pass.cpp 21 #include <exception>
db_index.pass.cpp 21 #include <exception>
  /ndk/tests/device/test-stlport_shared-exception/jni/
dyncast7.cpp 25 } catch (std::exception& e) {
  /ndk/tests/device/test-stlport_static-exception/jni/
dyncast7.cpp 25 } catch (std::exception& e) {
  /packages/services/Mms/src/com/android/mms/service/exception/
MmsHttpException.java 17 package com.android.mms.service.exception;
20 * HTTP exception
22 public class MmsHttpException extends Exception {
  /prebuilts/gdb/darwin-x86/lib/python2.7/xml/sax/
_exceptions.py 4 from java.lang import Exception
9 class SAXException(Exception):
16 the exception; instead, you can simply read the information in
19 def __init__(self, msg, exception=None):
20 """Creates an exception. The message is required, but the exception
23 self._exception = exception
24 Exception.__init__(self, msg)
27 "Return a message for this exception."
31 "Return the embedded exception, or None if there was none.
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/xml/sax/
_exceptions.py 4 from java.lang import Exception
9 class SAXException(Exception):
16 the exception; instead, you can simply read the information in
19 def __init__(self, msg, exception=None):
20 """Creates an exception. The message is required, but the exception
23 self._exception = exception
24 Exception.__init__(self, msg)
27 "Return a message for this exception."
31 "Return the embedded exception, or None if there was none.
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/sax/
_exceptions.py 4 from java.lang import Exception
9 class SAXException(Exception):
16 the exception; instead, you can simply read the information in
19 def __init__(self, msg, exception=None):
20 """Creates an exception. The message is required, but the exception
23 self._exception = exception
24 Exception.__init__(self, msg)
27 "Return a message for this exception."
31 "Return the embedded exception, or None if there was none.
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/sax/
_exceptions.py 4 from java.lang import Exception
9 class SAXException(Exception):
16 the exception; instead, you can simply read the information in
19 def __init__(self, msg, exception=None):
20 """Creates an exception. The message is required, but the exception
23 self._exception = exception
24 Exception.__init__(self, msg)
27 "Return a message for this exception."
31 "Return the embedded exception, or None if there was none.
    [all...]
  /external/ImageMagick/MagickCore/
quantize.c 186 #include "MagickCore/exception.h"
187 #include "MagickCore/exception-private.h"
502 ExceptionInfo *exception)
515 exception);
518 (void) TransformImageColorspace(image,sRGBColorspace,exception);
519 if (AcquireImageColormap(image,cube_info->colors,exception) == MagickFalse)
530 (void) DitherImage(image,cube_info,exception);
540 image_view=AcquireAuthenticCacheView(image,exception);
562 exception);
632 if (SyncCacheViewAuthenticPixels(image_view,exception) == MagickFalse
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/interpolation/
LinearInterpolator.java 19 import org.apache.commons.math.exception.DimensionMismatchException;
20 import org.apache.commons.math.exception.util.LocalizedFormats;
21 import org.apache.commons.math.exception.NumberIsTooSmallException;
39 * @throws org.apache.commons.math.exception.NonMonotonousSequenceException
  /external/apache-commons-math/src/main/java/org/apache/commons/math/genetics/
ListPopulation.java 23 import org.apache.commons.math.exception.util.LocalizedFormats;
24 import org.apache.commons.math.exception.NotPositiveException;
25 import org.apache.commons.math.exception.NumberIsTooLargeException;
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
ExceptionWithLocationTest.java 28 * JDWP Unit test for caught EXCEPTION event with LocationOnly modifier.
33 // Cache exception class ID.
37 * This testcase is for caught EXCEPTION event with LocationOnly
41 * The test verifies that requested EXCEPTION event occurs in the
47 runEventWithLocationTest(JDWPConstants.EventKind.EXCEPTION);
81 TaggedObject exception = eventException.getException(); local
82 assertEquals(JDWPConstants.Tag.OBJECT_TAG, exception.tag);
84 long thrownExceptionClassId = getObjectReferenceType(exception.objectID);
85 assertEquals("Received incorrect exception",
  /external/apache-xml/src/main/java/org/apache/xalan/extensions/
ObjectFactory.java 63 //throw security exception if the calling thread is not allowed to access the
127 /** Exception. */
128 private Exception exception; field in class:ObjectFactory.ConfigurationError
136 * exception.
138 ConfigurationError(String msg, Exception x) {
140 this.exception = x;
141 } // <init>(String,Exception)
147 /** Returns the exception associated to this error. */
148 Exception getException()
    [all...]
  /external/chromium-trace/catapult/telemetry/third_party/web-page-replay/third_party/dns/rdtypes/IN/
NSAP.py 16 import dns.exception namespace
40 raise dns.exception.SyntaxError('string does not start with 0x')
43 raise dns.exception.SyntaxError('hexstring has odd length')
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
AbstractIdleServiceTest.java 45 @Override protected void startUp() throws Exception {}
46 @Override protected void shutDown() throws Exception {}
49 public void testServiceStartStop() throws Exception {
57 public void testStart_failed() throws Exception {
58 final Exception exception = new Exception("deliberate"); local
60 @Override protected void startUp() throws Exception {
61 throw exception;
68 assertSame(exception, e.getCause())
74 final Exception exception = new Exception("deliberate"); local
101 final Exception exception = new Exception("deliberate"); local
143 final Exception exception = new Exception("deliberate"); local
    [all...]
  /external/junit/src/org/junit/internal/runners/statements/
FailOnTimeout.java 41 private void throwTimeoutException(StatementThread thread) throws Exception {
42 Exception exception= new Exception(String.format( local
44 exception.setStackTrace(thread.getStackTrace());
45 throw exception;

Completed in 2375 milliseconds

<<21222324252627282930>>