Searched refs:newCount (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DMemoryPoolProxy.java98 Long newCount = gc.getCollectionCount();
99 if (newCount > gcCount) {
100 gcMBeans.put(e.getKey(), new Long(newCount));
/openjdk7/jdk/src/share/classes/sun/awt/geom/
H A DAreaOp.java101 int newCount = count;
102 int type = (newCount == 0 ? ETAG_ENTER : ETAG_IGNORE);
103 newCount += e.getCurve().getDirection();
104 count = newCount;
105 return (newCount == 0 ? ETAG_EXIT : type);
/openjdk7/jdk/src/share/classes/javax/swing/tree/
H A DDefaultTreeSelectionModel.java215 int newCount, newCounter, oldCount, oldCounter;
219 newCount = 0;
221 newCount = paths.length;
226 if((newCount + oldCount) != 0) {
230 if(newCount > 1) {
233 newCount = 1;
240 if(newCount > 0 && !arePathsContiguous(paths)) {
243 newCount = 1;
248 Vector<PathPlaceHolder> cPaths = new Vector<PathPlaceHolder>(newCount + oldCount);
250 new ArrayList<TreePath>(newCount);
[all...]
/openjdk7/jdk/src/share/classes/java/lang/
H A DAbstractStringBuilder.java798 int newCount = count + len - (end - start);
799 ensureCapacityInternal(newCount);
803 count = newCount;
/openjdk7/jdk/src/share/classes/sun/java2d/pisces/
H A DRenderer.java70 int newCount = 0;
74 ptrs[newCount++] = ecur;
77 count = newCount;
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJTree.java2944 * @param newCount the number of rows to display
2949 public void setVisibleRowCount(int newCount) { argument
2952 visibleRowCount = newCount;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/
H A DXMLSchemaValidator.java2175 int newCount = fMatcherStack.getMatcherCount();
2177 for (int i = oldCount - 1; i >= newCount; i--) {
2190 for (int i = oldCount - 1; i >= newCount; i--) {

Completed in 65 milliseconds