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

12345

/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/guava/guava-tests/test/com/google/common/base/
H A DCharMatcherTest.java61 assertSame(CharMatcher.ANY, CharMatcher.NONE.negate());
62 assertSame(CharMatcher.NONE, CharMatcher.ANY.negate());
128 reallyTestEmpty(matcher.negate());
173 doTestNoMatches(inRange('A', 'Z').and(inRange('F', 'K').negate()), "F1a");
182 reallyTestAllMatches(matcher.negate(), s);
184 reallyTestAllMatches(matcher.negate().precomputed(), s);
185 reallyTestAllMatches(matcher.precomputed().negate(), s);
209 reallyTestNoMatches(matcher.negate(), s);
211 reallyTestNoMatches(matcher.negate().precomputed(), s);
212 reallyTestNoMatches(matcher.precomputed().negate(),
[all...]
/external/bouncycastle/bcprov/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());
/external/skia/src/core/
H A DSkStrokerPriv.cpp110 after.negate();
134 before.negate();
135 after.negate();
167 // negate the dot since we're using normals instead of tangents
188 before.negate();
189 after.negate();
225 mid.negate();
H A DSk64.cpp123 void Sk64::negate() function in class:Sk64
198 this->negate();
231 this->negate();
276 this->negate();
/external/jmonkeyengine/engine/src/test/jme3test/renderer/
H A DTestParallelProjection.java58 dl.setDirection(Vector3f.UNIT_XYZ.negate());
/external/guava/guava/src/com/google/common/base/
H A DCharMatcher.java287 @Override public CharMatcher negate() {
363 @Override public CharMatcher negate() {
397 @Override public CharMatcher negate() {
414 * <p>To negate another {@code CharMatcher}, use {@link #negate()}.
430 @Override public CharMatcher negate() {
486 return anyOf(sequence).negate();
556 public CharMatcher negate() { method in class:CharMatcher
575 @Override public CharMatcher negate() {
680 // TODO(kevinb): 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 503 milliseconds

12345