Searched refs:_methods (Results 1 - 14 of 14) sorted by relevance

/openjdk9/corba/src/java.corba/share/classes/com/sun/org/omg/SendingContext/
H A D_CodeBaseImplBase.java44 private static java.util.Hashtable _methods = new java.util.Hashtable (); field in class:_CodeBaseImplBase
47 _methods.put ("get_ir", new java.lang.Integer (0));
48 _methods.put ("implementation", new java.lang.Integer (1));
49 _methods.put ("implementations", new java.lang.Integer (2));
50 _methods.put ("meta", new java.lang.Integer (3));
51 _methods.put ("metas", new java.lang.Integer (4));
52 _methods.put ("bases", new java.lang.Integer (5));
60 java.lang.Integer __method = (java.lang.Integer)_methods.get (method);
/openjdk9/corba/src/java.corba/share/classes/org/omg/CosNaming/
H A D_BindingIteratorImplBase.java46 private static java.util.Dictionary _methods = new java.util.Hashtable(); field in class:_BindingIteratorImplBase
48 _methods.put("next_one", new java.lang.Integer(0));
49 _methods.put("next_n", new java.lang.Integer(1));
50 _methods.put("destroy", new java.lang.Integer(2));
54 switch (((java.lang.Integer) _methods.get(r.op_name())).intValue()) {
H A D_NamingContextImplBase.java46 private static java.util.Dictionary _methods = new java.util.Hashtable(); field in class:_NamingContextImplBase
48 _methods.put("bind", new java.lang.Integer(0));
49 _methods.put("bind_context", new java.lang.Integer(1));
50 _methods.put("rebind", new java.lang.Integer(2));
51 _methods.put("rebind_context", new java.lang.Integer(3));
52 _methods.put("resolve", new java.lang.Integer(4));
53 _methods.put("unbind", new java.lang.Integer(5));
54 _methods.put("list", new java.lang.Integer(6));
55 _methods.put("new_context", new java.lang.Integer(7));
56 _methods
[all...]
/openjdk9/corba/src/java.corba/share/classes/com/sun/tools/corba/se/idl/
H A DInterfaceEntry.java61 _methods = (Vector)that._methods.clone ();
154 _methods.addElement (method);
161 return _methods;
347 private Vector _methods = new Vector(); field in class:InterfaceEntry
/openjdk9/hotspot/src/share/vm/interpreter/
H A Drewriter.cpp78 int len = _methods->length();
82 Method* method = _methods->at(i);
509 int i = _methods->length();
511 Method* method = _methods->at(i);
525 int len = _methods->length();
529 Method* method = _methods->at(i);
559 _methods(methods),
592 int len = _methods->length();
594 methodHandle m(THREAD, _methods->at(i));
H A Drewriter.hpp39 Array<Method*>* _methods; member in class:Rewriter
/openjdk9/hotspot/src/share/vm/oops/
H A Dmethod.cpp1933 Method** _methods; member in class:JNIMethodBlockNode
1942 ~JNIMethodBlockNode() { FREE_C_HEAP_ARRAY(Method*, _methods); }
1977 b->_methods[i] = m;
1980 return &(b->_methods[i]);
1984 if (b->_methods[i] == _free_method) {
1985 b->_methods[i] = m;
1987 return &(b->_methods[i]);
2006 if (b->_methods <= m && m < b->_methods + b->_number_of_methods) {
2015 ptrdiff_t idx = m - b->_methods;
[all...]
H A DinstanceKlass.hpp263 Array<Method*>* _methods; member in class:InstanceKlass
379 Array<Method*>* methods() const { return _methods; }
380 void set_methods(Array<Method*>* a) { _methods = a; }
H A DinstanceKlass.cpp232 assert(NULL == _methods, "underlying memory not zeroed?");
/openjdk9/hotspot/src/share/vm/ci/
H A DciReplay.cpp54 Method** _methods; member in struct:_ciMethodDataRecord
627 rec->_methods = NEW_RESOURCE_ARRAY(Method*, rec->_methods_length);
636 rec->_methods[i] = m;
1132 Method *m = rec->_methods[i];
/openjdk9/hotspot/src/share/vm/classfile/
H A DclassFileParser.cpp2868 // Side-effects: populates the _methods field in the parser
2880 assert(NULL == _methods, "invariant");
2885 _methods = Universe::the_empty_method_array();
2887 _methods = MetadataFactory::new_array<Method*>(_loader_data,
2909 _methods->at_put(index, method);
2922 const Method* const m = _methods->at(i);
3504 this_klass->set_methods(_methods);
5312 assert(NULL == _methods, "invariant");
5573 _methods(NULL),
5658 _methods
[all...]
H A DjavaClasses.cpp1578 typeArrayOop _methods; member in class:BacktraceBuilder
1620 BacktraceBuilder(TRAPS): _methods(NULL), _bcis(NULL), _head(NULL), _mirrors(NULL), _cprefs(NULL) {
1627 _methods = get_methods(backtrace);
1631 assert(_methods->length() == _bcis->length() &&
1632 _methods->length() == _mirrors->length(),
1668 _methods = new_methods();
1691 _methods->short_at_put(_index, method->orig_method_idnum());
1718 typeArrayHandle _methods; member in class:BacktraceIterator
1726 _methods = typeArrayHandle(thread, BacktraceBuilder::get_methods(_result));
1736 assert(_methods
[all...]
H A DclassFileParser.hpp91 Array<Method*>* _methods; member in class:VALUE_OBJ_CLASS_SPEC
/openjdk9/hotspot/src/share/vm/runtime/
H A DvmStructs.cpp245 nonstatic_field(InstanceKlass, _methods, Array<Method*>*) \

Completed in 303 milliseconds