Searched defs:right (Results 126 - 150 of 193) sorted by relevance

12345678

/openjdk7/jdk/src/share/classes/javax/swing/
H A DBorderFactory.java67 * bottom, left, and right, use
539 * of the top, bottom, left, and right sides are all zero.)
550 * right sides.
558 * @param right an integer specifying the width of the right side,
563 int bottom, int right) {
564 return new EmptyBorder(top, left, bottom, right);
603 * @param bottom an integer specifying the width of the right side,
605 * @param right an integer specifying the width of the bottom,
610 public static MatteBorder createMatteBorder(int top, int left, int bottom, int right, argument
562 createEmptyBorder(int top, int left, int bottom, int right) argument
634 createMatteBorder(int top, int left, int bottom, int right, Icon tileIcon) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/
H A DBorderUIResource.java134 public EmptyBorderUIResource(int top, int left, int bottom, int right) { argument
135 super(top, left, bottom, right);
196 public MatteBorderUIResource(int top, int left, int bottom, int right, argument
198 super(top, left, bottom, right, color);
201 public MatteBorderUIResource(int top, int left, int bottom, int right, argument
203 super(top, left, bottom, right, tileIcon);
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DCompositeView.java586 * with the top, left, bottom, and right insets removed.
636 right = (short) StyleConstants.getRightIndent(attr);
645 * @param right the right inset >= 0
647 protected void setInsets(short top, short left, short bottom, short right) { argument
650 this.right = right;
664 * Gets the right inset.
669 return right;
756 * <code>View</code>s are layed out from left to right,
790 private short right; field in class:CompositeView
[all...]
/openjdk7/jdk/src/share/classes/sun/awt/geom/
H A DAreaOp.java99 // Note: the right curves should be an empty set with this op...
121 // Note: the right curves should be an empty set with this op...
136 /* Constants to tag the left and right curves in the edge list */
155 public Vector calculate(Vector left, Vector right) { argument
158 addEdges(edges, right, AreaOp.CTAG_RIGHT);
213 int right = 0;
220 // Active edges are between left (inclusive) and right (exclusive)
224 for (cur = next = right - 1; cur >= left; cur--) {
235 if (left >= right) {
236 if (right >
[all...]
/openjdk7/jdk/src/share/classes/java/awt/geom/
H A DRoundRectangle2D.java544 private int classify(double coord, double left, double right, argument
551 } else if (coord < right - arcsize) {
553 } else if (coord < right) {
H A DCubicCurve2D.java321 float right = Math.max(Math.max(x1, x2),
326 right - left, bottom - top);
567 double right = Math.max(Math.max(x1, x2),
572 right - left, bottom - top);
916 * subdivided curves into the left and right curve parameters.
917 * Either or both of the left and right objects may be the same
921 * @param right the cubic curve object for storing for the right or
925 public void subdivide(CubicCurve2D left, CubicCurve2D right) { argument
926 subdivide(this, left, right);
942 subdivide(CubicCurve2D src, CubicCurve2D left, CubicCurve2D right) argument
1003 subdivide(double src[], int srcoff, double left[], int leftoff, double right[], int rightoff) argument
[all...]
H A DQuadCurve2D.java248 float right = Math.max(Math.max(x1, x2), ctrlx);
251 right - left, bottom - top);
437 double right = Math.max(Math.max(x1, x2), ctrlx);
440 right - left, bottom - top);
721 * <code>right</code> curve parameters.
722 * Either or both of the <code>left</code> and <code>right</code>
727 * @param right the <code>QuadCurve2D</code> object for storing the
728 * right or second half of the subdivided curve
731 public void subdivide(QuadCurve2D left, QuadCurve2D right) { argument
732 subdivide(this, left, right);
749 subdivide(QuadCurve2D src, QuadCurve2D left, QuadCurve2D right) argument
800 subdivide(double src[], int srcoff, double left[], int leftoff, double right[], int rightoff) argument
[all...]
/openjdk7/hotspot/src/share/vm/memory/
H A DbinaryTreeDictionary.hpp61 TreeList<Chunk>* right() const { return _right; } function in class:TreeList
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/windows/
H A DWindowsTableHeaderUI.java105 contentRight = margins.right;
218 private final int right; field in class:WindowsTableHeaderUI.IconBorder
222 * @param top, left, bottom, right - outer insets for this border
225 int bottom, int right) {
230 this.right = right;
233 return new Insets(icon.getIconHeight() + top, left, bottom, right);
241 x + left + (width - left - right - icon.getIconWidth()) / 2,
224 IconBorder(Icon icon, int top, int left, int bottom, int right) argument
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DSoftChorus.java31 * (left,right), with different starting phase for stereo effect.
177 private SoftAudioBuffer right; field in class:SoftChorus
297 right.clear();
306 float[] right = this.right == null ? null : this.right.array();
311 if (right != null)
312 vdelay1R.processMix(inputA, right, reverb);
315 if (right != null)
316 vdelay1R.processReplace(inputA, right, rever
[all...]
H A DSoftReverb.java204 private SoftAudioBuffer right; field in class:SoftReverb
272 right = output;
289 right.clear();
296 float[] right = this.right == null ? null : this.right.array();
314 if(light && (right != null))
339 Arrays.fill(right, 0);
343 combR[i].processMix(input, right);
352 right[
[all...]
/openjdk7/jdk/make/tools/src/build/tools/generatenimbus/
H A DSynthModel.java137 @XmlAttribute private int right; field in class:Border
143 painter, top, left, bottom, right);
146 top, left, bottom, right);
157 @XmlAttribute int right; field in class:Insets
163 public Insets(int top, int left, int bottom, int right) { argument
167 this.right = right;
173 uiSuffix, top, left, bottom, right);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJOp.java122 JGenerable right; field in class:JOp.BinaryOp
124 BinaryOp(String op, JExpression left, JGenerable right) { argument
127 this.right = right;
131 f.p('(').g(left).p(op).g(right).p(')');
136 public static JExpression plus(JExpression left, JExpression right) { argument
137 return new BinaryOp("+", left, right);
140 public static JExpression minus(JExpression left, JExpression right) { argument
141 return new BinaryOp("-", left, right);
144 public static JExpression mul(JExpression left, JExpression right) { argument
148 div(JExpression left, JExpression right) argument
152 mod(JExpression left, JExpression right) argument
156 shl(JExpression left, JExpression right) argument
160 shr(JExpression left, JExpression right) argument
164 shrz(JExpression left, JExpression right) argument
168 band(JExpression left, JExpression right) argument
172 bor(JExpression left, JExpression right) argument
176 cand(JExpression left, JExpression right) argument
184 cor(JExpression left, JExpression right) argument
192 xor(JExpression left, JExpression right) argument
196 lt(JExpression left, JExpression right) argument
200 lte(JExpression left, JExpression right) argument
204 gt(JExpression left, JExpression right) argument
208 gte(JExpression left, JExpression right) argument
212 eq(JExpression left, JExpression right) argument
216 ne(JExpression left, JExpression right) argument
220 _instanceof(JExpression left, JType right) argument
[all...]
/openjdk7/jdk/src/solaris/native/sun/java2d/loops/
H A Dvis_FourByteAbgrPre.c191 int right, bottom; local
202 right = left + width;
212 if (right > clipRight) {
213 right = clipRight;
218 if (right <= left || bottom <= top) {
221 width = right - left;
H A Dvis_IntArgb.c388 int right, bottom; local
399 right = left + width;
409 if (right > clipRight) {
410 right = clipRight;
415 if (right <= left || bottom <= top) {
418 width = right - left;
H A Dvis_IntArgbBm.c567 int right, bottom; local
578 right = left + width;
588 if (right > clipRight) {
589 right = clipRight;
594 if (right <= left || bottom <= top) {
597 width = right - left;
H A Dvis_IntBgr.c848 int right, bottom; local
859 right = left + width;
869 if (right > clipRight) {
870 right = clipRight;
875 if (right <= left || bottom <= top) {
878 width = right - left;
H A Dvis_IntRgb.c574 int right, bottom; local
585 right = left + width;
595 if (right > clipRight) {
596 right = clipRight;
601 if (right <= left || bottom <= top) {
604 width = right - left;
/openjdk7/jdk/src/solaris/native/sun/java2d/x11/
H A DX11TextRenderer_md.c110 int y, left, top, right, bottom, width, height; local
134 right = left + width;
144 if (right > clipRight) {
145 right = clipRight;
150 if (right <= left || bottom <= top) {
153 width = right - left;
/openjdk7/jdk/src/share/native/sun/font/layout/
H A DKernTable.cpp193 le_uint16 right = k & 0xffff; local
194 if (left < 256 && right < 256) {
201 c = ids[right];
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DFieldExpression.java54 public FieldExpression(long where, Expression right, Identifier id) { argument
55 super(FIELD, where, Type.tError, right);
58 public FieldExpression(long where, Expression right, MemberDefinition field) { argument
59 super(FIELD, where, field.getType(), right);
90 e = fe.right;
111 Type rty = right.toQualifiedType(env, ctx);
197 FieldExpression.reportFailedPackagePrefix(env, right, true);
251 static void reportFailedPackagePrefix(Environment env, Expression right) { argument
252 reportFailedPackagePrefix(env, right, false);
256 Expression right,
255 reportFailedPackagePrefix(Environment env, Expression right, boolean mustBeType) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/java2d/pisces/
H A DHelpers.java212 float[] right, int rightoff, int type)
216 Helpers.subdivideQuad(src, srcoff, left, leftoff, right, rightoff);
219 Helpers.subdivideCubic(src, srcoff, left, leftoff, right, rightoff);
246 * Either or both of the <code>left</code> and <code>right</code>
252 * and <code>right</code> and to use offsets, such as <code>rightoff</code>
262 * @param right the array for storing the coordinates for the second
265 * the 6 right coordinates
270 float right[], int rightoff)
284 if (right != null) {
285 right[rightof
211 subdivide(float[] src, int srcoff, float[] left, int leftoff, float[] right, int rightoff, int type) argument
268 subdivideCubic(float src[], int srcoff, float left[], int leftoff, float right[], int rightoff) argument
319 subdivideCubicAt(float t, float src[], int srcoff, float left[], int leftoff, float right[], int rightoff) argument
369 subdivideQuad(float src[], int srcoff, float left[], int leftoff, float right[], int rightoff) argument
407 subdivideQuadAt(float t, float src[], int srcoff, float left[], int leftoff, float right[], int rightoff) argument
445 subdivideAt(float t, float src[], int srcoff, float left[], int leftoff, float right[], int rightoff, int size) argument
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DconcurrentMarkSweepGeneration.inline.hpp228 HeapWord* right) {
231 right = MIN2(_bmStartWord + _bmWordSize, right);
232 if (right > left) {
233 _bm.iterate(cl, heapWordToOffset(left), heapWordToOffset(right));
227 iterate(BitMapClosure* cl, HeapWord* left, HeapWord* right) argument
/openjdk7/hotspot/src/share/vm/opto/
H A Dconnode.hpp155 CMoveNode( Node *bol, Node *left, Node *right, const Type *t ) : TypeNode(t,4) argument
162 init_req(IfTrue,right);
167 static CMoveNode *make( Compile *C, Node *c, Node *bol, Node *left, Node *right, const Type *t );
175 CMoveDNode( Node *bol, Node *left, Node *right, const Type* t) : CMoveNode(bol,left,right,t){} argument
183 CMoveFNode( Node *bol, Node *left, Node *right, const Type* t ) : CMoveNode(bol,left,right,t) {} argument
191 CMoveINode( Node *bol, Node *left, Node *right, const TypeInt *ti ) : CMoveNode(bol,left,right,ti){} argument
199 CMoveLNode(Node *bol, Node *left, Node *right, cons argument
206 CMovePNode( Node *c, Node *bol, Node *left, Node *right, const TypePtr* t ) argument
213 CMoveNNode( Node *c, Node *bol, Node *left, Node *right, const Type* t ) argument
[all...]
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaUtilControlSize.java226 this.insets = new InsetsUIResource(desc.insets.top, desc.insets.left, desc.insets.bottom, desc.insets.right);
227 this.margins = new InsetsUIResource(desc.margins.top, desc.margins.left, desc.margins.bottom, desc.margins.right);
240 this.insets = new InsetsUIResource(i.top, i.left, i.bottom, i.right);
244 public SizeVariant alterInsets(final int top, final int left, final int bottom, final int right) { argument
245 insets = generateInsets(insets, top, left, bottom, right);
254 public SizeVariant alterMargins(final int top, final int left, final int bottom, final int right) { argument
255 margins = generateInsets(margins, top, left, bottom, right);
276 static Insets generateInsets(final Insets i, final int top, final int left, final int bottom, final int right) { argument
277 if (i == null) return new InsetsUIResource(top, left, bottom, right);
281 i.right
[all...]

Completed in 122 milliseconds

12345678