Searched refs:_interface (Results 1 - 10 of 10) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJClassContainer.java82 public JDefinedClass _interface(int mods, String name) throws JClassAlreadyExistsException; method in interface:JClassContainer
90 public JDefinedClass _interface(String name) throws JClassAlreadyExistsException; method in interface:JClassContainer
H A DJPackage.java216 public JDefinedClass _interface(int mods, String name) throws JClassAlreadyExistsException { method in class:JPackage
223 public JDefinedClass _interface(String name) throws JClassAlreadyExistsException { method in class:JPackage
224 return _interface(JMod.PUBLIC, name);
H A DJDefinedClass.java675 public JDefinedClass _interface(int mods, String name) method in class:JDefinedClass
683 public JDefinedClass _interface(String name) method in class:JDefinedClass
685 return _interface(JMod.PUBLIC, name);
/openjdk7/hotspot/src/share/vm/oops/
H A DklassVtable.hpp203 klassOop _interface; member in class:VALUE_OBJ_CLASS_SPEC
206 klassOop interface_klass() const { return _interface; }
212 void initialize(klassOop interf, int offset) { _interface = interf; _offset = offset; }
216 static int interface_offset_in_bytes() { return offset_of(itableOffsetEntry, _interface); }
H A DklassVtable.cpp777 MarkSweep::mark_and_push((oop*)&ioe->_interface);
794 PSParallelCompact::mark_and_push(cm, (oop*)&ioe->_interface);
811 MarkSweep::adjust_pointer((oop*)&ioe->_interface);
828 PSParallelCompact::adjust_pointer((oop*)&ioe->_interface);
846 blk->do_oop((oop*)&ioe->_interface);
862 oop* adr = (oop*)&ioe->_interface;
/openjdk7/hotspot/src/share/vm/adlc/
H A Doutput_h.cpp370 CondInterface* cond = oper->_interface->is_CondInterface();
1302 if (oper->_interface != NULL) {
1305 if ( oper->_interface->is_MemInterface() != NULL ) {
1306 MemInterface *mem_interface = oper->_interface->is_MemInterface();
1332 else if (oper->_interface->is_CondInterface() != NULL) {
1333 CondInterface *cInterface = oper->_interface->is_CondInterface();
1360 else if (oper->_interface->is_ConstInterface() != NULL ) {
1416 else if (oper->_interface->is_RegInterface() != NULL) {
H A Dformssel.cpp938 if (op->_interface && op->_interface->is_RegInterface()) {
961 if (op->_interface && op->_interface->is_RegInterface()) {
2005 _interface = NULL;
2018 _interface = NULL;
2038 if( _interface == NULL ) return Form::no_interface;
2040 return _interface->interface_type(globals);
2218 if (_interface && !_interface
[all...]
H A Dformssel.hpp570 Interface *_interface; // Encoding interface for this operand member in class:InstructForm::OperandForm
H A Doutput_c.cpp1727 if (op && op->_interface && op->_interface->is_RegInterface()) {
2022 assert( ( _operand->_interface != NULL ),
2024 MemInterface *mem_interface= _operand->_interface->is_MemInterface();
2904 MemInterface *mem_interface = oper._interface->is_MemInterface();
H A Dadlparse.cpp456 else if (!strcmp(ident, "encode")) oper->_interface = interface_parse();
475 else if (!strcmp(ident, "interface")) oper->_interface = interface_parse();

Completed in 1954 milliseconds