/openjdk7/jdk/src/solaris/native/sun/awt/ |
H A D | awt_Insets.h | 31 jfieldID left; member in struct:InsetsIDs
|
/openjdk7/jdk/src/share/back/ |
H A D | inStream.h | 36 jint left; member in struct:PacketInputStream
|
/openjdk7/jdk/src/share/classes/javax/swing/plaf/ |
H A D | InsetsUIResource.java | 52 public InsetsUIResource(int top, int left, int bottom, int right) { argument 53 super(top, left, bottom, right);
|
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/operations/ |
H A D | Div.java | 40 * @param left non-null reference to the evaluated left operand. 47 public XObject operate(XObject left, XObject right) argument 50 return new XNumber(left.num() / right.num());
|
H A D | Equals.java | 40 * @param left non-null reference to the evaluated left operand. 47 public XObject operate(XObject left, XObject right) argument 50 return left.equals(right) ? XBoolean.S_TRUE : XBoolean.S_FALSE; 67 XObject left = m_left.execute(xctxt, true); 70 boolean result = left.equals(right) ? true : false; 71 left.detach();
|
H A D | Gt.java | 39 * @param left non-null reference to the evaluated left operand. 46 public XObject operate(XObject left, XObject right) argument 49 return left.greaterThan(right) ? XBoolean.S_TRUE : XBoolean.S_FALSE;
|
H A D | Gte.java | 39 * @param left non-null reference to the evaluated left operand. 46 public XObject operate(XObject left, XObject right) argument 49 return left.greaterThanOrEqual(right)
|
H A D | Lt.java | 39 * @param left non-null reference to the evaluated left operand. 46 public XObject operate(XObject left, XObject right) argument 49 return left.lessThan(right) ? XBoolean.S_TRUE : XBoolean.S_FALSE;
|
H A D | Lte.java | 39 * @param left non-null reference to the evaluated left operand. 46 public XObject operate(XObject left, XObject right) argument 49 return left.lessThanOrEqual(right) ? XBoolean.S_TRUE : XBoolean.S_FALSE;
|
H A D | Minus.java | 40 * @param left non-null reference to the evaluated left operand. 48 public XObject operate(XObject left, XObject right) argument 51 return new XNumber(left.num() - right.num());
|
H A D | Mod.java | 40 * @param left non-null reference to the evaluated left operand. 47 public XObject operate(XObject left, XObject right) argument 50 return new XNumber(left.num() % right.num());
|
H A D | Mult.java | 40 * @param left non-null reference to the evaluated left operand. 47 public XObject operate(XObject left, XObject right) argument 50 return new XNumber(left.num() * right.num());
|
H A D | NotEquals.java | 39 * @param left non-null reference to the evaluated left operand. 46 public XObject operate(XObject left, XObject right) argument 49 return (left.notEquals(right)) ? XBoolean.S_TRUE : XBoolean.S_FALSE;
|
H A D | Plus.java | 40 * @param left non-null reference to the evaluated left operand. 47 public XObject operate(XObject left, XObject right) argument 50 return new XNumber(left.num() + right.num());
|
H A D | Quo.java | 42 * @param left non-null reference to the evaluated left operand. 49 public XObject operate(XObject left, XObject right) argument 52 return new XNumber((int) (left.num() / right.num()));
|
/openjdk7/jdk/src/share/classes/java/awt/ |
H A D | Insets.java | 53 * The inset from the left. 60 public int left; field in class:Insets 97 * specified top, left, bottom, and right insets. 99 * @param left the inset from the left. 103 public Insets(int top, int left, int bottom, int right) { argument 105 this.left = left; 111 * Set top, left, bottom, and right to the specified values 114 * @param left th 119 set(int top, int left, int bottom, int right) argument [all...] |
/openjdk7/jdk/test/java/io/Serializable/oldTests/ |
H A D | BinaryTree.java | 78 public BinaryTreeTest left; field in class:BinaryTreeTest 89 left = new BinaryTreeTest(l-1); 100 if (level <= levels && left != null) { 101 left.print(levels); 118 if (left != null && !left.equals(other.left)) {
|
/openjdk7/jdk/src/share/classes/sun/tools/tree/ |
H A D | AssignAddExpression.java | 41 public AssignAddExpression(long where, Expression left, Expression right) { argument 42 super(ASGADD, where, left, right); 72 int depth = left.codeLValue(env, ctx, asm); 78 left.codeLoad(env, ctx, asm); 79 left.ensureString(env, ctx, asm); // Why is this needed? 100 left.codeStore(env, ctx, asm); 109 left.ensureString(env, ctx, asm); // Why is this needed?
|
H A D | AssignBitAndExpression.java | 41 public AssignBitAndExpression(long where, Expression left, Expression right) { argument 42 super(ASGBITAND, where, left, right);
|
H A D | AssignBitOrExpression.java | 41 public AssignBitOrExpression(long where, Expression left, Expression right) { argument 42 super(ASGBITOR, where, left, right);
|
H A D | AssignBitXorExpression.java | 41 public AssignBitXorExpression(long where, Expression left, Expression right) { argument 42 super(ASGBITXOR, where, left, right);
|
H A D | AssignDivideExpression.java | 41 public AssignDivideExpression(long where, Expression left, Expression right) { argument 42 super(ASGDIV, where, left, right);
|
H A D | AssignMultiplyExpression.java | 41 public AssignMultiplyExpression(long where, Expression left, Expression right) { argument 42 super(ASGMUL, where, left, right);
|
H A D | AssignRemainderExpression.java | 41 public AssignRemainderExpression(long where, Expression left, Expression right) { argument 42 super(ASGREM, where, left, right);
|
H A D | AssignShiftLeftExpression.java | 41 public AssignShiftLeftExpression(long where, Expression left, Expression right) { argument 42 super(ASGLSHIFT, where, left, right);
|