Searched refs:element_type (Results 1 - 25 of 45) sorted by relevance

12

/openjdk7/hotspot/src/share/vm/ci/
H A DciArrayKlass.cpp55 // ciArrayKlass::element_type
58 ciType* ciArrayKlass::element_type() { function in class:ciArrayKlass
60 return ciType::make(as_type_array_klass()->element_type());
73 return ciType::make(as_type_array_klass()->element_type());
77 return ciType::make(ek->as_type_array_klass()->element_type());
99 ciArrayKlass* ciArrayKlass::make(ciType* element_type) { argument
100 if (element_type->is_primitive_type()) {
101 return ciTypeArrayKlass::make(element_type->basic_type());
103 return ciObjArrayKlass::make(element_type->as_klass());
H A DciArrayKlass.hpp51 ciType* element_type(); // JLS calls this the "component type"
56 // This is a real field in arrayKlass, but we derive it from element_type.
57 return element_type()->java_mirror();
64 static ciArrayKlass* make(ciType* element_type);
H A DciTypeArrayKlass.cpp38 assert(element_type() == get_typeArrayKlass()->element_type(), "");
H A DciTypeArrayKlass.hpp51 BasicType element_type() { function in class:ciTypeArrayKlass
H A DciObjectFactory.cpp456 BasicType element_type = FieldType::get_array_info(name->get_symbol(), local
464 assert(element_type != T_ARRAY, "unsuccessful decomposition");
466 if (element_type == T_OBJECT) {
478 element_klass = ciTypeArrayKlass::make(element_type);
/openjdk7/hotspot/src/share/vm/utilities/
H A Darray.hpp115 #define define_generic_array(array_name,element_type, base_class) \
118 typedef element_type etype; \
158 #define define_array(array_name,element_type) \
159 define_generic_array(array_name, element_type, ResourceArray)
273 #define define_resource_list(element_type) \
274 define_generic_array(element_type##Array, element_type, ResourceArray) \
275 define_stack(element_type##List, element_type##Array)
277 #define define_resource_pointer_list(element_type) \
[all...]
H A Dtaskqueue.hpp281 typedef E element_type; typedef in class:GenericTaskQueue
490 typedef typename T::element_type E;
/openjdk7/hotspot/src/share/vm/runtime/
H A DfieldType.cpp88 BasicType element_type = char2type(element[0]); local
89 if (element_type == T_OBJECT) {
97 return element_type;
H A Dreflection.cpp215 BasicType type = typeArrayKlass::cast(a->klass())->element_type();
266 BasicType array_type = typeArrayKlass::cast(a->klass())->element_type();
316 BasicType type = typeArrayKlass::cast(basic_type_arrayklass)->element_type();
343 assert(typeArrayKlass::cast(dim_array->klass())->element_type() == T_INT, "just checking");
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_reference.h49 RefIndex reference_prim_array(RefIndex next, jvmtiPrimitiveType element_type,
H A Dhprof_site.c485 jint element_count, jvmtiPrimitiveType element_type,
506 element_type, elements, element_count);
484 cbPrimArrayData(jlong class_tag, jlong size, jlong* tag_ptr, jint element_count, jvmtiPrimitiveType element_type, const void* elements, void* user_data) argument
/openjdk7/hotspot/src/share/vm/oops/
H A DtypeArrayKlassKlass.cpp56 switch (typeArrayKlass::cast(klassOop(obj))->element_type()) {
H A DtypeArrayKlass.cpp49 return element_type() == tak->element_type();
126 if (!d->is_typeArray() || element_type() != typeArrayKlass::cast(d->klass())->element_type()) {
344 switch (element_type()) {
H A DarrayKlass.hpp69 BasicType element_type() const { return layout_helper_element_type(layout_helper()); } function in class:arrayKlass
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A Dir.idl346 in IDLType element_type
351 in IDLType element_type
480 readonly attribute TypeCode element_type;
492 readonly attribute TypeCode element_type;
/openjdk7/corba/src/share/classes/org/omg/CORBA/
H A Dir.idl347 in IDLType element_type
352 in IDLType element_type
481 readonly attribute TypeCode element_type;
493 readonly attribute TypeCode element_type;
H A DORB.java845 * @param element_type
851 abstract public TypeCode create_sequence_tc(int bound, TypeCode element_type); argument
884 * @param element_type a <code>TypeCode</code> object describing the type
889 abstract public TypeCode create_array_tc(int length, TypeCode element_type); argument
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/orb/
H A DORBSingleton.java211 TypeCode element_type)
213 return new TypeCodeImpl(this, TCKind._tk_sequence, bound, element_type);
223 TypeCode element_type)
225 return new TypeCodeImpl(this, TCKind._tk_array, length, element_type);
210 create_sequence_tc(int bound, TypeCode element_type) argument
222 create_array_tc(int length, TypeCode element_type) argument
H A DORBImpl.java991 * @param element_type
996 TypeCode element_type)
999 return new TypeCodeImpl(this, TCKind._tk_sequence, bound, element_type);
1023 * @param element_type
1028 TypeCode element_type)
1031 return new TypeCodeImpl(this, TCKind._tk_array, length, element_type);
995 create_sequence_tc(int bound, TypeCode element_type) argument
1027 create_array_tc(int length, TypeCode element_type) argument
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkBuilder.cpp74 const Type* element_type,
89 PointerType::getUnqual(element_type),
73 CreateArrayAddress(Value* arrayoop, const Type* element_type, int element_bytes, ByteSize base_offset, Value* index, const char* name) argument
H A DsharkBuilder.hpp71 const llvm::Type* element_type,
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Instruction.cpp179 if (ak->element_type()->is_instance_klass()) {
180 ciInstanceKlass* ik = (ciInstanceKlass*)ak->element_type();
196 return ak->element_type();
/openjdk7/hotspot/src/share/vm/opto/
H A Druntime.cpp289 BasicType elem_type = typeArrayKlass::cast(array_type)->element_type();
326 BasicType elem_type = typeArrayKlass::cast(array_type)->element_type();
347 BasicType elem_type = typeArrayKlass::cast(array_type)->element_type();
/openjdk7/hotspot/src/share/vm/services/
H A DattachListener.cpp91 assert(typeArrayKlass::cast(res->klass())->element_type() == T_BYTE, "just checking");
H A DdiagnosticCommand.cpp205 assert(typeArrayKlass::cast(res->klass())->element_type() == T_BYTE, "just checking");

Completed in 1721 milliseconds

12