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

12345678

/openjdk9/hotspot/src/share/vm/runtime/
H A DstackValue.hpp33 BasicType _type; member in class:StackValue
39 _type = T_INT;
44 _type = T_OBJECT;
51 _type = T_CONFLICT;
58 _type = t;
93 BasicType type() const { return _type; }
96 if (_type != value->_type) return false;
97 if (_type == T_OBJECT)
100 assert(_type
[all...]
H A DcommandLineFlagWriteableList.hpp43 WriteableType _type; member in class:CommandLineFlagWriteable
48 CommandLineFlagWriteable(const char* name, WriteableType type) { _name=name; _type=type; _writeable=true; _startup_done=false; }
51 const WriteableType type() { return _type; }
/openjdk9/jaxws/src/jdk.xml.ws/share/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
/openjdk9/corba/src/java.corba/share/classes/org/omg/CORBA/portable/
H A DStreamable.java59 TypeCode _type(); method in interface:Streamable
/openjdk9/jdk/make/gensrc/
H A DGensrcVarHandles.gmk57 $$(eval $1_type := $$($1_Type))
59 $$(eval $1_type := $$$$(shell $(TR) '[:upper:]' '[:lower:]' <<< $$$$($1_Type)))
62 $(TOOL_SPP) -nel -K$$($1_type) -Dtype=$$($1_type) -DType=$$($1_Type) \
81 $1_type := short
84 $1_rawType := $$($1_type)
90 $1_type := char
93 $1_rawType := $$($1_type)
99 $1_type := int
102 $1_rawType := $$($1_type)
[all...]
/openjdk9/jaxws/src/jdk.xml.ws/share/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
/openjdk9/hotspot/src/share/vm/compiler/
H A DabstractCompiler.hpp87 const CompilerType _type; member in class:AbstractCompiler
94 AbstractCompiler(CompilerType type) : _type(type), _compiler_state(uninitialized), _num_compiler_threads(0) {}
152 const bool is_c1() { return _type == compiler_c1; }
153 const bool is_c2() { return _type == compiler_c2; }
154 const bool is_jvmci() { return _type == compiler_jvmci; }
155 const bool is_shark() { return _type == compiler_shark; }
156 const CompilerType type() { return _type; }
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DVariableRefBase.java125 if (_type != null) return _type;
147 _type = _variable.getType();
151 if (_type == null) {
153 _type = _variable.getType();
160 return _type;
H A DForEach.java55 private Type _type; field in class:ForEach
77 _type = _select.typeCheck(stable);
79 if (_type instanceof ReferenceType || _type instanceof NodeType) {
84 if (_type instanceof NodeSetType||_type instanceof ResultTreeType) {
109 if ((_type != null) && (_type instanceof ResultTreeType)) {
122 _type.translateTo(classGen, methodGen, Type.NodeSet);
137 if (_type instanceo
[all...]
H A DVariable.java99 _type = _select.typeCheck(stable);
104 _type = Type.ResultTree;
107 _type = Type.Reference;
110 // anything on the JVM's stack. The '_type' global will be returned
129 _type.toJCType(),
133 if ((_type instanceof IntType) ||
134 (_type instanceof NodeType) ||
135 (_type instanceof BooleanType))
137 else if (_type instanceof RealType)
143 _local.setStart(il.append(_type
[all...]
H A DParam.java156 _type = _select.typeCheck(stable);
157 if (_type instanceof ReferenceType == false && !(_type instanceof ObjectType)) {
164 _type = Type.Reference;
184 final String signature = _type.toSignature();
185 final String className = _type.getClassName();
215 _type.translateUnBox(classGen, methodGen);
218 il.append(_type.POP());
223 _type.toJCType(),
226 il.append(_type
[all...]
H A DApplyTemplates.java49 private Type _type = null; field in class:ApplyTemplates
93 _type = _select.typeCheck(stable);
94 if (_type instanceof NodeType || _type instanceof ReferenceType) {
96 _type = Type.NodeSet;
98 if (_type instanceof NodeSetType||_type instanceof ResultTreeType) {
144 if ((_type != null) && (_type instanceof ResultTreeType)) {
153 _type
[all...]
H A DBinOpExpr.java94 return _type = ptype.resultType();
107 il.append(_type.ADD());
110 il.append(_type.SUB());
113 il.append(_type.MUL());
116 il.append(_type.DIV());
119 il.append(_type.REM());
/openjdk9/corba/src/java.corba/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 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;
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;
/openjdk9/hotspot/src/share/vm/shark/
H A DsharkConstant.hpp45 ciType* _type; member in class:SharkConstant
68 _type, builder->CreateInlineOop(_object), _is_nonzero);
/openjdk9/hotspot/src/share/vm/ci/
H A DciConstant.hpp40 BasicType _type; member in class:VALUE_OBJ_CLASS_SPEC
52 _type = T_ILLEGAL; _value._long = -1;
57 _type = type; _value._int = value;
60 _type = T_LONG; _value._long = value;
63 _type = T_FLOAT; _value._float = value;
66 _type = T_DOUBLE; _value._double = value;
69 _type = type; _value._object = p;
72 BasicType basic_type() const { return _type; }
H A DciField.hpp48 ciType* _type; member in class:ciField
101 ciType* type() { return (_type == NULL) ? compute_type() : _type; }
104 BasicType layout_type() { return type2field[(_type == NULL) ? T_OBJECT : _type->basic_type()]; }
/openjdk9/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/xjc/model/
H A DSymbolSpace.java71 public void setType( JType _type ) {
73 this.type = _type;
/openjdk9/corba/src/java.corba/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...]
/openjdk9/corba/src/java.corba/share/classes/org/omg/CORBA/
H A DDoubleHolder.java104 public org.omg.CORBA.TypeCode _type() { method in class:DoubleHolder
H A DDoubleSeqHolder.java61 public org.omg.CORBA.TypeCode _type () method in class:DoubleSeqHolder
H A DPrincipalHolder.java89 public org.omg.CORBA.TypeCode _type() { method in class:PrincipalHolder

Completed in 334 milliseconds

12345678