Searched defs:negate (Results 1 - 25 of 123) 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/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 DParticularDoubleValue.java52 public DoubleValue negate() method in class:ParticularDoubleValue
90 //return value == 0.0 ? other.negate() : other.subtractFrom(this);
H A DParticularFloatValue.java52 public FloatValue negate() method in class:ParticularFloatValue
90 //return value == 0.0 ? other.negate() : other.subtractFrom(this);
H A DSpecificDoubleValue.java32 public DoubleValue negate() method in class:SpecificDoubleValue
H A DSpecificFloatValue.java32 public FloatValue negate() method in class:SpecificFloatValue
H A DUnknownDoubleValue.java32 public DoubleValue negate() method in class:UnknownDoubleValue
H A DUnknownFloatValue.java32 public FloatValue negate() method in class:UnknownFloatValue
H A DIntegerValue.java46 public abstract IntegerValue negate(); method in class:IntegerValue
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 DParticularIntegerValue.java52 public IntegerValue negate() method in class:ParticularIntegerValue
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowPoint.java34 public final void negate() { method in class:ShadowPoint
H A DShadowPointF.java36 public final void negate() { method in class:ShadowPointF
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/tests/
H A Dleb128_test.c37 int negate; member in struct:Test_Entry
86 if (test->negate)
93 test->sign?"":"un", test->negate?"-":"", test->input,
104 test->sign?"":"un", test->negate?"-":"", test->input,
117 test->sign?"":"un", test->negate?"-":"", test->input);
135 if (test->negate)
143 test->sign?"":"un", test->negate?"-":"", test->input,
153 test->sign?"":"un", test->negate?"-":"", test->input);
/external/deqp/framework/common/
H A DtcuInterval.cpp113 static double negate (double x) function in namespace:tcu
120 return applyMonotone(negate, x);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
H A DSimpleBigDecimal.java99 public SimpleBigDecimal negate() method in class:SimpleBigDecimal
101 return new SimpleBigDecimal(bigInt.negate(), scale);
106 return add(b.negate());
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
H A Dradeon_inline_literals.c28 unsigned negate = !!(float_bits & 0x80000000); local
55 if (negate)
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/
H A Di915_program.h100 negate(int reg, int x, int y, int z, int w) function
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_inline_literals.c28 unsigned negate = !!(float_bits & 0x80000000); local
55 if (negate)
/external/mesa3d/src/mesa/drivers/dri/i915/
H A Di915_program.h100 negate(int reg, int x, int y, int z, int w) function

Completed in 799 milliseconds

12345