Searched defs:left (Results 76 - 100 of 183) sorted by relevance

12345678

/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaComboBoxButton.java95 int left = 0;
116 painter.paint(g, this, left, top, width, height);
117 doRendererPaint(g, buttonModel, editable, getInsets(), left, top, width, height);
125 left += insets.left;
126 width -= insets.left + insets.right;
152 painter.paint(g, comboBox, left + 2, top - 1, width - 4, height);
154 painter.paint(g, comboBox, left, top, width, height);
159 doRendererPaint(g, buttonModel, editable, insets, left, top, width, height);
163 protected void doRendererPaint(final Graphics g, final ButtonModel buttonModel, final boolean editable, final Insets insets, int left, in argument
[all...]
/openjdk7/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/utils/
H A DStringStream.java43 * Number of characters left.
45 public int left(){ return data.length() - pos; } method in class:StringStream
48 * Are there any characters left?
50 public boolean atEOF(){ return left() <= 0; }
/openjdk7/hotspot/test/compiler/7047069/
H A DTest7047069.java74 float left[], int leftoff,
83 if (left != null) {
84 left[leftoff + 0] = x1;
85 left[leftoff + 1] = y1;
97 if (left != null) {
98 left[leftoff + 2] = x1;
99 left[leftoff + 3] = y1;
100 left[leftoff + 4] = ctrlx;
101 left[leftoff + 5] = ctrly;
73 subdivide(float src[], int srcoff, float left[], int leftoff, float right[], int rightoff) argument
/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Dinftrees.c70 int left; /* number of prefix codes available */ local
155 left = 1;
157 left <<= 1;
158 left -= count[len];
159 if (left < 0) return -1; /* over-subscribed */
161 if (left > 0 && (type == CODES || max != 1))
294 left = (int)(1 << curr);
296 left -= count[curr + drop];
297 if (left <= 0) break;
299 left <<
[all...]
H A Dinfback.c146 left = strm->avail_out; \
157 strm->avail_out = left; \
227 if (left == 0) { \
229 left = state->wsize; \
230 state->whave = left; \
231 if (out(out_desc, put, left)) { \
275 unsigned have, left; /* available input and output */ local
302 left = state->wsize;
361 if (copy > left) copy = left;
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DAddExpression.java41 public AddExpression(long where, Expression left, Expression right) { argument
42 super(ADD, where, left, right);
49 if ((left.type == Type.tString) && !right.type.isType(TC_VOID)) {
52 } else if ((right.type == Type.tString) && !left.type.isType(TC_VOID)) {
156 buffer = left.inlineValueSB(env, ctx, buffer);
170 if (left.equals(0)) {
174 return left;
179 } else if (left.type.isType(TC_NULL)) {
180 left = new StringExpression(left
[all...]
H A DAndExpression.java43 public AndExpression(long where, Expression left, Expression right) { argument
44 super(AND, where, left, right);
52 * both the left and right hand side are true
54 * either the left or right hand side is false
58 // Find out when the left side is true/false
59 left.checkCondition(env, ctx, vset, exp, cvars);
60 left = convert(env, ctx, Type.tBoolean, left);
64 // Only look at the right side if the left side is true
69 // cvars.vsFalse must be set to either the left o
[all...]
H A DBinaryAssignExpression.java44 BinaryAssignExpression(int op, long where, Expression left, Expression right) { argument
45 super(op, where, left.type, left, right);
58 if (precedence() >= left.precedence()) {
59 UnaryExpression e = (UnaryExpression)left;
60 left = e.right;
85 left = left.inlineLHS(env, ctx);
H A DCommaExpression.java42 public CommaExpression(long where, Expression left, Expression right) { argument
43 super(COMMA, where, (right != null) ? right.type : Type.tVoid, left, right);
50 vset = left.check(env, ctx, vset, exp);
66 if (left == null) {
70 return left;
79 if (left != null) {
80 left = left.inline(env, ctx);
88 if (left != null) {
89 left
[all...]
H A DConditionalExpression.java46 public ConditionalExpression(long where, Expression cond, Expression left, Expression right) { argument
47 super(COND, where, Type.tError, left, right);
69 vset = left.checkValue(env, ctx, cvars.vsTrue, exp).join(
73 int tm = left.type.getTypeMask() | right.type.getTypeMask();
78 if (left.type.equals(right.type)) {
79 type = left.type;
90 type = env.implicitCast(right.type, left.type)
91 ? left.type : right.type;
95 } else if (((tm & TM_CHAR) != 0) && left.fitsType(env, ctx, Type.tChar) && right.fitsType(env, ctx, Type.tChar)) {
97 } else if (((tm & TM_SHORT) != 0) && left
[all...]
H A DInstanceOfExpression.java44 public InstanceOfExpression(long where, Expression left, Expression right) { argument
45 super(INSTANCEOF, where, Type.tBoolean, left, right);
52 vset = left.checkValue(env, ctx, vset, exp);
55 if (right.type.isType(TC_ERROR) || left.type.isType(TC_ERROR)) {
65 if (!env.explicitCast(left.type, right.type)) {
66 env.error(where, "invalid.instanceof", left.type, right.type);
78 return left.inline(env, ctx);
81 left = left.inlineValue(env, ctx);
87 return 1 + left
[all...]
H A DOrExpression.java43 public OrExpression(long where, Expression left, Expression right) { argument
44 super(OR, where, left, right);
52 * either the left and right hand side isn true
54 * both the left or right hand side are false
58 // Find out when the left side is true/false
59 left.checkCondition(env, ctx, vset, exp, cvars);
60 left = convert(env, ctx, Type.tBoolean, left);
64 // Only look at the right side if the left side is false
69 // cvars.vsTrue must be set back to either left sid
[all...]
/openjdk7/jdk/test/java/rmi/reliability/benchmark/bench/rmi/
H A DObjArrayCalls.java52 Object parent, left, right; field in class:ObjArrayCalls.Node
57 left = new Node(this, depth - 1);
H A DObjTreeCalls.java52 Object parent, left, right; field in class:ObjTreeCalls.Node
57 left = new Node(this, depth - 1);
/openjdk7/jdk/test/java/rmi/reliability/benchmark/bench/serial/
H A DObjArrays.java50 Object parent, left, right; field in class:ObjArrays.Node
55 left = new Node(this, depth - 1);
H A DObjTrees.java50 Object parent, left, right; field in class:ObjTrees.Node
55 left = new Node(this, depth - 1);
H A DReplaceTrees.java42 Object parent, left, right; field in class:ReplaceTrees.Node
44 Node(Object parent, Object left, Object right) { argument
46 this.left = left;
53 left = new Node(this, depth - 1);
59 return new RepNode(parent, left, right);
64 Object parent, left, right; field in class:ReplaceTrees.RepNode
66 RepNode(Object parent, Object left, Object right) { argument
68 this.left = left;
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DBinOpExpr.java52 public BinOpExpr(int op, Expression left, Expression right) { argument
54 (_left = left).setParent(this);
H A DEqualityExpr.java65 public EqualityExpr(int op, Expression left, Expression right) { argument
67 (_left = left).setParent(this);
176 // If one arg is a node-set then make it the left one
H A DLogicalExpr.java53 * left- and right-hand side expressions can also be logical expressions,
57 public LogicalExpr(int op, Expression left, Expression right) { argument
59 (_left = left).setParent(this);
131 // Get the left and right operand types
141 // Check if left-hand side operand must be type casted
175 // Translate left hand side - must be true
181 // Translate left right side - must be true
190 // Special case for OR-expression as a left child of AND.
218 // Translate left-hand side expression and produce true/false list
H A DRelationalExpr.java55 public RelationalExpr(int op, Expression left, Expression right) { argument
57 (_left = left).setParent(this);
147 // Ensure that the node-set is the left argument
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/operations/
H A DOperation.java38 /** The left operand expression.
82 * Set the left and right operand expressions for this operation.
85 * @param l The left expression operand.
111 XObject left = m_left.execute(xctxt, true);
114 XObject result = operate(left, right);
115 left.detach();
124 * @param left non-null reference to the evaluated left operand.
131 public XObject operate(XObject left, XObject right) argument
137 /** @return the left operan
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsVirtualspace.hpp55 inline static size_t pointer_delta(const char* left, const char* right);
151 PSVirtualSpace::pointer_delta(const char* left, const char* right) { argument
152 return ::pointer_delta((void *)left, (void*)right, sizeof(char));
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/motif/
H A DMotifTreeUI.java78 protected void paintHorizontalLine( Graphics g, JComponent c, int y, int left, int right ) argument
80 g.fillRect( left, y, right - left + 1, 2 );
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DConstFold.java153 * @param left The type of the operation's left operand.
156 Type fold2(int opcode, Type left, Type right) { argument
161 Type t1 = fold2(opcode >> ByteCodes.preShift, left, right);
165 Object l = left.constValue();
179 return (left.tag == BOOLEAN
185 return (left.tag == BOOLEAN
191 return (left.tag == BOOLEAN
317 left.stringValue() + right.stringValue());

Completed in 50 milliseconds

12345678