Searched refs:_type (Results 1 - 25 of 158) sorted by relevance

1234567

/openjdk7/hotspot/src/share/vm/runtime/
H A DstackValue.hpp34 BasicType _type; member in class:StackValue
40 _type = T_INT;
45 _type = T_OBJECT;
52 _type = T_CONFLICT;
59 _type = t;
94 BasicType type() const { return _type; }
97 if (_type != value->_type) return false;
98 if (_type == T_OBJECT)
101 assert(_type
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wsdl/document/mime/
H A DMIMEContent.java57 return _type;
61 _type = s;
68 private String _type; field in class:MIMEContent
/openjdk7/corba/src/share/classes/org/omg/CORBA/portable/
H A DStreamable.java59 TypeCode _type(); method in interface:Streamable
/openjdk7/hotspot/src/share/vm/ci/
H A DciConstant.hpp40 BasicType _type; member in class:VALUE_OBJ_CLASS_SPEC
53 _type = T_ILLEGAL; _value._long = -1;
58 _type = type; _value._int = value;
61 _type = T_LONG; _value._long = value;
64 _type = T_FLOAT; _value._float = value;
67 _type = T_DOUBLE; _value._double = value;
70 _type = type; _value._object = p;
73 BasicType basic_type() const { return _type; }
H A DciField.hpp49 ciType* _type; member in class:ciField
105 ciType* type() { return (_type == NULL) ? compute_type() : _type; }
108 BasicType layout_type() { return type2field[(_type == NULL) ? T_OBJECT : _type->basic_type()]; }
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/model/jaxb/
H A DJAXBElementMember.java47 _type = type;
57 return _type;
60 _type = t;
81 if(_prop == null && _type != null) {
82 for (JAXBProperty prop: _type.getWrapperChildren()){
94 private JAXBType _type; field in class:JAXBElementMember
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DVariableRefBase.java127 if (_type != null) return _type;
149 _type = _variable.getType();
153 if (_type == null) {
155 _type = _variable.getType();
162 return _type;
H A DForEach.java54 private Type _type; field in class:ForEach
76 _type = _select.typeCheck(stable);
78 if (_type instanceof ReferenceType || _type instanceof NodeType) {
83 if (_type instanceof NodeSetType||_type instanceof ResultTreeType) {
108 if ((_type != null) && (_type instanceof ResultTreeType)) {
121 _type.translateTo(classGen, methodGen, Type.NodeSet);
136 if (_type instanceo
[all...]
H A DParam.java158 _type = _select.typeCheck(stable);
159 if (_type instanceof ReferenceType == false && !(_type instanceof ObjectType)) {
166 _type = Type.Reference;
186 final String signature = _type.toSignature();
187 final String className = _type.getClassName();
217 _type.translateUnBox(classGen, methodGen);
220 il.append(_type.POP());
225 _type.toJCType(),
228 il.append(_type
[all...]
H A DVariable.java101 _type = _select.typeCheck(stable);
106 _type = Type.ResultTree;
109 _type = Type.Reference;
112 // anything on the JVM's stack. The '_type' global will be returned
131 _type.toJCType(),
135 if ((_type instanceof IntType) ||
136 (_type instanceof NodeType) ||
137 (_type instanceof BooleanType))
139 else if (_type instanceof RealType)
145 _local.setStart(il.append(_type
[all...]
H A DApplyTemplates.java51 private Type _type = null; field in class:ApplyTemplates
95 _type = _select.typeCheck(stable);
96 if (_type instanceof NodeType || _type instanceof ReferenceType) {
98 _type = Type.NodeSet;
100 if (_type instanceof NodeSetType||_type instanceof ResultTreeType) {
148 if ((_type != null) && (_type instanceof ResultTreeType)) {
157 _type
[all...]
H A DBinOpExpr.java96 return _type = ptype.resultType();
109 il.append(_type.ADD());
112 il.append(_type.SUB());
115 il.append(_type.MUL());
118 il.append(_type.DIV());
121 il.append(_type.REM());
/openjdk7/corba/src/share/classes/com/sun/org/omg/CORBA/
H A DExceptionDescription.java47 public ExceptionDescription (String _name, String _id, String _defined_in, String _version, org.omg.CORBA.TypeCode _type) argument
53 type = _type;
H A DAttributeDescription.java48 public AttributeDescription (String _name, String _id, String _defined_in, String _version, org.omg.CORBA.TypeCode _type, com.sun.org.omg.CORBA.AttributeMode _mode) argument
54 type = _type;
H A DParameterDescription.java51 //public ParameterDescription (String _name, org.omg.CORBA.TypeCode _type, com.sun.org.omg.CORBA.IDLType _type_def, com.sun.org.omg.CORBA.ParameterMode _mode)
52 public ParameterDescription (String _name, org.omg.CORBA.TypeCode _type, org.omg.CORBA.IDLType _type_def, com.sun.org.omg.CORBA.ParameterMode _mode) argument
55 type = _type;
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkConstant.hpp45 ciType* _type; member in class:SharkConstant
68 _type, builder->CreateInlineOop(_object), _is_nonzero);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/model/
H A DSymbolSpace.java71 public void setType( JType _type ) {
73 this.type = _type;
/openjdk7/hotspot/src/share/vm/services/
H A DmemBaseline.hpp138 MEMFLAGS _type; member in class:MallocMem
145 _type = mtNone;
152 _type = FLAGS_TO_MEMORY_TYPE(flags);
158 _type = flag;
164 _type = mtNone;
168 assert(_type == m.type(), "different type");
189 return _type;
193 return FLAGS_TO_MEMORY_TYPE(flags) == _type;
216 MEMFLAGS _type; member in class:VMMem
224 _type
[all...]
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DForwardEntry.java130 return _type;
135 _type = type;
141 private int _type = InterfaceType.NORMAL; // interface type field in class:ForwardEntry
H A DSymtabEntry.java75 _type = that._type;
94 _type = that._type;
101 if (_type instanceof ForwardEntry)
102 ((ForwardEntry)_type).types.addElement (this);
180 return _type;
189 _type = newType;
191 if (_type instanceof ForwardEntry)
192 ((ForwardEntry)_type)
360 private SymtabEntry _type = null; field in class:SymtabEntry
[all...]
/openjdk7/corba/src/share/classes/org/omg/CORBA/
H A DAnyHolder.java104 public TypeCode _type() { method in class:AnyHolder
H A DBooleanHolder.java106 public TypeCode _type() { method in class:BooleanHolder
H A DBooleanSeqHolder.java61 public org.omg.CORBA.TypeCode _type () method in class:BooleanSeqHolder
H A DByteHolder.java107 public org.omg.CORBA.TypeCode _type() { method in class:ByteHolder
H A DCharHolder.java108 public org.omg.CORBA.TypeCode _type() { method in class:CharHolder

Completed in 70 milliseconds

1234567