Searched defs:dimension (Results 1 - 22 of 22) sorted by relevance

/openjdk7/hotspot/src/share/vm/ci/
H A DciArrayKlass.cpp42 _dimension = get_arrayKlass()->dimension();
49 ciArrayKlass::ciArrayKlass(ciSymbol* name, int dimension, ciKlass* klass) argument
51 _dimension = dimension;
H A DciArrayKlass.hpp41 ciArrayKlass(ciSymbol* name, int dimension, ciKlass* klass);
50 jint dimension() { return _dimension; } function in class:ciArrayKlass
H A DciObjArrayKlass.cpp48 if (dimension() == 1) {
64 int dimension)
66 dimension,
71 if (dimension == 1) {
84 assert(dimension() > 1, "_element_klass should not be NULL");
98 dimension() - 1),
108 // Build an array name from an element name and a dimension.
110 int dimension) {
121 int new_len = element_len + dimension + 1; // for the ['s and '\0'
125 for ( ; pos < dimension; po
62 ciObjArrayKlass(ciSymbol* array_name, ciKlass* base_element_klass, int dimension) argument
109 construct_array_name(ciSymbol* element_name, int dimension) argument
[all...]
H A DciObjectFactory.cpp463 int dimension = fd.dimension(); local
472 assert(dimension > 1, "one dimensional type arrays are always loaded.");
475 dimension--;
480 new_klass = new (arena()) ciObjArrayKlass(name, element_klass, dimension);
/openjdk7/hotspot/src/share/vm/runtime/
H A DfieldType.hpp43 int dimension() { return _dimension; } function in class:FieldArrayInfo
/openjdk7/langtools/src/share/classes/com/sun/javadoc/
H A DType.java42 * Return unqualified name of type excluding any dimension information.
50 * Return qualified name of type excluding any dimension information.
58 * Return the simple name of this type excluding any dimension information.
70 * Return the type's dimension information, as a string.
75 String dimension(); method in interface:Type
79 * This includes any dimension information and type arguments.
/openjdk7/jdk/test/javax/management/openmbean/
H A DArrayTypeTest.java46 "javax.management.openmbean.ArrayType(name=[[Ljava.lang.String;,dimension=2,elementType=javax.management.openmbean.SimpleType(name=java.lang.String),primitiveArray=false)",
47 "javax.management.openmbean.ArrayType(name=[I,dimension=1,elementType=javax.management.openmbean.SimpleType(name=java.lang.Integer),primitiveArray=true)",
48 "javax.management.openmbean.ArrayType(name=[Ljava.lang.Integer;,dimension=1,elementType=javax.management.openmbean.SimpleType(name=java.lang.Integer),primitiveArray=false)",
49 "javax.management.openmbean.ArrayType(name=[[[[I,dimension=4,elementType=javax.management.openmbean.SimpleType(name=java.lang.Integer),primitiveArray=true)",
50 "javax.management.openmbean.ArrayType(name=[[[[Ljava.lang.Integer;,dimension=4,elementType=javax.management.openmbean.SimpleType(name=java.lang.Integer),primitiveArray=false)",
51 "javax.management.openmbean.ArrayType(name=[Ljava.lang.String;,dimension=1,elementType=javax.management.openmbean.SimpleType(name=java.lang.String),primitiveArray=false)",
53 "javax.management.openmbean.ArrayType(name=[Ljava.lang.Integer;,dimension=1,elementType=javax.management.openmbean.SimpleType(name=java.lang.Integer),primitiveArray=false)",
54 "javax.management.openmbean.ArrayType(name=[[Ljava.lang.Integer;,dimension=2,elementType=javax.management.openmbean.SimpleType(name=java.lang.Integer),primitiveArray=false)",
55 "javax.management.openmbean.ArrayType(name=[[I,dimension=2,elementType=javax.management.openmbean.SimpleType(name=java.lang.Integer),primitiveArray=true)",
56 "javax.management.openmbean.ArrayType(name=[[[I,dimension
79 checkGetters(ArrayType a, String className, String description, String typeName, boolean isArray, boolean isPrimitiveArray, int dimension) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DAbstractTypeImpl.java76 public String dimension() { method in class:AbstractTypeImpl
H A DPrimitiveType.java59 * Return unqualified name of type excluding any dimension information.
68 * Return qualified name of type excluding any dimension information.
85 * Return the type's dimension information, as a string.
89 public String dimension() { method in class:PrimitiveType
134 * Return name of type including any dimension information.
139 * @return name of type including any dimension information.
H A DTypeMaker.java210 * Return the type's dimension information, as a string.
214 public String dimension() { method in class:TypeMaker.ArrayTypeImpl
215 StringBuilder dimension = new StringBuilder();
217 dimension.append("[]");
219 return dimension.toString();
223 * Return unqualified name of type excluding any dimension information.
232 * Return qualified name of type excluding any dimension information.
242 * Return the simple name of this type excluding any dimension information.
299 * Return name of type including any dimension information.
304 * @return name of type including any dimension informatio
[all...]
H A DClassDocImpl.java354 * Return unqualified name of type excluding any dimension information.
363 * Return qualified name of type excluding any dimension information.
1143 * Return the type's dimension information.
1146 public String dimension() { method in class:ClassDocImpl
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DFieldType.java73 private int dimension; field in class:FieldType.ArrayInfo
77 public ArrayInfo(int dimension, int elementBasicType) { argument
78 this.dimension = dimension;
82 public int dimension() { return dimension; } method in class:FieldType.ArrayInfo
H A DArrayKlass.java48 dimension = new CIntField(type.getCIntegerField("_dimension"), Oop.getHeaderSize());
63 private static CIntField dimension; field in class:ArrayKlass
75 public long getDimension() { return dimension.getValue(this); }
151 visitor.doCInt(dimension, true);
/openjdk7/hotspot/src/share/vm/oops/
H A DarrayKlass.hpp50 int dimension() const { return _dimension; } function in class:arrayKlass
51 void set_dimension(int dimension) { _dimension = dimension; } argument
81 // Sizes points to the first dimension of the array, subsequent dimensions
H A DobjArrayKlass.cpp99 // Since this array dimension has zero length, nothing will be
100 // allocated, however the lower dimension values must be checked
214 assert(this_oop->dimension() <= n, "check order of chain");
215 int dimension = this_oop->dimension(); local
216 if (dimension == n)
237 allocate_objArray_klass(dimension + 1, this_oop, CHECK_NULL);
256 return array_klass_impl(or_null, dimension() + 1, CHECK_NULL);
H A DtypeArrayKlass.cpp47 if (dimension() != tak->dimension()) return false;
115 // For typeArrays this is only called for the last dimension
159 int dimension = h_this->dimension(); local
160 assert(dimension <= n, "check order of chain");
161 if (dimension == n)
172 // Atomic create higher dimension and link into list
179 dimension + 1, h_this, CHECK_NULL);
197 return array_klass_impl(or_null, dimension()
[all...]
/openjdk7/jdk/make/tools/src/build/tools/generatenimbus/
H A DUIDefault.java80 @XmlElement private Dimension dimension; field in class:UIProperty
118 prefix, getName(), dimension.width, dimension.height);
/openjdk7/jdk/src/share/classes/javax/management/openmbean/
H A DArrayType.java37 * // 2-dimension array of java.lang.String
40 * // 1-dimension array of int
43 * // 1-dimension array of java.lang.Integer
46 * // 4-dimension array of int
49 * // 4-dimension array of java.lang.Integer
52 * // 1-dimension array of java.lang.String
55 * // 1-dimension array of long
58 * // 1-dimension array of java.lang.Integer
61 * // 2-dimension array of java.lang.Integer
64 * // 2-dimension arra
123 private int dimension; field in class:ArrayType
287 ArrayType(int dimension, OpenType<?> elementType) argument
386 ArrayType(String className, String typeName, String description, int dimension, OpenType<?> elementType, boolean primitiveArray) argument
395 buildArrayClassName(int dimension, OpenType<?> elementType) argument
405 buildArrayClassName(int dimension, OpenType<?> elementType, boolean isPrimitiveArray) argument
441 buildArrayDescription(int dimension, OpenType<?> elementType) argument
451 buildArrayDescription(int dimension, OpenType<?> elementType, boolean isPrimitiveArray) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/inspector/
H A DXOpenTypeViewer.java441 private int dimension; field in class:XOpenTypeViewer.XArrayData
456 XArrayData(XOpenTypeData parent, int dimension, argument
459 this.dimension = dimension;
464 if (dimension > 1) return;
477 if (dimension > 1)
479 dimension);
553 if (dimension > 1) {
555 dimension;
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Choice.cpp154 jobject dimension = JNU_CallMethodByName(env, NULL, peer, local
159 if (dimension != NULL && width == 0) {
160 width = env->GetIntField(dimension, AwtDimension::widthID);
186 env->DeleteLocalRef(dimension);
334 jobject dimension = JNU_CallMethodByName(env, NULL, GetPeer(env), local
338 if (dimension == NULL) {
344 env->SetIntField(dimension, AwtDimension::heightID,
346 return dimension;
H A Dawt_List.cpp323 jobject dimension = JNU_CallMethodByName(env, NULL, peer, "preferredSize", local
328 if (dimension == NULL) {
332 (env)->SetIntField(dimension, AwtDimension::heightID, GetFontHeight(env));
334 return dimension;
H A Dawt_Component.cpp4254 jobject dimension = PreferredItemSize(env); local
4255 DASSERT(dimension);
4257 env->GetIntField(dimension, AwtDimension::widthID);
4259 env->GetIntField(dimension, AwtDimension::heightID);
4260 env->DeleteLocalRef(dimension);

Completed in 82 milliseconds