Searched defs:_types (Results 1 - 5 of 5) sorted by relevance

/openjdk7/hotspot/src/share/vm/ci/
H A DciSignature.hpp41 GrowableArray<ciType*>* _types; member in class:ciSignature
H A DciTypeFlow.hpp168 ciType** _types; member in class:ciTypeFlow::StateVector
246 return _types[c];
251 _types[c] = type;
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DSortSettings.java51 private int[] _types; field in class:SortSettings
88 _types = types;
114 return _types;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wsdl/document/
H A DDefinitions.java72 _types = t;
76 return _types;
164 if (_types != null) {
165 action.perform(_types);
192 if (_types != null) {
193 _types.accept(visitor);
221 private Types _types; field in class:Definitions
/openjdk7/hotspot/src/share/vm/opto/
H A DphaseX.hpp125 const Type **_types;
128 { return (i<_max) ? _types[i] : (Type*)NULL; }
131 Type_Array(Arena *a) : _a(a), _max(0), _types(0) {}
132 Type_Array(Type_Array *ta) : _a(ta->_a), _max(ta->_max), _types(ta->_types) { }
133 const Type *fast_lookup(uint i) const{assert(i<_max,"oob");return _types[i];}
135 void map( uint i, const Type *n ) { if( i>=_max ) grow(i); _types[i] = n; }
165 Type_Array _types; // Map old node indices to Types. member in class:NodeHash::PhaseTransform
188 Type_Array& types() { return _types; }
198 const Type* t = _types
[all...]

Completed in 46 milliseconds