Searched defs:right (Results 1 - 3 of 3) sorted by relevance
/solaris-userland-s11u3/components/visual-panels/core/src/java/util/com/oracle/solaris/vp/util/swing/ |
H A D | ClippedBorder.java | 47 private boolean right; field in class:ClippedBorder 71 * @param right 72 * {@code true} to include the right side of {@code border} in 76 boolean bottom, boolean right) { 84 this.right = right; 98 int right = this.right ? i.right : 0; 100 return new Insets(top, left, bottom, right); 75 ClippedBorder(Border border, boolean top, boolean left, boolean bottom, boolean right) argument [all...] |
/solaris-userland-s11u3/components/visual-panels/usermgr/src/java/vpanels/app/usermgr/com/oracle/solaris/vp/panels/usermgr/client/swing/ |
H A D | Constraints.java | 61 int right) 73 if (top+bottom+left+right > 0) 74 gbc.insets = new Insets(top, left, bottom, right); 114 int right) 119 0.0, 0.0, top, left, bottom, right); 47 constrain( Container container, Component component, int gridx, int gridy, int gridwidth, int gridheight, int fill, int anchor, double weightx, double weighty, int top, int left, int bottom, int right) argument 104 constrain( Container container, Component component, int gridx, int gridy, int gridwidth, int gridheight, int top, int left, int bottom, int right) argument
|
H A D | Sort.java | 63 * @param right - the last index 66 private static void quicksort(Object arr[], int left, int right, argument 71 if (left >= right) { /* do nothing if array contains fewer than two */ 75 swap(arr, left, left+(Math.abs(rn.nextInt())%(right-left)+1)); 77 for (i = left+1; i <= right; i++) { 85 quicksort(arr, last+1, right, comp); 93 * @param right - the last index. 96 private static void quicksort(String arr[], int left, int right, argument 101 if (left >= right) { /* do nothing if array contains fewer than two */ 104 swap(arr, left, left+(Math.abs(rn.nextInt())%(right 138 quicksort(Vector vec, int left, int right, Compare comp) argument 166 quicksort(Vector vec, int left, int right, int order) argument 200 quicksort(QuickVector vec, int left, int right, Compare comp) argument 230 quicksort(QuickVector vec, int left, int right, int order) argument [all...] |
Completed in 33 milliseconds