/external/proguard/src/proguard/util/ |
D | ListMatcher.java | 34 private final boolean[] negate; field in ListMatcher 43 public ListMatcher(StringMatcher[] matchers, boolean[] negate) in ListMatcher() argument 46 this.negate = negate; in ListMatcher() 60 return negate == null || in matches() 61 !negate[index]; in matches() 65 return negate != null && in matches() 66 negate[negate.length - 1]; in matches()
|
/external/apache-harmony/math/src/test/java/tests/api/java/math/ |
D | BigIntegerTest.java | 153 .setBit(16).subtract(two).negate())); in test_ConstructorI$B() 249 assertTrue("bi3=copy of bi3", bi3.equals(bi3.negate().negate())); in test_equalsLjava_lang_Object() 261 two.negate().compareTo(one) < 0); in test_compareToLjava_math_BigInteger() 297 .add(aZillion.negate()).equals(aZillion)); in test_addLjava_math_BigInteger() 331 .negate().equals(zero)); in test_negate() 333 !aZillion.negate().equals(aZillion)); in test_negate() 335 aZillion.negate().negate().equals(aZillion)); in test_negate() 337 assertTrue("0.neg", zero.negate().equals(zero)); in test_negate() 338 assertTrue("1.neg", one.negate().equals(minusOne)); in test_negate() 339 assertTrue("2.neg", two.negate().equals(minusTwo)); in test_negate() [all …]
|
D | BigDecimalTest.java | 372 hash2 = new BigDecimal(value.negate(), 2); in test_hashCode() 400 BigDecimal long1 = new BigDecimal(value2.negate(), 0); in test_longValue() 453 movePtLeft = new BigDecimal(value2.negate(), 0); in test_movePointLeftI() 541 .negate().toString().equals("-1233.4560000")); in test_negate() 543 assertTrue("the negate of -23465839 is not 23465839", negate1.negate() in test_negate() 546 assertTrue("the negate of -3.456E6 is not 3.456E6", negate1.negate() in test_negate() 547 .negate().equals(negate1)); in test_negate() 616 BigDecimal setNeg = new BigDecimal(value.negate(), 4); in test_setScaleII() 754 result.equals(result2.negate())); in test_subtractLjava_math_BigDecimal()
|
/external/llvm/utils/lit/lit/ |
D | ShCommands.py | 39 def __init__(self, commands, negate=False, pipe_err=False): argument 41 self.negate = negate 45 return 'Pipeline(%r, %r, %r)' % (self.commands, self.negate, 52 return cmp((self.commands, self.negate, self.pipe_err), 53 (other.commands, other.negate, self.pipe_err)) 58 if self.negate:
|
/external/proguard/src/proguard/evaluation/value/ |
D | DoubleValue.java | 46 public abstract DoubleValue negate(); in negate() method in DoubleValue 128 return compare(other).negate(); in compareReverse() 231 return compare(other).negate(); in compareReverse() 334 return compare(other).negate(); in compareReverse()
|
D | FloatValue.java | 46 public abstract FloatValue negate(); in negate() method in FloatValue 128 return compare(other).negate(); in compareReverse() 231 return compare(other).negate(); in compareReverse() 334 return compare(other).negate(); in compareReverse()
|
D | LongValue.java | 46 public abstract LongValue negate(); in negate() method in LongValue 217 return compare(other).negate(); in compareReverse() 373 return compare(other).negate(); in compareReverse() 529 return compare(other).negate(); in compareReverse()
|
D | ParticularDoubleValue.java | 52 public DoubleValue negate() in negate() method in ParticularDoubleValue 87 return value == 0.0 ? other.negate() : other.subtractFrom(this); in subtract()
|
D | ParticularFloatValue.java | 52 public FloatValue negate() in negate() method in ParticularFloatValue 87 return value == 0.0 ? other.negate() : other.subtractFrom(this); in subtract()
|
D | NegatedFloatValue.java | 44 public FloatValue negate() in negate() method in NegatedFloatValue
|
D | NegatedDoubleValue.java | 44 public DoubleValue negate() in negate() method in NegatedDoubleValue
|
D | NegatedIntegerValue.java | 44 public IntegerValue negate() in negate() method in NegatedIntegerValue
|
D | NegatedLongValue.java | 44 public LongValue negate() in negate() method in NegatedLongValue
|
/external/stlport/test/unit/ |
D | unary_test.cpp | 79 …input, (int*)input + 3, output, unary_compose<square_root, negate<int> >(square_root(), negate<int… in ucompos1() 92 transform((int*)input, (int*)input + 3, output, compose1(square_root(), negate<int>())); in ucompos2()
|
D | neq_test.cpp | 36 transform((int*)input, (int*)input + 3, (int*)output, negate<int>()); in negate0()
|
/external/skia/src/core/ |
D | SkStrokerPriv.cpp | 118 after.negate(); in BluntJoiner() 142 before.negate(); in RoundJoiner() 143 after.negate(); in RoundJoiner() 196 before.negate(); in MiterJoiner() 197 after.negate(); in MiterJoiner() 233 mid.negate(); in MiterJoiner()
|
D | Sk64.cpp | 130 void Sk64::negate() in negate() function in Sk64 205 this->negate(); in setMul() 238 this->negate(); in div() 283 this->negate(); in div()
|
/external/e2fsprogs/misc/ |
D | fsck.c | 733 int negate; member 748 int negate, first_negate = 1; in compile_fs_type() local 766 cmp->negate = 0; in compile_fs_type() 775 negate = 0; in compile_fs_type() 778 negate = 1; in compile_fs_type() 781 negate = 1; in compile_fs_type() 789 cmp->type[num] = negate ? FS_TYPE_NEGOPT : FS_TYPE_OPT; in compile_fs_type() 792 cmp->negate = negate; in compile_fs_type() 795 if ((negate && !cmp->negate) || in compile_fs_type() 796 (!negate && cmp->negate)) { in compile_fs_type() [all …]
|
/external/bouncycastle/src/main/java/org/bouncycastle/math/ec/ |
D | ECPoint.java | 115 public abstract ECPoint negate(); in negate() method in ECPoint 309 return add(b.negate()); in subtract() 312 public ECPoint negate() in negate() method in ECPoint.Fp 314 return new ECPoint.Fp(curve, this.x, this.y.negate(), this.withCompression); in negate() 529 return addSimple((ECPoint.F2m)b.negate()); in subtractSimple() 565 public ECPoint negate() in negate() method in ECPoint.F2m
|
D | Tnaf.java | 14 private static final BigInteger MINUS_ONE = ECConstants.ONE.negate(); 15 private static final BigInteger MINUS_TWO = ECConstants.TWO.negate(); 16 private static final BigInteger MINUS_THREE = ECConstants.THREE.negate(); 375 r1 = t.shiftRight(1).negate(); in tauAdicNaf() 484 s = u1.negate(); in getLucas() 578 si[1] = dividend1.shiftRight(1).negate(); in getSi() 583 si[1] = dividend1.shiftRight(2).negate(); in getSi() 808 r1 = t.shiftRight(1).negate(); in tauAdicWNaf()
|
D | SimpleBigDecimal.java | 99 public SimpleBigDecimal negate() in negate() method in SimpleBigDecimal 101 return new SimpleBigDecimal(bigInt.negate(), scale); in negate() 106 return add(b.negate()); in subtract()
|
D | ECFieldElement.java | 17 public abstract ECFieldElement negate(); in negate() method in ECFieldElement 90 public ECFieldElement negate() in negate() method in ECFieldElement.Fp 92 return new Fp(q, x.negate().mod(q)); in negate() 1025 public ECFieldElement negate() in negate() method in ECFieldElement.F2m
|
/external/guava/src/com/google/common/base/ |
D | CharMatcher.java | 288 @Override public CharMatcher negate() { 352 @Override public CharMatcher negate() { 383 @Override public CharMatcher negate() { in is() method in CharMatcher 413 @Override public CharMatcher negate() { 466 return anyOf(sequence).negate(); 529 public CharMatcher negate() { 545 @Override public CharMatcher negate() { 867 return negate().removeFrom(sequence); 1081 int first = negate().indexIn(sequence);
|
/external/webkit/Source/WebCore/inspector/front-end/UglifyJS/ |
D | process.js | 612 function negate(c) { function 619 c[c.length - 1] = negate(c[c.length - 1]); 622 return best_of(not_c, [ "conditional", c[1], negate(c[2]), negate(c[3]) ]); 636 … case "&&" : return best_of(not_c, [ "binary", "||", negate(left), negate(right) ]); 637 … case "||" : return best_of(not_c, [ "binary", "&&", negate(left), negate(right) ]); 736 … a.push(make_if(negate(stat[1]), [ "block", statements.slice(i) ])); 759 c = negate(c); 768 var n = negate(c); 808 ret = [ [ "if", negate(c), e ] ]; 902 ret = best_of(ret, negate(expr));
|
/external/apache-harmony/math/src/test/java/org/apache/harmony/tests/java/math/ |
D | BigDecimalCompareTest.java | 424 assertEquals("incorrect value", cNumber, aNumber.negate()); in testNegatePositive() 439 BigDecimal res = aNumber.negate(mc); in testNegateMathContextPositive() 454 assertEquals("incorrect value", cNumber, aNumber.negate()); in testNegateNegative() 469 BigDecimal res = aNumber.negate(mc); in testNegateMathContextNegative()
|