HomeSort by relevance Sort by last modified time
    Searched defs:exceptions (Results 1 - 25 of 90) sorted by null

1 2 3 4

  /external/jsilver/src/com/google/clearsilver/jsilver/exceptions/
ExceptionUtil.java 17 package com.google.clearsilver.jsilver.exceptions;
22 * Class to hold utilities related to exceptions used by JSilver code.
JSilverException.java 17 package com.google.clearsilver.jsilver.exceptions;
20 * Base class for all JSilver exceptions.
JSilverInterpreterException.java 17 package com.google.clearsilver.jsilver.exceptions;
JSilverTemplateNotFoundException.java 17 package com.google.clearsilver.jsilver.exceptions;
JSilverAutoEscapingException.java 17 package com.google.clearsilver.jsilver.exceptions;
JSilverIOException.java 17 package com.google.clearsilver.jsilver.exceptions;
JSilverBadSyntaxException.java 17 package com.google.clearsilver.jsilver.exceptions;
  /external/guava/guava-testlib/src/com/google/common/testing/
ClusterException.java 27 * "throw multiple exceptions", or something close to it. The prototypical code
43 * List<Exception> exceptions = Lists.newArrayList();
48 * exceptions.add(e);
51 * if (exceptions.size() > 0) {
52 * throw ClusterException.create(exceptions);
64 public final Collection<? extends Throwable> exceptions; field in class:ClusterException
66 private ClusterException(Collection<? extends Throwable> exceptions) {
68 exceptions.size() + " exceptions were thrown. The first exception is listed as a cause.",
69 exceptions.iterator().next())
    [all...]
TearDownStack.java 61 List<Throwable> exceptions = new ArrayList<Throwable>(); local
70 exceptions.add(t);
75 if ((!suppressThrows) && (exceptions.size() > 0)) {
76 throw ClusterException.create(exceptions);
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/exceptions/
BlenderFileException.java 32 package com.jme3.scene.plugins.blender.exceptions;
  /dalvik/dx/src/com/android/dx/cf/attrib/
AttExceptions.java 23 * Attribute class for standard {@code Exceptions} attributes.
27 public static final String ATTRIBUTE_NAME = "Exceptions";
30 private final TypeList exceptions; field in class:AttExceptions
35 * @param exceptions {@code non-null;} list of classes, presumed but not
38 public AttExceptions(TypeList exceptions) {
42 if (exceptions.isMutable()) {
43 throw new MutabilityException("exceptions.isMutable()");
47 throw new NullPointerException("exceptions == null");
50 this.exceptions = exceptions;
    [all...]
  /cts/tools/signature-tools/src/signature/model/impl/
SigExecutableMember.java 36 private Set<ITypeReference> exceptions = Uninitialized.unset(); field in class:SigExecutableMember
59 return exceptions;
62 public void setExceptions(Set<ITypeReference> exceptions) {
63 this.exceptions = exceptions;
  /external/stlport/stlport/stl/
_ios.h 97 iostate exceptions() const { return this->_M_get_exception_mask(); } function in class:basic_ios
98 void exceptions(iostate __mask) { function in class:basic_ios
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
ConstructorTest.java 25 Class[] exceptions = constructor.getExceptionTypes(); local
26 assertEquals(1, exceptions.length);
27 assertEquals(IndexOutOfBoundsException.class, exceptions[0]);
29 exceptions[0] = NullPointerException.class;
30 exceptions = constructor.getExceptionTypes();
31 assertEquals(1, exceptions.length);
32 assertEquals(IndexOutOfBoundsException.class, exceptions[0]);
GenericExceptionsTest.java 80 Type[] exceptions = method.getGenericExceptionTypes(); local
81 TypeVariable t = (TypeVariable) exceptions[0];
82 assertEquals(3, exceptions.length);
85 assertEquals(Exception.class, exceptions[1]);
86 TypeVariable x = (TypeVariable) exceptions[2];
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_ios.h 97 iostate exceptions() const { return this->_M_get_exception_mask(); } function in class:basic_ios
98 void exceptions(iostate __mask) { function in class:basic_ios
  /prebuilts/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/
_ios.h 97 iostate exceptions() const { return this->_M_get_exception_mask(); } function in class:basic_ios
98 void exceptions(iostate __mask) { function in class:basic_ios
  /prebuilts/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/
_ios.h 97 iostate exceptions() const { return this->_M_get_exception_mask(); } function in class:basic_ios
98 void exceptions(iostate __mask) { function in class:basic_ios
  /prebuilts/ndk/android-ndk-r7/sources/cxx-stl/stlport/stlport/stl/
_ios.h 97 iostate exceptions() const { return this->_M_get_exception_mask(); } function in class:basic_ios
98 void exceptions(iostate __mask) { function in class:basic_ios
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
Rop.java 65 private final TypeList exceptions; field in class:Rop
87 * @param exceptions {@code non-null;} list of possible types thrown by this
95 TypeList exceptions, int branchingness, boolean isCallLike,
105 if (exceptions == null) {
106 throw new NullPointerException("exceptions == null");
113 if ((exceptions.size() != 0) && (branchingness != BRANCH_THROW)) {
114 throw new IllegalArgumentException("exceptions / branchingness " +
121 this.exceptions = exceptions;
135 * @param exceptions {@code non-null;} list of possible types thrown by thi
    [all...]
  /dalvik/dx/src/com/android/dx/rop/code/
Rop.java 65 private final TypeList exceptions; field in class:Rop
87 * @param exceptions {@code non-null;} list of possible types thrown by this
95 TypeList exceptions, int branchingness, boolean isCallLike,
105 if (exceptions == null) {
106 throw new NullPointerException("exceptions == null");
113 if ((exceptions.size() != 0) && (branchingness != BRANCH_THROW)) {
114 throw new IllegalArgumentException("exceptions / branchingness " +
121 this.exceptions = exceptions;
135 * @param exceptions {@code non-null;} list of possible types thrown by thi
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
Rop.java 65 private final TypeList exceptions; field in class:Rop
87 * @param exceptions {@code non-null;} list of possible types thrown by this
95 TypeList exceptions, int branchingness, boolean isCallLike,
105 if (exceptions == null) {
106 throw new NullPointerException("exceptions == null");
113 if ((exceptions.size() != 0) && (branchingness != BRANCH_THROW)) {
114 throw new IllegalArgumentException("exceptions / branchingness " +
121 this.exceptions = exceptions;
135 * @param exceptions {@code non-null;} list of possible types thrown by thi
    [all...]
  /external/javassist/src/main/javassist/bytecode/analysis/
SubroutineScanner.java 51 ExceptionTable exceptions = code.getExceptionTable(); local
52 for (int i = 0; i < exceptions.size(); i++) {
53 int handler = exceptions.handlerPc(i);
56 scan(handler, iter, subroutines[exceptions.startPc(i)]);
  /frameworks/base/core/tests/utillib/src/android/test/
BandwidthTestCase.java 76 final Throwable[] exceptions = new Throwable[1]; local
82 exceptions[0] = throwable;
86 if (exceptions[0] != null) {
87 throw exceptions[0];
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
basic_ios.h 152 // exceptions().
159 if (this->exceptions() & __state)
205 * @brief Throwing exceptions on errors.
206 * @return The current exceptions mask.
209 * of exceptions(iostate) for the meaning of the return value.
212 exceptions() const function in class:basic_ios
216 * @brief Throwing exceptions on errors.
217 * @param except The new exceptions mask.
220 * exceptions mask for each stream; if a bit in the mask becomes set
224 * If the error flag is already set when the exceptions mask i
247 exceptions(iostate __except) function in class:basic_ios
    [all...]

Completed in 3442 milliseconds

1 2 3 4