OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:m_exceptions
(Results
1 - 3
of
3
) sorted by null
/external/emma/core/java12/com/vladium/jcd/cls/attribute/
ExceptionHandlerTable.java
29
return (Exception_info)
m_exceptions
.get (offset);
34
return
m_exceptions
.size ();
39
return 2 + (
m_exceptions
.size () << 3); // use size() if class becomes non-final
54
final int exceptions_count =
m_exceptions
.size (); // use size() if class becomes non-final
55
_clone.
m_exceptions
= new ArrayList (exceptions_count);
58
_clone.
m_exceptions
.add (((Exception_info)
m_exceptions
.get (e)).clone ());
73
int exception_table_length =
m_exceptions
.size (); // use size() if class becomes non-final
87
final int newoffset =
m_exceptions
.size (); // use size() if class becomes non-final
88
m_exceptions
.add (exception)
[
all
...]
DeclaredExceptionTable.java
28
return
m_exceptions
.get (offset);
33
return
m_exceptions
.size ();
38
return (1 +
m_exceptions
.size ()) << 1; // use size() if class becomes non-final
53
_clone.
m_exceptions
= (IntVector)
m_exceptions
.clone ();
67
int number_of_exceptions =
m_exceptions
.size (); // use size() if class becomes non-final
81
final int newoffset =
m_exceptions
.size (); // use size() if class becomes non-final
82
m_exceptions
.add (exception_index);
89
return
m_exceptions
.set (offset, exception_index);
99
m_exceptions
= capacity < 0 ? new IntVector () : new IntVector (capacity)
[
all
...]
ExceptionsAttribute_info.java
56
m_exceptions
= exceptions;
61
return
m_exceptions
;
66
return 6 +
m_exceptions
.length ();
92
_clone.
m_exceptions
= (IDeclaredExceptionTable)
m_exceptions
.clone ();
103
m_exceptions
.writeInClassFormat (out);
119
m_exceptions
= new DeclaredExceptionTable (number_of_exceptions);
125
m_exceptions
.add (exception_index);
132
private IDeclaredExceptionTable
m_exceptions
;
field in class:ExceptionsAttribute_info
Completed in 533 milliseconds