Searched defs:getMax (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/share/classes/java/lang/management/
H A DMemoryUsage.java183 this.max = MemoryUsageCompositeData.getMax(cd);
234 public long getMax() { method in class:MemoryUsage
/openjdk7/jdk/src/share/classes/sun/print/
H A DSunMinMaxPage.java51 public final int getMax() { method in class:SunMinMaxPage
/openjdk7/jdk/src/share/classes/sun/management/
H A DMemoryUsageCompositeData.java62 new Long(usage.getMax()),
111 public static long getMax(CompositeData cd) { method in class:MemoryUsageCompositeData
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xpath/regex/
H A DToken.java231 int getMax() { // for CLOSURE method in class:Token
343 if (this.getMax() >= 0)
346 return this.getMax() * this.getChild(0).getMaxLength();
1237 final int getMax() { method in class:Token.ClosureToken
1244 if (this.getMin() < 0 && this.getMax() < 0) {
1246 } else if (this.getMin() == this.getMax()) {
1248 } else if (this.getMin() >= 0 && this.getMax() >= 0) {
1249 ret = this.child.toString(options)+"{"+this.getMin()+","+this.getMax()+"}";
1250 } else if (this.getMin() >= 0 && this.getMax() < 0) {
1254 +this.getMin()+", "+this.getMax());
[all...]

Completed in 431 milliseconds