Searched defs:_operations (Results 1 - 5 of 5) sorted by relevance

/openjdk7/corba/src/share/classes/com/sun/org/omg/CORBA/ValueDefPackage/
H A DFullValueDescription.java64 //public FullValueDescription (String _name, String _id, boolean _is_abstract, boolean _is_custom, String _defined_in, String _version, com.sun.org.omg.CORBA.OperationDescription[] _operations, com.sun.org.omg.CORBA.AttributeDescription[] _attributes, com.sun.org.omg.CORBA.ValueMember[] _members, com.sun.org.omg.CORBA.Initializer[] _initializers, String[] _supported_interfaces, String[] _abstract_base_values, boolean _is_truncatable, String _base_value, org.omg.CORBA.TypeCode _type)
65 public FullValueDescription (String _name, String _id, boolean _is_abstract, boolean _is_custom, String _defined_in, String _version, com.sun.org.omg.CORBA.OperationDescription[] _operations, com.sun.org.omg.CORBA.AttributeDescription[] _attributes, org.omg.CORBA.ValueMember[] _members, com.sun.org.omg.CORBA.Initializer[] _initializers, String[] _supported_interfaces, String[] _abstract_base_values, boolean _is_truncatable, String _base_value, org.omg.CORBA.TypeCode _type) argument
73 operations = _operations;
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LIR.hpp1874 LIR_OpList _operations; member in class:LIR_List
1895 _operations.append(op);
1913 LIR_OpList* instructions_list() { return &_operations; }
1914 int length() const { return _operations.length(); }
1915 LIR_Op* at(int i) const { return _operations.at(i); }
1923 void insert_before(int i, LIR_List* op_list) { _operations.insert_before(i, op_list->instructions_list()); }
1924 void insert_before(int i, LIR_Op* op) { _operations.insert_before(i, op); }
1925 void remove_at(int i) { _operations.remove_at(i); }
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/model/
H A DPort.java62 _operations.add(operation);
67 if (operationsByName.size() != _operations.size()) {
75 if (_operations != null) {
76 for (Operation operation : _operations) {
89 return _operations;
94 _operations = l;
173 private List<Operation> _operations = new ArrayList<Operation>(); field in class:Port
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wsdl/document/
H A DBinding.java50 _operations = new ArrayList();
55 _operations.add(operation);
59 return _operations.iterator();
96 for (Iterator iter = _operations.iterator(); iter.hasNext();) {
121 for (Iterator iter = _operations.iterator(); iter.hasNext();) {
163 private List _operations; field in class:Binding
H A DPortType.java46 _operations = new ArrayList();
58 _operations.add(operation);
62 return _operations.iterator();
67 for (Iterator iter = _operations.iterator(); iter.hasNext();) {
95 for (Iterator iter = _operations.iterator(); iter.hasNext();) {
104 for (Iterator iter = _operations.iterator(); iter.hasNext();) {
153 private List _operations; field in class:PortType

Completed in 63 milliseconds