Searched defs:isNegative (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/src/share/classes/java/security/acl/
H A DAclEntry.java99 public boolean isNegative(); method in interface:AclEntry
/openjdk7/jdk/src/share/classes/sun/security/acl/
H A DAclEntryImpl.java85 public boolean isNegative() { method in class:AclEntryImpl
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/IPAcl/
H A DAclEntryImpl.java64 if (i.isNegative()) setNegativePermissions();
108 public boolean isNegative(){ method in class:AclEntryImpl
/openjdk7/jdk/src/share/classes/java/text/
H A DDigitList.java108 private boolean isNegative = false; field in class:DigitList
267 * @param isNegative Boolean value indicating whether the number is negative.
273 public final void set(boolean isNegative, double source, int maximumFractionDigits) { argument
274 set(isNegative, source, maximumFractionDigits, true);
280 * @param isNegative Boolean value indicating whether the number is negative.
288 final void set(boolean isNegative, double source, int maximumDigits, boolean fixedPoint) { argument
289 set(isNegative, Double.toString(source), maximumDigits, fixedPoint);
296 final void set(boolean isNegative, String s, int maximumDigits, boolean fixedPoint) { argument
297 this.isNegative = isNegative;
499 set(boolean isNegative, long source) argument
512 set(boolean isNegative, long source, int maximumDigits) argument
558 set(boolean isNegative, BigDecimal source, int maximumDigits, boolean fixedPoint) argument
573 set(boolean isNegative, BigInteger source, int maximumDigits) argument
[all...]
H A DDecimalFormat.java558 boolean isNegative = ((number < 0.0) || (number == 0.0 && 1/number < 0.0)) ^ (multiplier < 0);
565 if (isNegative) {
578 if (isNegative) {
589 if (isNegative) {
602 digitList.set(isNegative, number, useExponentialNotation ?
605 return subformat(result, delegate, isNegative, false,
641 boolean isNegative = (number < 0);
642 if (isNegative) {
666 if (isNegative) {
675 isNegative
864 subformat(StringBuffer result, FieldDelegate delegate, boolean isNegative, boolean isInteger, int maxIntDigits, int minIntDigits, int maxFraDigits, int minFraDigits) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/misc/
H A DFloatingDecimal.java35 boolean isNegative; field in class:FloatingDecimal
47 isNegative = negSign;
414 isNegative = true;
417 isNegative = false;
429 isNegative = false; // NaN has no sign!
474 isNegative = true;
477 isNegative = false;
489 isNegative = false; // NaN has no sign!
891 if ( isNegative ){ result.append( '-' ); }
912 if (isNegative) { resul
[all...]
H A DFormattedFloatingDecimal.java35 boolean isNegative; field in class:FormattedFloatingDecimal
53 isNegative = negSign;
484 isNegative = true;
487 isNegative = false;
499 isNegative = false; // NaN has no sign!
551 isNegative = true;
554 isNegative = false;
566 isNegative = false; // NaN has no sign!
968 if ( isNegative ){ result.append( '-' ); }
993 if (isNegative) { resul
[all...]

Completed in 538 milliseconds