Searched defs:box (Results 1 - 25 of 35) sorted by relevance

12

/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/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/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/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/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
H A Dcallnode.cpp402 Node *box = mcall->monitor_box(this, i); local
405 OptoReg::is_valid(regalloc->get_reg_first(box))) {
406 box = BoxLockNode::box_node(box);
407 format_helper(regalloc, st, box, "MON-BOX[", i, &scobjs);
409 OptoReg::Name box_reg = BoxLockNode::reg(box);
417 if (BoxLockNode::box_node(box)->is_eliminated())
1650 BoxLockNode* box = box_node()->as_BoxLock(); local
1651 int stk_slot = box->stack_slot();
1658 if (!box
[all...]
H A Dcallnode.hpp905 void set_box_node(Node* box) { set_req(TypeFunc::Parms + 1, box); } argument
/openjdk7/hotspot/src/cpu/x86/vm/
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);
H A DInputRecord.java138 void decrypt(MAC signer, CipherBox box) throws BadPaddingException { argument
144 if (!box.isNullCipher()) {
146 if (!box.sanityCheck(tagLen, cipheredLength)) {
155 box.decrypt(buf, headerSize, cipheredLength, tagLen);
205 if (box.isCBCMode()) {
H A DOutputRecord.java215 void encrypt(CipherBox box) { argument
217 count = headerSize + box.encrypt(buf, headerSize, len);
/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/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/tools/internal/xjc/generator/bean/field/
H A DAbstractListField.java184 protected final JExpression box( JExpression exp ) { method in class:AbstractListField.Accessor
/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/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);
H A DFontEditor.java146 public void paintValue(java.awt.Graphics gfx, java.awt.Rectangle box) { argument
151 int vpad = (box.height - fm.getAscent())/2;
152 gfx.drawString(sampleText, 0, box.height-vpad);
/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
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...]
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...]
/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/langtools/test/tools/javac/types/
H A DTypeHarness.java197 public Type box(Type t) { method in class:TypeHarness
199 throw new AssertionError("Cannot box non-primitive type: " + t);
/openjdk7/hotspot/src/share/vm/runtime/
H A Dreflection.cpp85 oop Reflection::box(jvalue* value, BasicType type, TRAPS) { function in class:Reflection
101 BasicType Reflection::unbox_for_primitive(oop box, jvalue* value, TRAPS) { argument
102 if (box == NULL) {
105 return java_lang_boxing_object::get_value(box, value);
108 BasicType Reflection::unbox_for_regular_object(oop box, jvalue* value) { argument
109 // Note: box is really the unboxed oop. It might even be a Short, etc.!
110 value->l = (jobject) box;
1034 return box((jvalue*) result.get_value_addr(), rtype, CHECK_NULL);

Completed in 99 milliseconds

12