Searched refs:negate (Results 1 - 25 of 61) sorted by relevance

123

/external/proguard/src/proguard/util/
H A DListMatcher.java34 private final boolean[] negate; field in class:ListMatcher
43 public ListMatcher(StringMatcher[] matchers, boolean[] negate) argument
46 this.negate = negate;
60 return negate == null ||
61 !negate[index];
65 return negate != null &&
66 negate[negate.length - 1];
/external/llvm/utils/lit/lit/
H A DShCommands.py39 def __init__(self, commands, negate=False, pipe_err=False):
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/
H A DNegatedDoubleValue.java44 public DoubleValue negate() method in class:NegatedDoubleValue
H A DNegatedFloatValue.java44 public FloatValue negate() method in class:NegatedFloatValue
H A DNegatedIntegerValue.java44 public IntegerValue negate() method in class:NegatedIntegerValue
H A DNegatedLongValue.java44 public LongValue negate() method in class:NegatedLongValue
H A DDoubleValue.java46 public abstract DoubleValue negate(); method in class:DoubleValue
128 return compare(other).negate();
231 return compare(other).negate();
334 return compare(other).negate();
H A DFloatValue.java46 public abstract FloatValue negate(); method in class:FloatValue
128 return compare(other).negate();
231 return compare(other).negate();
334 return compare(other).negate();
H A DUnknownDoubleValue.java32 public DoubleValue negate() method in class:UnknownDoubleValue
H A DUnknownFloatValue.java32 public FloatValue negate() method in class:UnknownFloatValue
H A DParticularDoubleValue.java52 public DoubleValue negate() method in class:ParticularDoubleValue
87 return value == 0.0 ? other.negate() : other.subtractFrom(this);
H A DParticularFloatValue.java52 public FloatValue negate() method in class:ParticularFloatValue
87 return value == 0.0 ? other.negate() : other.subtractFrom(this);
H A DLongValue.java46 public abstract LongValue negate(); method in class:LongValue
217 return compare(other).negate();
373 return compare(other).negate();
529 return compare(other).negate();
H A DUnknownLongValue.java32 public LongValue negate() method in class:UnknownLongValue
/external/stlport/test/unit/
H A Dunary_test.cpp79 transform((int*)input, (int*)input + 3, output, unary_compose<square_root, negate<int> >(square_root(), negate<int>()));
92 transform((int*)input, (int*)input + 3, output, compose1(square_root(), negate<int>()));
H A Dneq_test.cpp36 transform((int*)input, (int*)input + 3, (int*)output, negate<int>());
/external/apache-harmony/math/src/test/java/tests/api/java/math/
H A DBigIntegerTest.java153 .setBit(16).subtract(two).negate()));
249 assertTrue("bi3=copy of bi3", bi3.equals(bi3.negate().negate()));
261 two.negate().compareTo(one) < 0);
297 .add(aZillion.negate()).equals(aZillion));
327 * @tests java.math.BigInteger#negate()
331 .negate().equals(zero));
333 !aZillion.negate().equals(aZillion));
335 aZillion.negate().negate()
[all...]
/external/bouncycastle/src/main/java/org/bouncycastle/math/ec/
H A DFpNafMultiplier.java21 ECPoint neg = p.negate();
H A DSimpleBigDecimal.java99 public SimpleBigDecimal negate() method in class:SimpleBigDecimal
101 return new SimpleBigDecimal(bigInt.negate(), scale);
106 return add(b.negate());
H A DECPoint.java115 public abstract ECPoint negate(); method in class:ECPoint
309 return add(b.negate());
312 public ECPoint negate() method in class:ECPoint.Fp
314 return new ECPoint.Fp(curve, this.x, this.y.negate(), this.withCompression);
529 return addSimple((ECPoint.F2m)b.negate());
565 public ECPoint negate() method in class:ECPoint.F2m
H A DTnaf.java14 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();
484 s = u1.negate();
578 si[1] = dividend1.shiftRight(1).negate();
583 si[1] = dividend1.shiftRight(2).negate();
808 r1 = t.shiftRight(1).negate();
/external/skia/src/core/
H A DSkStrokerPriv.cpp118 after.negate();
142 before.negate();
143 after.negate();
175 // negate the dot since we're using normals instead of tangents
196 before.negate();
197 after.negate();
233 mid.negate();
H A DSk64.cpp130 void Sk64::negate() function in class:Sk64
205 this->negate();
238 this->negate();
283 this->negate();
/external/guava/src/com/google/common/base/
H A DCharMatcher.java288 @Override public CharMatcher negate() {
352 @Override public CharMatcher negate() {
383 @Override public CharMatcher negate() {
399 * <p>To negate another {@code CharMatcher}, use {@link #negate()}.
413 @Override public CharMatcher negate() {
466 return anyOf(sequence).negate();
529 public CharMatcher negate() { method in class:CharMatcher
545 @Override public CharMatcher negate() {
655 // TODO: make methods like negate() smar
[all...]
/external/e2fsprogs/misc/
H A Dfsck.c733 int negate; member in struct:fs_type_compile
748 int negate, first_negate = 1; local
766 cmp->negate = 0;
775 negate = 0;
778 negate = 1;
781 negate = 1;
789 cmp->type[num] = negate ? FS_TYPE_NEGOPT : FS_TYPE_OPT;
792 cmp->negate = negate;
795 if ((negate
[all...]

Completed in 322 milliseconds

123