Searched defs:_exceptions (Results 1 - 10 of 10) sorted by relevance

/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/corba/
H A DExceptionListImpl.java47 private Vector _exceptions; field in class:ExceptionListImpl
50 _exceptions = new Vector(INITIAL_CAPACITY, CAPACITY_INCREMENT);
55 return _exceptions.size();
60 _exceptions.addElement(tc);
67 return (TypeCode) _exceptions.elementAt(index);
77 _exceptions.removeElementAt(index);
H A DRequestImpl.java78 protected ExceptionList _exceptions; field in class:RequestImpl
133 _exceptions = new ExceptionListImpl();
135 _exceptions = exceptionList;
175 return _exceptions;
241 _exceptions.add(exceptionType);
/openjdk7/hotspot/src/share/vm/utilities/
H A Devents.cpp49 StringEventLog* Events::_exceptions = NULL; member in class:Events
78 _exceptions = new StringEventLog("Internal exceptions");
H A Devents.hpp184 static StringEventLog* _exceptions; member in class:Events
221 _exceptions->logv(thread, format, ap);
/openjdk7/corba/src/share/classes/com/sun/org/omg/CORBA/
H A DOperationDescription.java51 public OperationDescription (String _name, String _id, String _defined_in, String _version, org.omg.CORBA.TypeCode _result, com.sun.org.omg.CORBA.OperationMode _mode, String[] _contexts, com.sun.org.omg.CORBA.ParameterDescription[] _parameters, com.sun.org.omg.CORBA.ExceptionDescription[] _exceptions) argument
61 exceptions = _exceptions;
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DMethodEntry.java60 _exceptions = (Vector)that._exceptions.clone ();
109 _exceptions.addElement (exception);
115 return _exceptions;
190 private Vector _exceptions = new Vector (); field in class:MethodEntry
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/util/
H A DClassNameCollector.java53 _exceptions = new HashSet();
66 _exceptions = null;
139 if (!_exceptions.contains(fault.getJavaException())) {
144 _exceptions.add(fault.getJavaException());
259 private Set _exceptions; field in class:ClassNameCollector
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkTopLevelBlock.hpp108 GrowableArray<SharkTopLevelBlock*>* _exceptions; member in class:SharkTopLevelBlock
121 return _exceptions->at(index);
/openjdk7/hotspot/src/share/vm/opto/
H A DgraphKit.hpp63 SafePointNode* _exceptions;// Parser map(s) for exception state(s) member in class:GraphKit
135 bool has_exceptions() const { return _exceptions != NULL; }
218 SafePointNode* ex_map = _exceptions;
220 _exceptions = ex_map->next_exception();
230 ex_map->set_next_exception(_exceptions);
231 _exceptions = ex_map;
244 if (_exceptions == NULL) return NULL;
/openjdk7/hotspot/src/share/vm/ci/
H A DciTypeFlow.hpp529 GrowableArray<Block*>* _exceptions; member in class:ciTypeFlow::Block
622 if (_exceptions == NULL) {
625 return _exceptions;

Completed in 91 milliseconds