Searched defs:left (Results 51 - 75 of 183) sorted by relevance

12345678

/openjdk7/jdk/src/share/classes/java/util/
H A DDualPivotQuicksort.java104 * @param left the index of the first element, inclusive, to be sorted
107 public static void sort(int[] a, int left, int right) { argument
109 if (right - left < QUICKSORT_THRESHOLD) {
110 sort(a, left, right, true);
119 int count = 0; run[0] = left;
122 for (int k = left; k < right; run[count] = k) {
133 sort(a, left, right, true);
144 sort(a, left, right, true);
165 for (int i = left - 1; ++i < right; a[i] = b[i]);
197 * @param left th
201 sort(int[] a, int left, int right, boolean leftmost) argument
547 sort(long[] a, int left, int right) argument
641 sort(long[] a, int left, int right, boolean leftmost) argument
987 sort(short[] a, int left, int right) argument
1019 doSort(short[] a, int left, int right) argument
1113 sort(short[] a, int left, int right, boolean leftmost) argument
1459 sort(char[] a, int left, int right) argument
1491 doSort(char[] a, int left, int right) argument
1585 sort(char[] a, int left, int right, boolean leftmost) argument
1934 sort(byte[] a, int left, int right) argument
1981 sort(float[] a, int left, int right) argument
2068 doSort(float[] a, int left, int right) argument
2162 sort(float[] a, int left, int right, boolean leftmost) argument
2508 sort(double[] a, int left, int right) argument
2595 doSort(double[] a, int left, int right) argument
2689 sort(double[] a, int left, int right, boolean leftmost) argument
[all...]
/openjdk7/jdk/src/share/back/
H A DoutStream.h45 jint left; member in struct:PacketOutputStream
/openjdk7/jdk/src/share/classes/sun/tools/asm/
H A DConstantPool.java147 static void xsort(ConstantPoolData ff[], String ss[], int left, int right) { argument
148 if (left >= right)
150 String pivot = ss[left];
151 int l = left;
156 while (r >= left && ss[r].compareTo(pivot) > 0)
167 // swap left and middle
168 ConstantPoolData def = ff[left];
169 String name = ss[left];
170 ff[left] = ff[middle]; ff[middle] = def;
171 ss[left]
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/jstat/
H A DExpression.java39 private Expression left; field in class:Expression
50 void setLeft(Expression left) { argument
52 System.out.println("Setting left on " + ordinal + " to " + left);
54 this.left = left;
58 return left;
86 if (left != null) {
87 b.append(left.toString());
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DAssignExpression.java46 public AssignExpression(long where, Expression left, Expression right) { argument
47 super(ASSIGN, where, left, right);
54 if (left instanceof IdentifierExpression) {
58 vset = left.checkLHS(env, ctx, vset, exp);
60 // normally left to right evaluation.
61 vset = left.checkLHS(env, ctx, vset, exp);
64 type = left.type;
68 updater = left.getAssigner(env, ctx);
81 left = left
[all...]
H A DCastExpression.java44 public CastExpression(long where, Expression left, Expression right) { argument
45 super(CAST, where, left.type, left, right);
52 type = left.toType(env, ctx);
110 if (left.type.isType(TC_ARRAY) ||
112 env.getClassDeclaration(left.type)))
127 left.print(out);
H A DEqualExpression.java42 public EqualExpression(long where, Expression left, Expression right) { argument
43 super(EQ, where, left, right);
69 if (left.isConstant() && !right.isConstant()) {
70 return new EqualExpression(where, right, left);
79 left.codeValue(env, ctx, asm);
80 switch (left.type.getTypeCode()) {
H A DGreaterExpression.java42 public GreaterExpression(long where, Expression left, Expression right) { argument
43 super(GT, where, left, right);
66 if (left.isConstant() && !right.isConstant()) {
67 return new LessExpression(where, right, left);
76 left.codeValue(env, ctx, asm);
77 switch (left.type.getTypeCode()) {
H A DGreaterOrEqualExpression.java42 public GreaterOrEqualExpression(long where, Expression left, Expression right) { argument
43 super(GE, where, left, right);
66 if (left.isConstant() && !right.isConstant()) {
67 return new LessOrEqualExpression(where, right, left);
76 left.codeValue(env, ctx, asm);
77 switch (left.type.getTypeCode()) {
H A DLessExpression.java42 public LessExpression(long where, Expression left, Expression right) { argument
43 super(LT, where, left, right);
66 if (left.isConstant() && !right.isConstant()) {
67 return new GreaterExpression(where, right, left);
76 left.codeValue(env, ctx, asm);
77 switch (left.type.getTypeCode()) {
H A DLessOrEqualExpression.java42 public LessOrEqualExpression(long where, Expression left, Expression right) { argument
43 super(LE, where, left, right);
66 if (left.isConstant() && !right.isConstant()) {
67 return new GreaterOrEqualExpression(where, right, left);
76 left.codeValue(env, ctx, asm);
77 switch (left.type.getTypeCode()) {
H A DNotEqualExpression.java42 public NotEqualExpression(long where, Expression left, Expression right) { argument
43 super(NE, where, left, right);
69 if (left.isConstant() && !right.isConstant()) {
70 return new NotEqualExpression(where, right, left);
79 left.codeValue(env, ctx, asm);
80 switch (left.type.getTypeCode()) {
/openjdk7/jdk/test/java/rmi/reliability/benchmark/bench/serial/
H A DSmallObjTrees.java41 Object parent, left, right; field in class:SmallObjTrees.Node
46 left = new Node(this, depth - 1);
/openjdk7/jdk/test/java/util/concurrent/Exchanger/
H A DExchangeLoops.java77 final Exchanger<Int> left; field in class:ExchangeLoops.Stage
81 Stage(Exchanger<Int> left, argument
84 this.left = left;
95 if (left != null) {
97 Int other = left.exchange(item);
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DAbsolutePathPattern.java51 public AbsolutePathPattern(RelativePathPattern left) { argument
52 _left = left;
53 if (left != null) {
54 left.setParent(this);
H A DAlternativePattern.java46 public AlternativePattern(Pattern left, Pattern right) { argument
47 _left = left;
75 double left = _left.getPriority();
78 if (left < right)
79 return(left);
H A DAncestorPattern.java57 public AncestorPattern(Pattern left, RelativePathPattern right) { argument
58 _left = left;
60 if (left != null) {
61 left.setParent(this);
H A DCastExpr.java129 public CastExpr(Expression left, Type type) throws TypeCheckError { argument
130 _left = left;
140 setParser(left.getParser());
141 setParent(left.getParent());
142 left.setParent(this);
143 typeCheck(left.getParser().getSymbolTable());
H A DIdKeyPattern.java65 public void setLeft(RelativePathPattern left) { argument
66 _left = left;
H A DParentPattern.java47 public ParentPattern(Pattern left, RelativePathPattern right) { argument
48 (_left = left).setParent(this);
H A DUnaryOpExpr.java40 public UnaryOpExpr(Expression left) { argument
41 (_left = left).setParent(this);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DRBNode.java28 accessors for the left and right children as well as the color of
33 private RBNode left; field in class:RBNode
51 (parent, left child, right child). It also does not need to copy
61 computed information based on the information in their left or
75 /** Access to left child */
76 public RBNode getLeft() { return left; }
77 public void setLeft(RBNode left) { this.left = left; } argument
/openjdk7/jdk/src/share/classes/javax/swing/
H A DLegacyGlueFocusTraversalPolicy.java61 void setNextFocusableComponent(Component left, Component right) { argument
62 forwardMap.put(left, right);
63 backwardMap.put(right, left);
65 void unsetNextFocusableComponent(Component left, Component right) { argument
66 forwardMap.remove(left);
/openjdk7/jdk/src/share/classes/javax/swing/border/
H A DMatteBorder.java57 * @param left the left inset of the border
62 public MatteBorder(int top, int left, int bottom, int right, Color matteColor) { argument
63 super(top, left, bottom, right);
81 * @param left the left inset of the border
86 public MatteBorder(int top, int left, int bottom, int right, Icon tileIcon) { argument
87 super(top, left, bottom, right);
106 * tile icon's height, and the left and right will be equal to
130 g.fillRect(0, insets.top, insets.left, heigh
[all...]
/openjdk7/jdk/src/share/classes/javax/management/
H A DBinaryOpValueExp.java82 * Returns the left value of the value expression.
199 * The following examples show the rules in action. On the left,
211 private String parens(ValueExp subexp, boolean left) argument
216 if (left)

Completed in 353 milliseconds

12345678