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

1 2 3 4

  /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...]
  /dalvik/libcore/luni-kernel/src/test/java/java/lang/reflect/
ConstructorTest.java 22 Class[] exceptions = constructor.getExceptionTypes(); local
23 assertEquals(1, exceptions.length);
24 assertEquals(IndexOutOfBoundsException.class, exceptions[0]);
26 exceptions[0] = NullPointerException.class;
27 exceptions = constructor.getExceptionTypes();
28 assertEquals(1, exceptions.length);
29 assertEquals(IndexOutOfBoundsException.class, exceptions[0]);
MethodTest.java 22 Class[] exceptions = method.getExceptionTypes(); local
23 assertEquals(1, exceptions.length);
24 assertEquals(IndexOutOfBoundsException.class, exceptions[0]);
26 exceptions[0] = NullPointerException.class;
27 exceptions = method.getExceptionTypes();
28 assertEquals(1, exceptions.length);
29 assertEquals(IndexOutOfBoundsException.class, exceptions[0]);
  /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;
  /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/emma/core/java12/com/vladium/jcd/cls/attribute/
ExceptionsAttribute_info.java 18 * The Exceptions attribute is a variable-length attribute used in the attributes
19 * table of a {@link com.vladium.jcd.cls.Method_info} structure. The Exceptions
20 * attribute indicates which checked exceptions a method may throw. There must be
21 * exactly one Exceptions attribute in each method_info structure.<P>
23 * The Exceptions attribute has the following format:
52 final IDeclaredExceptionTable exceptions)
54 super (attribute_name_index, exceptions.length ());
56 m_exceptions = exceptions;
  /frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/
uios.h 95 inline iostate exceptions (void) const { return (m_Exceptions); } function in class:ustl::ios_base
96 inline iostate exceptions (iostate v) { return (m_Exceptions = v); } function in class:ustl::ios_base
98 inline bool set_and_throw (iostate v) { setstate(v); return (exceptions() & v); }
ofstream.h 30 inline iostate exceptions (iostate v) { ostringstream::exceptions(v); return (m_File.exceptions(v)); } function in class:ustl::ofstream
58 inline iostate exceptions (iostate v) { istringstream::exceptions(v); return (m_File.exceptions(v)); } function in class:ustl::ifstream
  /dalvik/libcore/security/src/test/java/org/apache/harmony/security/tests/java/security/
PrivilegedExceptionActionTest.java 65 Exception[] exceptions = {new NullPointerException(), new IOException(), null}; local
66 for (int i = 0; i < exceptions.length; i++) {
67 Exception exception = exceptions[i];
KeyFactoryTest.java 75 Class[] exceptions = { local
87 checkException(message, e, exceptions[i]);
89 checkException(message, null, exceptions[i]);
120 Class[] exceptions = { local
136 checkException(message, e, exceptions[i]);
138 checkException(message, null, exceptions[i]);
171 Class[] exceptions = { local
189 checkException(message, e, exceptions[i]);
191 checkException(message, null, exceptions[i]);
229 Class[] exceptions = local
283 Class[] exceptions = { local
364 Class[] exceptions = { local
437 Class[] exceptions = { local
    [all...]
  /development/tools/mkstubs/src/com/android/mkstubs/stubber/
ClassStubber.java 62 String[] exceptions) {
63 MethodVisitor mw = super.visitMethod(access, name, desc, signature, exceptions);
64 return new MethodStubber(mw, access, name, desc, signature, exceptions);
  /frameworks/base/core/java/android/test/
InstrumentationTestCase.java 134 final Throwable[] exceptions = new Throwable[1]; local
140 exceptions[0] = throwable;
144 if (exceptions[0] != null) {
145 throw exceptions[0];
180 final Throwable[] exceptions = new Throwable[1]; local
186 exceptions[0] = throwable;
190 if (exceptions[0] != null) {
191 throw exceptions[0];
260 // Ignore security exceptions that are now thrown
291 // Ignore security exceptions that are now throw
    [all...]
  /external/stlport/src/
iostream.cpp 255 // We don't want any exceptions being thrown here
256 ptr_cin->exceptions(0);
257 ptr_cout->exceptions(0);
258 ptr_cerr->exceptions(0);
259 ptr_clog->exceptions(0);
277 // We don't want any exceptions being thrown here
278 ptr_wcin->exceptions(0);
279 ptr_wcout->exceptions(0);
280 ptr_wcerr->exceptions(0);
281 ptr_wclog->exceptions(0)
    [all...]
  /build/tools/droiddoc/src/
PackageInfo.java 126 ClassInfo.makeLinkListHDF(data, base + ".exceptions", exceptions());
157 public ClassInfo[] exceptions() method in class:PackageInfo
161 mPackage.exceptions())));
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
TransformClassAdapter.java 103 String signature, String[] exceptions) {
143 MethodVisitor mw = super.visitMethod(access, name, desc, signature, exceptions);
149 return super.visitMethod(access, name, desc, signature, exceptions);
ClassHasNativeVisitor.java 67 String signature, String[] exceptions) {
  /dalvik/dx/src/com/android/dx/dex/cf/
AttributeTranslator.java 65 * Gets the list of thrown exceptions for a given method.
68 * @return {@code non-null;} the list of thrown exceptions
72 AttExceptions exceptions = (AttExceptions) local
75 if (exceptions == null) {
79 return exceptions.getExceptions();
151 * of the method-specific attribute {@code Exceptions}.
158 TypeList exceptions = getExceptions(method); local
160 if (exceptions.size() != 0) {
162 AnnotationUtils.makeThrows(exceptions);
  /external/stlport/test/eh/
cygwin.mak 79 echo "Cygwin has bugs in exception handling, runnning w/o throwing exceptions..."
83 echo "Cygwin has bugs in exception handling, runnning w/o throwing exceptions..."
87 echo "Cygwin has bugs in exception handling, runnning w/o throwing exceptions..."
  /external/v8/test/mjsunit/
instanceof.js 70 var exceptions = 0;
79 exceptions++;
84 assertEquals(88, exceptions);
  /development/pdk/pndk/config/
config.mk 25 $(CC) $(CFLAGS) -fno-exceptions -fno-rtti $(INC) -o $@ -c $<
  /development/tools/mkstubs/src/com/android/mkstubs/
FilterClassAdapter.java 97 String signature, String[] exceptions) {
124 return super.visitMethod(access, name, desc, signature, exceptions);
  /development/tools/mkstubs/src/com/android/mkstubs/sourcer/
ClassSourcer.java 120 String[] exceptions) {
123 return new MethodSourcer(mOutput, mClassName, access, name, desc, signature, 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
  /build/core/combo/
select.mk 48 $(combo_target)GLOBAL_CFLAGS := -fno-exceptions -Wno-multichar
  /external/stlport/stlport/stl/config/
_apple.h 55 #if !__option(exceptions)

Completed in 618 milliseconds

1 2 3 4