HomeSort by relevance Sort by last modified time
    Searched full:exception_info (Results 1 - 9 of 9) sorted by null

  /external/emma/core/java12/com/vladium/jcd/cls/attribute/
IExceptionHandlerTable.java 16 * It is a table of {@link Exception_info} entries, each entry representing an
31 * Returns {@link Exception_info} descriptor at a given offset.
34 * @return Exception_info descriptor [never null]
38 Exception_info get (int offset);
58 * Adds a new Exception_info descriptor to this collection. No duplicate
65 int add (Exception_info exception);
68 * Replaces the Exception_info descriptor at a given offset. No duplicate
80 Exception_info set (int offset, Exception_info exception);
ExceptionHandlerTable.java 27 public Exception_info get (final int offset)
29 return (Exception_info) m_exceptions.get (offset);
58 _clone.m_exceptions.add (((Exception_info) m_exceptions.get (e)).clone ());
85 public int add (final Exception_info exception)
93 public Exception_info set (final int offset, final Exception_info exception)
95 return (Exception_info) m_exceptions.set (offset, exception);
111 private List/* Exception_info */ m_exceptions;
Exception_info.java 7 * $Id: Exception_info.java,v 1.1.1.1 2004/05/09 16:57:48 vlad_r Exp $
19 * An Exception_info is an entry layout format for {@link ExceptionHandlerTable}. Each
57 final class Exception_info implements Cloneable, IClassFormatOutput
65 public Exception_info (final int start_pc, final int end_pc,
77 return "exception_info: [start_pc/end_pc = " + m_start_pc + '/' + m_end_pc +
114 Exception_info (final UDataInputStream bytes) throws IOException
CodeAttribute_info.java 65 * exception handler in the code array: see {@link Exception_info}.<P>
229 Exception_info exception_info = new Exception_info (bytes); local
230 if (DEBUG) System.out.println ("\t[" + i + "] exception: " + exception_info);
232 m_exceptionHandlerTable.add (exception_info);
  /external/clang/test/Sema/
__try.c 11 struct EXCEPTION_INFO{};
14 struct EXCEPTION_INFO* __exception_info();
24 DWORD FilterExceptionInformation(struct EXCEPTION_INFO*);
  /external/chromium_org/components/breakpad/app/
breakpad_linux.cc 1193 static const char exception_info[] = "exception_info"; local
    [all...]
  /external/chromium_org/native_client_sdk/src/tools/
create_nmf.py 94 except OSError as exception_info:
95 if exception_info.errno != errno.EEXIST:
  /external/emma/core/java12/com/vladium/emma/instr/
InstrVisitor.java 728 final Exception_info exception = exceptions.get (e);
    [all...]
  /external/emma/lib/
emma.jar 

Completed in 880 milliseconds