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

/openjdk10/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);
/openjdk10/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...]
/openjdk10/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
/openjdk10/hotspot/src/share/vm/interpreter/
H A Drewriter.cpp79 int len = _methods->length();
83 Method* method = _methods->at(i);
519 int i = _methods->length();
521 Method* method = _methods->at(i);
535 int len = _methods->length();
539 Method* method = _methods->at(i);
569 _methods(methods),
602 int len = _methods->length();
604 methodHandle m(THREAD, _methods->at(i));
H A Drewriter.hpp39 Array<Method*>* _methods; member in class:Rewriter
/openjdk10/hotspot/src/share/vm/oops/
H A Dmethod.cpp1936 Method** _methods; member in class:JNIMethodBlockNode
1945 ~JNIMethodBlockNode() { FREE_C_HEAP_ARRAY(Method*, _methods); }
1980 b->_methods[i] = m;
1983 return &(b->_methods[i]);
1987 if (b->_methods[i] == _free_method) {
1988 b->_methods[i] = m;
1990 return &(b->_methods[i]);
2009 if (b->_methods <= m && m < b->_methods + b->_number_of_methods) {
2018 ptrdiff_t idx = m - b->_methods;
[all...]
H A DinstanceKlass.hpp264 Array<Method*>* _methods; member in class:InstanceKlass
378 Array<Method*>* methods() const { return _methods; }
379 void set_methods(Array<Method*>* a) { _methods = a; }
H A DinstanceKlass.cpp235 assert(NULL == _methods, "underlying memory not zeroed?");
2018 it->push(&_methods);
/openjdk10/hotspot/src/share/vm/ci/
H A DciReplay.cpp55 Method** _methods; member in struct:_ciMethodDataRecord
636 rec->_methods = NEW_RESOURCE_ARRAY(Method*, rec->_methods_length);
645 rec->_methods[i] = m;
1148 Method *m = rec->_methods[i];
/openjdk10/hotspot/src/share/vm/classfile/
H A DclassFileParser.cpp2888 // Side-effects: populates the _methods field in the parser
2900 assert(NULL == _methods, "invariant");
2905 _methods = Universe::the_empty_method_array();
2907 _methods = MetadataFactory::new_array<Method*>(_loader_data,
2928 _methods->at_put(index, method);
2943 const Method* const m = _methods->at(i);
3527 this_klass->set_methods(_methods);
5339 assert(NULL == _methods, "invariant");
5600 _methods(NULL),
5704 _methods
[all...]
H A DjavaClasses.cpp1592 typeArrayOop _methods; member in class:BacktraceBuilder
1634 BacktraceBuilder(TRAPS): _methods(NULL), _bcis(NULL), _head(NULL), _mirrors(NULL), _names(NULL) {
1641 _methods = get_methods(backtrace);
1645 assert(_methods->length() == _bcis->length() &&
1646 _methods->length() == _mirrors->length() &&
1684 _methods = new_methods();
1707 _methods->short_at_put(_index, method->orig_method_idnum());
1738 typeArrayHandle _methods; member in class:BacktraceIterator
1746 _methods = typeArrayHandle(thread, BacktraceBuilder::get_methods(_result));
1756 assert(_methods
[all...]
H A DclassFileParser.hpp98 Array<Method*>* _methods; member in class:VALUE_OBJ_CLASS_SPEC
/openjdk10/hotspot/src/share/vm/runtime/
H A DvmStructs.cpp244 nonstatic_field(InstanceKlass, _methods, Array<Method*>*) \

Completed in 404 milliseconds