Searched refs:negative (Results 1 - 25 of 29) sorted by relevance

12

/openjdk7/jdk/src/share/classes/sun/security/acl/
H A DAclEntryImpl.java41 private boolean negative = false; field in class:AclEntryImpl
74 * This method sets the ACL to have negative permissions.
79 negative = true;
83 * Returns true if this is a negative ACL.
86 return negative;
143 if (negative)
169 cloned.negative = negative;
/openjdk7/jdk/test/java/lang/Double/
H A DNaNInfinityParsing.java146 boolean negative = (infinityStrings[i].charAt(0) == '-');
147 if(d != (negative?Double.NEGATIVE_INFINITY:
150 (negative?"positive instead of negative.":
151 "negative instead of positive."));
/openjdk7/jdk/test/java/lang/Float/
H A DNaNInfinityParsing.java146 boolean negative = (infinityStrings[i].charAt(0) == '-');
147 if(d != (negative?Float.NEGATIVE_INFINITY:
150 (negative?"positive instead of negative.":
151 "negative instead of positive."));
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/packaging/mime/util/
H A DASCIIUtility.java56 boolean negative = false;
64 negative = true;
99 if (negative) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/
H A DASCIIUtility.java55 boolean negative = false;
63 negative = true;
98 if (negative) {
/openjdk7/jdk/src/share/classes/java/lang/
H A DInteger.java93 * <p>If the first argument is negative, the first element of the
96 * negative, no sign character appears in the result.
140 boolean negative = (i < 0);
143 if (!negative) {
153 if (negative) {
165 * if the argument is negative; otherwise, it is equal to the
203 * if the argument is negative; otherwise, it is equal to the
235 * if the argument is negative; otherwise it is equal to the
396 * indicate a negative value or an ASCII plus sign {@code '+'}
468 boolean negative
[all...]
H A DLong.java79 * <p>If the first argument is negative, the first element of the
82 * negative, no sign character appears in the result.
122 boolean negative = (i < 0);
124 if (!negative) {
134 if (negative) {
146 * 2<sup>64</sup> if the argument is negative; otherwise, it is
185 * 2<sup>64</sup> if the argument is negative; otherwise, it is
218 * 2<sup>64</sup> if the argument is negative; otherwise, it is
346 * indicate a negative value or an ASCII plus sign {@code '+'}
417 boolean negative
[all...]
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A DREADME.txt98 The cpu=times seems to have the most negative affect on
/openjdk7/jdk/src/share/classes/java/util/
H A DTimeZone.java856 boolean negative = false;
859 negative = true;
912 if (negative) {
918 zi = ZoneInfoFile.getCustomTimeZone(id, negative ? -gmtOffset : gmtOffset);
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DNodeCounter.java136 boolean negative = false;
142 negative = true;
171 if (negative) {
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/constExpr/
H A DExprFactory.java57 Negative negative (Expression operand); method in interface:ExprFactory
H A DDefaultExprFactory.java105 public Negative negative (Expression operand) method in class:DefaultExprFactory
108 } // negative
/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A Dpng.c787 "Ignoring attempt to set negative chromaticity value");
1133 /* Handle negative exponent with a reciprocal at the end because
1201 * C multiply would break the following for negative
1389 * leading zeros above for negative exponent, so this
1586 int negative = 0;
1591 negative = 1, A = -a;
1596 negative = !negative, T = -times;
1601 negative = !negative,
[all...]
H A DCHANGES509 negative shift distance, whose results are undefined in the C language.
2388 Reject attempt to write iCCP chunk with negative embedded profile length
2973 negative numbers.
3404 The cHRM chunk now sets the defaults for png_set_rgb_to_gray() (when negative
3524 maintains some state so that positive, negative and zero values are
/openjdk7/jdk/test/sun/nio/cs/
H A DTestISO2022CNDecoder.java171 private static boolean negative (byte encoded [], String label) method in class:TestISO2022CNDecoder
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dv/xs/
H A DAbstractDateTimeDV.java563 // parse Year differently to support negative value.
567 boolean negative = false;
574 negative = true;
597 if (negative) {
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DstubGenerator_sparc.cpp1283 __ brx(Assembler::negative, true, Assembler::pn, L_copy_last_bytes);
1354 __ brx(Assembler::negative, true, Assembler::pn, L_copy_last_bytes);
2425 __ brx(Assembler::negative, false, Assembler::pn, L_copy_8_bytes );
2433 __ brx(Assembler::negative, false, Assembler::pt, L_copy_16_bytes );
2445 __ brx(Assembler::negative, false, Assembler::pn, L_copy_8_bytes );
2536 __ brx(Assembler::negative, false, Assembler::pn, L_exit );
2989 // (2) src_pos must not be negative.
2990 // (3) dst_pos must not be negative.
2991 // (4) length must not be negative.
3003 __ br(Assembler::negative, fals
[all...]
H A Dinterp_masm_sparc.cpp75 br(Assembler::negative, true, Assembler::pt, skip_move);
1051 stop("monitor stack has negative size");
1415 // If the decrement causes the counter to overflow, stay negative
1417 brx(Assembler::negative, true, Assembler::pn, L);
1419 // Store the decremented counter, if it is still negative.
H A Dassembler_sparc.cpp1062 assert(number_of_arguments >= 0 , "cannot have negative number of arguments");
2093 br( negative, true, pt, no_extras ); // if neg, clear reg
2261 // are negative or not.
4206 case Assembler::negative: return Assembler::positive;
4214 case Assembler::positive: return Assembler::negative;
4916 // Check if count is negative (dead code) or zero.
/openjdk7/jdk/test/java/math/BigInteger/
H A DBigIntegerTest.java749 boolean negative = rnd.nextBoolean();
791 if (negative)
/openjdk7/hotspot/src/cpu/x86/vm/
H A DstubGenerator_x86_64.cpp784 __ jcc(Assembler::negative, L);
821 __ jcc(Assembler::negative, L);
867 __ jcc(Assembler::negative, L); // NaN -> 0
914 __ jcc(Assembler::negative, L); // NaN -> 0
1310 // qword_count - 64-bits element count, negative
1514 __ negptr(qword_count); // make the count negative
2585 // (2) src_pos must not be negative.
2586 // (3) dst_pos must not be negative.
2587 // (4) length must not be negative.
2601 __ jccb(Assembler::negative, L_failed_
[all...]
H A Dinterp_masm_x86_32.cpp900 // If the decrement causes the counter to overflow, stay negative
902 jcc(Assembler::negative, L);
H A Dinterp_masm_x86_64.cpp914 // If the decrement causes the counter to overflow, stay negative
916 jcc(Assembler::negative, L);
H A DstubGenerator_x86_32.cpp818 // qword_count - 8-bytes element count, negative
891 // qword_count - 8-bytes element count, negative
1733 // (2) src_pos must not be negative.
1734 // (3) dst_pos must not be negative.
1735 // (4) length must not be negative.
1756 __ jccb(Assembler::negative, L_failed_0);
1766 __ jccb(Assembler::negative, L_failed_0);
1771 __ jccb(Assembler::negative, L_failed_0);
H A Dassembler_x86.cpp5494 Assembler::positive /* negative = 0x8 */ ,
5495 Assembler::negative /* positive = 0x9 */ ,
7016 assert(number_of_arguments >= 0 , "cannot have negative number of arguments");
10618 negptr(cnt2); // Jumped here with negative cnt2, convert to positive
10634 jccb(Assembler::negative, RET_NOT_FOUND); // Left less then substring
10647 jccb(Assembler::negative, RET_NOT_FOUND); // Left less then substring
10698 addl(cnt1, cnt2); // cnt2 is negative
10715 jcc(Assembler::negative, SCAN_SUBSTR);
10884 jccb(Assembler::negative, RET_NOT_FOUND); // Left less then substring
10897 jccb(Assembler::negative, RET_NOT_FOUN
[all...]

Completed in 166 milliseconds

12