Searched defs:dimensions (Results 1 - 10 of 10) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DArrayType.java68 private int dimensions; field in class:ArrayType
76 public ArrayType(byte type, int dimensions) { argument
77 this(BasicType.getType(type), dimensions);
85 public ArrayType(String class_name, int dimensions) { argument
86 this(new ObjectType(class_name), dimensions);
94 public ArrayType(Type type, int dimensions) { argument
97 if((dimensions < 1) || (dimensions > Constants.MAX_BYTE))
98 throw new ClassGenException("Invalid number of dimensions: " + dimensions);
[all...]
H A DMULTIANEWARRAY.java72 private short dimensions; field in class:MULTIANEWARRAY
80 public MULTIANEWARRAY(int index, short dimensions) { argument
83 if(dimensions < 1)
84 throw new ClassGenException("Invalid dimensions value: " + dimensions);
86 this.dimensions = dimensions;
97 out.writeByte(dimensions);
107 dimensions = bytes.readByte();
112 * @return number of dimensions t
[all...]
/openjdk7/jdk/src/share/classes/java/lang/reflect/
H A DArray.java75 * with the specified component type and dimensions.
78 * has {@code dimensions.length} dimensions and
81 * number of dimensions of the new array is equal to the sum
82 * of {@code dimensions.length} and the number of
83 * dimensions of {@code componentType}. In this case, the
87 * <p>The number of dimensions of the new array must not
88 * exceed the number of array dimensions supported by the
93 * @param dimensions an array of {@code int} representing the dimensions o
106 newInstance(Class<?> componentType, int... dimensions) argument
480 multiNewArray(Class componentType, int[] dimensions) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javah/
H A DTypeSignature.java103 int dimensions = 0; //Array dimension.
154 dimensions = dimensions(returnType);
158 while (dimensions-- > 0) {
240 int dimensions(TypeMirror t) { method in class:TypeSignature
243 return 1 + dimensions(((ArrayType) t).getComponentType());
/openjdk7/hotspot/src/share/vm/classfile/
H A DverificationType.hpp299 int dimensions() const { function in class:VALUE_OBJ_CLASS_SPEC
/openjdk7/hotspot/src/share/vm/runtime/
H A Dreflection.cpp354 jint dimensions[MAX_DIM]; // C array copy of intArrayOop local
360 dimensions[i] = d;
378 oop obj = arrayKlass::cast(klass)->multi_allocate(len, dimensions, THREAD);
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXDecoratedPeer.java51 WindowDimensions dimensions; field in class:XDecoratedPeer
80 dimensions = new WindowDimensions(bounds, getRealInsets(), false);
81 params.put(BOUNDS, dimensions.getClientRect());
82 insLog.fine("Initial dimensions {0}", dimensions);
92 updateSizeHints(dimensions);
315 reshape(dimensions, SET_SIZE, false);
341 Insets dimInsets = dimensions.getInsets();
386 if (insLog.isLoggable(PlatformLogger.FINER)) insLog.finer("Dimensions before reparent: " + dimensions);
388 dimensions
[all...]
/openjdk7/hotspot/src/share/vm/ci/
H A DciTypeFlow.cpp744 int dimensions = str->get_dimensions(); local
750 for (int i = 0; i < dimensions; i++) {
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkTopLevelBlock.cpp1820 // The dimensions are stack values, so we use their slots for the
1821 // dimensions array. Note that we are storing them in the reverse
1825 Value *dimensions = stack()->slot_addr( local
1828 "dimensions");
1833 builder()->CreateStructGEP(dimensions, i));
1840 builder()->CreateStructGEP(dimensions, 0),
1843 // Now we can pop the dimensions off the stack
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DTypes.java1378 * The number of dimensions of an array type.
1380 public int dimensions(Type t) { method in class:Types

Completed in 67 milliseconds