Searched defs:dims (Results 1 - 18 of 18) sorted by relevance

/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXContentWindow.java49 final WindowDimensions dims = parentFrame.getDimensions();
50 Rectangle rec = dims.getBounds();
52 Insets ins = dims.getInsets();
108 void setContentBounds(WindowDimensions dims) { argument
113 Rectangle newBounds = dims.getBounds();
114 Insets in = dims.getInsets();
H A DWindowDimensions.java73 public WindowDimensions(final WindowDimensions dims) { argument
74 this.loc = new Point(dims.loc);
75 this.size = new Dimension(dims.size);
76 this.insets = (dims.insets != null)?((Insets)dims.insets.clone()):new Insets(0, 0, 0, 0);
77 this.isClientSizeSet = dims.isClientSizeSet;
171 WindowDimensions dims = (WindowDimensions)o;
172 return ((dims.insets.equals(insets)))
173 && (getClientRect().equals(dims.getClientRect()))
174 && (getBounds().equals(dims
[all...]
H A DXDecoratedPeer.java411 public void handleMoved(WindowDimensions dims) { argument
412 Point loc = dims.getLocation();
474 void updateSizeHints(WindowDimensions dims) { argument
475 Rectangle rec = dims.getClientRect();
590 WindowDimensions dims = new WindowDimensions(dimensions);
595 dims.setLocation(x, y);
600 dims.setSize(width, height);
607 dims.setClientSize(width, height);
612 dims.setLocation(x, y);
613 dims
636 reconfigureContentWindow(WindowDimensions dims) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DMethodVisitor.java350 * @param dims number of dimensions of the array to allocate.
352 void visitMultiANewArrayInsn(String desc, int dims); argument
H A DMethodWriter.java1151 public void visitMultiANewArrayInsn(final String desc, final int dims) { argument
1156 currentBlock.frame.execute(Opcodes.MULTIANEWARRAY, dims, cw, i);
1160 stackSize += 1 - dims;
1164 code.put12(Opcodes.MULTIANEWARRAY, i.index).putByte(dims);
/openjdk7/jdk/src/solaris/native/sun/awt/
H A DCUPSfuncs.c329 jfloat *dims; local
357 dims = (*env)->GetFloatArrayElements(env, sizeArray, NULL);
363 dims[i*6] = size->width;
364 dims[(i*6)+1] = size->length;
366 dims[(i*6)+2] = size->left;
367 dims[(i*6)+3] = size->top;
368 dims[(i*6)+4] = size->right;
369 dims[(i*6)+5] = size->bottom;
373 (*env)->ReleaseFloatArrayElements(env, sizeArray, dims, 0);
/openjdk7/hotspot/src/share/vm/opto/
H A Dparse3.cpp494 Node* dims = NULL; local
498 dims = new_array(dims_array_klass, intcon(ndimensions), 0);
502 Node *dims_elem = array_element_address(dims, intcon(j), T_INT);
511 dims);
H A Druntime.cpp370 jint dims[2]; variable
371 dims[0] = len1;
372 dims[1] = len2;
373 oop obj = arrayKlass::cast(elem_type)->multi_allocate(2, dims, THREAD);
385 jint dims[3]; variable
386 dims[0] = len1;
387 dims[1] = len2;
388 dims[2] = len3;
389 oop obj = arrayKlass::cast(elem_type)->multi_allocate(3, dims, THREAD);
401 jint dims[ variable
418 jint dims[5]; variable
[all...]
/openjdk7/hotspot/src/share/vm/interpreter/
H A DinterpreterRuntime.cpp216 jint *dims = &dim_array[0]; variable
218 dims = (jint*) NEW_RESOURCE_ARRAY(jint, nof_dims);
223 dims[index] = first_size_address[n];
225 oop obj = arrayKlass::cast(klass)->multi_allocate(nof_dims, dims, CHECK);
H A DbytecodeInterpreter.cpp2010 jint dims = *(pc+3); local
2014 (jint*)&topOfStack[dims * Interpreter::stackElementWords+
2019 SET_STACK_OBJECT(THREAD->vm_result(), -dims);
2021 UPDATE_PC_AND_TOS_AND_CONTINUE(4, -(dims-1));
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_InstructionPrinter.cpp511 Values* dims = x->dims(); local
512 for (int i = 0; i < dims->length(); i++) {
514 print_value(dims->at(i));
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dc1_LIRGenerator_sparc.cpp955 Values* dims = x->dims(); local
956 int i = dims->length();
957 LIRItemList* items = new LIRItemList(dims->length(), NULL);
959 LIRItem* size = new LIRItem(dims->at(i), this);
976 i = dims->length();
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DGenerateOopMap.java1769 void doMultianewarray (int dims, int bci) { argument
1771 Assert.that(dims >= 1, "sanity check");
1773 for(int i = dims -1; i >=0; i--) {
/openjdk7/hotspot/src/share/vm/oops/
H A DgenerateOopMap.cpp1869 void GenerateOopMap::do_multianewarray(int dims, int bci) { argument
1870 assert(dims >= 1, "sanity check");
1871 for(int i = dims -1; i >=0; i--) {
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_LIRGenerator_x86.cpp1092 Values* dims = x->dims(); local
1093 int i = dims->length();
1094 LIRItemList* items = new LIRItemList(dims->length(), NULL);
1096 LIRItem* size = new LIRItem(dims->at(i), this);
1113 i = dims->length();
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/tree/
H A DTreeMaker.java346 List<JCExpression> dims,
349 JCNewArray tree = new JCNewArray(elemtype, dims, elems);
345 NewArray(JCExpression elemtype, List<JCExpression> dims, List<JCExpression> elems) argument
H A DJCTree.java1401 public List<JCExpression> dims; field in class:JCTree.JCNewArray
1404 List<JCExpression> dims,
1408 this.dims = dims;
1417 return dims;
2160 List<JCExpression> dims,
1403 JCNewArray(JCExpression elemtype, List<JCExpression> dims, List<JCExpression> elems) argument
2159 NewArray(JCExpression elemtype, List<JCExpression> dims, List<JCExpression> elems) argument
/openjdk7/jdk/test/javax/management/mxbean/
H A DMerlinMXBean.java315 static ArrayType make(int dims, OpenType baseType) { argument
317 return new ArrayType(dims, baseType);

Completed in 1202 milliseconds