Searched defs:catch_type (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/classfile/
H A DCodeException.java80 private int catch_type; /* If this is zero the handler catches any field in class:CodeException
108 * @param catch_type If zero the handler catches any
113 int catch_type)
118 this.catch_type = catch_type;
142 file.writeShort(catch_type);
149 public final int getCatchType() { return catch_type; }
167 * @param catch_type.
169 public final void setCatchType(int catch_type) { argument
170 this.catch_type
112 CodeException(int start_pc, int end_pc, int handler_pc, int catch_type) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DCodeExceptionGen.java82 private ObjectType catch_type; field in class:CodeExceptionGen
91 * @param catch_type which exception is handled, null for ANY
94 InstructionHandle handler_pc, ObjectType catch_type) {
98 this.catch_type = catch_type;
114 (catch_type == null)? 0 : cp.addClass(catch_type));
181 public void setCatchType(ObjectType catch_type) { this.catch_type = catch_type; } argument
93 CodeExceptionGen(InstructionHandle start_pc, InstructionHandle end_pc, InstructionHandle handler_pc, ObjectType catch_type) argument
[all...]
H A DMethodGen.java483 * @param catch_type class type of handled exception or null if any
490 ObjectType catch_type) {
495 handler_pc, catch_type);
487 addExceptionHandler(InstructionHandle start_pc, InstructionHandle end_pc, InstructionHandle handler_pc, ObjectType catch_type) argument
/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DCode_attribute.java151 catch_type = cr.readUnsignedShort();
157 public final int catch_type; field in class:Code_attribute.Exception_data
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_IR.hpp81 int catch_type() const { return _desc->catch_klass_index(); } function in class:XHandler
/openjdk7/hotspot/src/share/vm/oops/
H A DgenerateOopMap.cpp1197 int catch_type = exct.catch_type_index(i); local
1223 if (catch_type == 0) {
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DGen.java1498 int handler_pc, int catch_type) {
1507 (char)catch_type);
1496 registerCatch(DiagnosticPosition pos, int startpc, int endpc, int handler_pc, int catch_type) argument

Completed in 1511 milliseconds