Searched defs:addSize (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/test/javax/swing/JColorChooser/
H A DTest6524757.java179 addSize(list, upper, 1, 1, 31, 9);
181 addSize(list, lower, 1, 1, 5, 7);
214 private static void addSize(List<Object> list, Component component, int x, int y, int w, int h) { method in class:Test6524757
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DGapVector.java131 protected void replace(int position, int rmSize, Object addItems, int addSize) { argument
133 if (addSize == 0) {
136 } else if (rmSize > addSize) {
138 close(position+addSize, rmSize-addSize);
141 int endSize = addSize - rmSize;
144 addSize = rmSize;
146 System.arraycopy(addItems, addOffset, array, position, addSize);

Completed in 43 milliseconds