Searched refs:_types (Results 1 - 8 of 8) sorted by relevance

/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/hotspot/src/share/vm/ci/
H A DciSignature.cpp47 _types = new (arena) GrowableArray<ciType*>(arena, 8, 0, NULL);
71 _types->append(type);
94 _types = new (arena) GrowableArray<ciType*>(arena, _count + 1, 0, NULL);
96 _types->append(method_type->ptype_at(i));
98 _types->append(method_type->rtype());
106 return _types->at(_count);
117 return _types->at(index);
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;
H A DciTypeFlow.cpp346 // Allocate the _types array
348 _types = (ciType**)analyzer->arena()->Amalloc(sizeof(ciType*) * max_cells);
350 _types[i] = top_type();
/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...]
H A DphaseX.cpp427 _types(_arena)
436 _types.map(C->unique(), NULL);
443 _types(arena)
452 _types.map(C->unique(), NULL);
460 _types(pt->_types)
517 _types.dump();
559 // Used by +VerifyOpto. Clear out hash table but copy _types array.
1431 _types.map(i,Type::TOP);
1775 _types
[all...]
/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

Completed in 76 milliseconds