Searched refs:box (Results 1 - 25 of 62) sorted by relevance

123

/openjdk7/jdk/src/share/classes/java/awt/
H A DCheckboxGroup.java31 * Exactly one check box button in a <code>CheckboxGroup</code> can
36 * The following code example produces a new check box group,
47 * This image depicts the check box group created by this example:
78 * Gets the current choice from this check box group.
79 * The current choice is the check box in this
83 * @return the check box that is currently in the
103 * Sets the currently selected check box in this group
104 * to be the specified check box.
105 * This method sets the state of that check box to "on" and
108 * If the check box argumen
118 setSelectedCheckbox(Checkbox box) argument
127 setCurrent(Checkbox box) argument
[all...]
/openjdk7/langtools/test/tools/javac/generics/
H A DGenericMerge.java36 <T> Box<T> box(T t); method in interface:N1
39 <T> Box<T> box(T t); method in interface:N2
44 box(o);
/openjdk7/jdk/src/share/native/sun/java2d/pipe/
H A DSpanClipRenderer.c81 nextYRange(jint *box, jint *bands, jint endIndex, argument
91 box[1] = bands[curIndex++];
92 box[3] = bands[curIndex++];
103 nextXBand(jint *box, jint *bands, jint endIndex, argument
113 box[0] = bands[curIndex++];
114 box[2] = bands[curIndex++];
127 jint *box; local
136 box = (*env)->GetPrimitiveArrayCritical(env, boxArray, 0);
138 w = box[2] - box[
167 jint *box; local
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Dlocknode.cpp65 BoxLockNode* BoxLockNode::box_node(Node* box) { argument
66 // Chase down the BoxNode after RA which may spill box nodes.
67 while (!box->is_BoxLock()) {
75 assert(box->is_SpillCopy() || box->is_Phi(), "Bad spill of Lock.");
78 box = box->in(1);
80 return box->as_BoxLock();
83 OptoReg::Name BoxLockNode::reg(Node* box) { argument
84 return box_node(box)
[all...]
H A Dlocknode.hpp95 FastLockNode(Node *ctrl, Node *oop, Node *box) : CmpNode(oop,box) { argument
102 void set_box_node(Node* box) { set_req(2, box); } argument
120 FastUnlockNode(Node *ctrl, Node *oop, Node *box) : CmpNode(oop,box) { argument
/openjdk7/jdk/src/share/classes/javax/swing/plaf/metal/
H A DMetalProgressBarUI.java50 private Rectangle box; field in class:MetalProgressBarUI
137 * and bouncing box.
155 Rectangle box = null;
156 box = getBox(box);
177 g2.drawLine(box.x, startY, box.x + box.width - 1, startY);
187 g2.drawLine(startX, box.y, startX, box
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/windows/
H A DWindowsProgressBarUI.java260 // box placement for the chunk animation. This is required because
295 // Paint the bouncing box.
317 private Rectangle getFullChunkBounds(Rectangle box) { argument
324 int chunksize = box.width+gap;
325 return new Rectangle(box.x-chunksize*2, box.y, chunksize*3, box.height);
327 int chunksize = box.height+gap;
328 return new Rectangle(box.x, box
332 paintIndeterminateFrame(Rectangle box, Graphics2D g, boolean vertical, int bgwidth, int bgheight) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
H A DRegion.java38 * case the rectangular shape is defined by the bounding box parameters
79 public void setOutputArea(int[] box) {} argument
244 int box[] = new int[4];
249 sr.getPathBox(box);
250 Region r = Region.getInstance(box);
287 public static Region getInstance(int box[]) { argument
288 return new Region(box[0], box[1], box[2], box[
333 setOutputArea(int box[]) argument
917 appendSpan(int box[]) argument
963 endRow(int box[]) argument
[all...]
H A DRegionClipSpanIterator.java50 * box The current span of the current row
53 * three producers to get the next span, row and box calling each other
68 RegionIterator box; field in class:RegionClipSpanIterator
76 // The bounds of the current region box
79 // The bounding box of the input Region. Used for click
93 // True if the next region box should be read on the next
134 box = row.createCopy();
166 * Intersects the path box with the given bbox.
247 box.copyStateFrom(row);
256 // Next time we either do the next span or the next box
[all...]
/openjdk7/jdk/src/share/classes/java/beans/
H A DPropertyEditor.java102 * @param box Rectangle within graphics object into which we should paint.
104 void paintValue(java.awt.Graphics gfx, java.awt.Rectangle box); argument
H A DPropertyEditorSupport.java130 * @param box Rectangle within graphics object into which we should paint.
132 public void paintValue(java.awt.Graphics gfx, java.awt.Rectangle box) { argument
/openjdk7/jdk/src/share/classes/com/sun/beans/editors/
H A DColorEditor.java158 public void paintValue(java.awt.Graphics gfx, java.awt.Rectangle box) { argument
161 gfx.drawRect(box.x, box.y, box.width-3, box.height-3);
163 gfx.fillRect(box.x+1, box.y+1, box.width-4, box.height-4);
/openjdk7/jdk/test/sun/invoke/util/
H A DValueConversionsTest.java85 Object box = src.wrap(n);
87 case VOID: assertEquals(box, null); break;
88 case OBJECT: box = box.toString(); break;
89 case SHORT: assertEquals(box.getClass(), Short.class); break;
90 default: assertEquals(box.getClass(), src.wrapperType()); break;
97 Object expResult = (box == null) ? dst.zero() : dst.wrap(box);
100 case INT: result = (int) unboxer.invokeExact(box); break;
101 case LONG: result = (long) unboxer.invokeExact(box); brea
[all...]
/openjdk7/langtools/test/tools/javac/foreach/
H A DListOfListTest.java67 Box<E> box = new Box<E>(E.c);
68 switch (box.get()) {
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/
H A DObjectListPanel.java82 Box box = Box.createHorizontalBox();
83 box.add(Box.createGlue());
90 box.add(button);
92 box.add(Box.createHorizontalStrut(20));
113 box.add(button);
114 box.add(Box.createGlue());
115 panel.add(box);
/openjdk7/jdk/src/share/classes/javax/swing/
H A DLayoutFocusTraversalPolicy.java235 JComboBox box = (JComboBox)aComponent;
236 return box.getUI().isFocusTraversable(box);
/openjdk7/hotspot/src/cpu/x86/vm/
H A DinterpreterRT_x86.hpp45 void box(int from_offset, int to_offset);
H A DinterpreterRT_x86_32.cpp56 box (offset(), jni_offset() + 1);
65 void InterpreterRuntime::SignatureHandlerGenerator::box(int from_offset, int to_offset) { function in class:InterpreterRuntime::SignatureHandlerGenerator
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DEngineInputRecord.java189 CipherBox box, ByteBuffer bb) throws BadPaddingException {
192 decrypt(signer, box); // MAC is checked during decryption
200 if (!box.isNullCipher()) {
202 if (!box.sanityCheck(tagLen, cipheredLength)) {
210 box.decrypt(bb, tagLen);
254 if (box.isCBCMode()) {
188 decrypt(MAC signer, CipherBox box, ByteBuffer bb) argument
H A DEngineOutputRecord.java147 void encrypt(CipherBox box, ByteBuffer bb) { argument
148 box.encrypt(bb);
/openjdk7/jdk/test/java/awt/Mixing/
H A DLWPopupMenu.java87 // Add heavy button to box
88 Box box = Box.createVerticalBox();
89 box.add(Box.createVerticalStrut(20));
90 box.add(heavy);
91 box.add(Box.createVerticalStrut(20));
93 f.getContentPane().add("Center", box);
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkNativeWrapper.cpp124 Value *box; local
137 box = stack()->slot_addr(slot_offset, SharkType::oop_type());
141 builder()->CreateLoad(box),
154 phi->addIncoming(box, not_null);
155 box = phi;
158 param_values.push_back(box);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/fault/
H A DExceptionBean.java139 this.lineNumber = box(ste.getLineNumber());
142 private String box(int i) { method in class:ExceptionBean.StackFrame
/openjdk7/jdk/src/windows/classes/sun/java2d/windows/
H A DGDIRenderer.java294 int box[] = new int[4];
304 while (si.nextSpan(box)) {
306 box[0], box[1], box[2]-box[0], box[3]-box[1]);
/openjdk7/langtools/test/tools/javac/generics/inference/6215213/
H A DT6215213.java52 Box<?> box = testBox(null);

Completed in 129 milliseconds

123