| /openjdk7/hotspot/src/share/vm/ci/ |
| H A D | ciObjArrayKlass.cpp | 48 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 D | ciArrayKlass.hpp | 41 ciArrayKlass(ciSymbol* name, int dimension, ciKlass* klass); 50 jint dimension() { return _dimension; } function in class:ciArrayKlass
|
| H A D | ciArrayKlass.cpp | 42 _dimension = get_arrayKlass()->dimension(); 49 ciArrayKlass::ciArrayKlass(ciSymbol* name, int dimension, ciKlass* klass) argument 51 _dimension = dimension;
|
| H A D | ciObjArrayKlass.hpp | 46 int dimension); 54 int dimension);
|
| /openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/ |
| H A D | FieldType.java | 73 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 D | TypeArrayKlass.java | 107 int dimension = (int) getDimension(); 109 Assert.that(dimension <= n, "check order of chain"); 111 if (dimension == n)
|
| H A D | ArrayKlass.java | 48 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);
|
| H A D | ObjArrayKlass.java | 86 int dimension = (int) getDimension(); 87 if (dimension == n) {
|
| /openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/soql/ |
| H A D | JSJavaObjArrayKlass.java | 45 int dimension = (int) getObjArrayKlass().getDimension(); 48 dimension--; 51 for (int i = 0; i < dimension; i++) {
|
| /openjdk7/jdk/src/share/classes/javax/management/openmbean/ |
| H A D | ArrayType.java | 37 * // 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/langtools/src/share/classes/com/sun/javadoc/ |
| H A D | Type.java | 42 * 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/hotspot/src/share/vm/oops/ |
| H A D | arrayKlass.hpp | 50 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 D | typeArrayKlass.cpp | 47 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...] |
| H A D | objArrayKlass.cpp | 99 // 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);
|
| /openjdk7/jdk/make/tools/src/build/tools/generatenimbus/ |
| H A D | UIDefault.java | 80 @XmlElement private Dimension dimension; field in class:UIProperty 118 prefix, getName(), dimension.width, dimension.height);
|
| /openjdk7/hotspot/src/share/vm/runtime/ |
| H A D | fieldType.hpp | 43 int dimension() { return _dimension; } function in class:FieldArrayInfo
|
| /openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/ |
| H A D | AbstractTypeImpl.java | 76 public String dimension() { method in class:AbstractTypeImpl
|
| H A D | TypeMaker.java | 210 * 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 D | PrimitiveType.java | 59 * 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.
|
| /openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/util/links/ |
| H A D | LinkFactory.java | 124 if (type.dimension().length() > 2) { 127 linkInfo.displayLength += type.dimension().length()-2; 128 linkOutput.append(type.dimension().substring(2)); 133 linkInfo.displayLength += type.dimension().length(); 134 linkOutput.append(type.dimension());
|
| /openjdk7/jdk/src/macosx/native/sun/awt/ |
| H A D | GeomUtilities.m | 96 NSSize JavaToNSSize(JNIEnv *env, jobject dimension) { 97 return NSMakeSize(JNFCallDoubleMethod(env, dimension, jm_sz_getWidth), 98 JNFCallDoubleMethod(env, dimension, jm_sz_getHeight));
|
| H A D | JavaAccessibilityUtilities.m | 68 jobject dimension = JNFCallStaticObjectMethod(env, jm_getSize, axComponent, component); // AWT_THREADING Safe (AWTRunLoopMode) 70 if (dimension == NULL) return NSZeroSize; 71 return NSMakeSize(JNFGetIntField(env, dimension, jf_width), JNFGetIntField(env, dimension, jf_height));
|
| /openjdk7/jdk/src/share/classes/sun/rmi/rmic/newrmic/jrmp/ |
| H A D | Util.java | 116 int dimensions = type.dimension().length() / 2; 137 sig += paramType.typeName() + paramType.dimension();
|
| /openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/memory/ |
| H A D | PlaceholderTable.java | 57 arrayKlass = arrayKlass.arrayKlassOrNull(info.dimension());
|
| /openjdk7/jdk/src/share/classes/sun/tools/jconsole/inspector/ |
| H A D | XOpenTypeViewer.java | 441 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;
|