/external/iptables/include/linux/netfilter_ipv4/ |
ipt_iprange.h | 6 #define IPRANGE_SRC_INV 0x10 /* Negate the condition */ 7 #define IPRANGE_DST_INV 0x20 /* Negate the condition */
|
/external/kernel-headers/original/linux/netfilter_ipv4/ |
ipt_iprange.h | 6 #define IPRANGE_SRC_INV 0x10 /* Negate the condition */ 7 #define IPRANGE_DST_INV 0x20 /* Negate the condition */
|
/external/proguard/src/proguard/util/ |
ListMatcher.java | 34 private final boolean[] negate; field in class:ListMatcher 43 public ListMatcher(StringMatcher[] matchers, boolean[] negate) 46 this.negate = negate; 60 return negate == null || 61 !negate[index]; 65 return negate != null && 66 negate[negate.length - 1];
|
/external/stlport/test/unit/ |
unary_test.cpp | 79 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>()));
|
neq_test.cpp | 36 transform((int*)input, (int*)input + 3, (int*)output, negate<int>());
|
/dalvik/libcore/math/src/test/java/tests/api/java/math/ |
BigIntegerTest.java | 205 .setBit(16).subtract(two).negate())); 495 assertTrue("bi3=copy of bi3", bi3.equals(bi3.negate().negate())); 513 two.negate().compareTo(one) < 0); 573 .add(aZillion.negate()).equals(aZillion)); 610 * @tests java.math.BigInteger#negate() 615 method = "negate", 620 .negate().equals(zero)); 622 !aZillion.negate().equals(aZillion)); 624 aZillion.negate().negate().equals(aZillion)) 636 BigInteger negate = midbit.negate(); local [all...] |
/frameworks/base/graphics/java/android/graphics/ |
Point.java | 48 * Negate the point's coordinates 50 public final void negate() { method in class:Point
|
/external/skia/src/core/ |
SkStrokerPriv.cpp | 118 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();
|
Sk64.cpp | 130 void Sk64::negate() function in class:Sk64 205 this->negate(); 238 this->negate(); 283 this->negate();
|
/frameworks/base/opengl/libagl/ |
fixed_asm.S | 42 rsbcs r0, r0, #0 /* negate if needed */ 61 rsbne r0, r0, #0 /* negate if needed */
|
/dalvik/libcore/math/src/test/java/org/apache/harmony/math/tests/java/math/ |
BigDecimalCompareTest.java | 38 * max, min, negate, signum 602 * negate() for a positive BigDecimal 606 notes = "This is a complete subset of tests for negate method.", 607 method = "negate", 617 assertEquals("incorrect value", cNumber, aNumber.negate()); 621 * negate(MathContext) for a positive BigDecimal 626 method = "negate", 633 BigDecimal res = aNumber.negate(mc); 645 // BigDecimal res = aNumber.negate(mc); 651 * negate() for a negative BigDecima [all...] |
BigIntegerCompareTest.java | 35 * Methods: abs, compareTo, equals, max, min, negate, signum 627 * negate() a positive number. 631 notes = "This is a complete subset of tests for negate method.", 632 method = "negate", 640 BigInteger result = aNumber.negate(); 650 * negate() a negative number. 654 notes = "This is a complete subset of tests for negate method.", 655 method = "negate", 663 BigInteger result = aNumber.negate(); 673 * negate() ZERO [all...] |
/external/proguard/src/proguard/evaluation/value/ |
NegatedDoubleValue.java | 44 public DoubleValue negate() method in class:NegatedDoubleValue
|
NegatedFloatValue.java | 44 public FloatValue negate() method in class:NegatedFloatValue
|
NegatedIntegerValue.java | 44 public IntegerValue negate() method in class:NegatedIntegerValue
|
NegatedLongValue.java | 44 public LongValue negate() method in class:NegatedLongValue
|
ParticularDoubleValue.java | 52 public DoubleValue negate() method in class:ParticularDoubleValue 87 return value == 0.0 ? other.negate() : other.subtractFrom(this);
|
ParticularFloatValue.java | 52 public FloatValue negate() method in class:ParticularFloatValue 87 return value == 0.0 ? other.negate() : other.subtractFrom(this);
|
DoubleValue.java | 46 public abstract DoubleValue negate(); method in class:DoubleValue 128 return compare(other).negate(); 231 return compare(other).negate(); 334 return compare(other).negate();
|
FloatValue.java | 46 public abstract FloatValue negate(); method in class:FloatValue 128 return compare(other).negate(); 231 return compare(other).negate(); 334 return compare(other).negate();
|
UnknownDoubleValue.java | 32 public DoubleValue negate() method in class:UnknownDoubleValue
|
UnknownFloatValue.java | 32 public FloatValue negate() method in class:UnknownFloatValue
|
/external/opencore/oscl/oscl/osclio/src/ |
oscl_file_find.cpp | 413 #define NEGATE '^' /* std cset negation char */ 414 int negate; local 455 if (*p != NEGATE) 456 negate = false; 459 negate = true; 500 if (negate == match)
|
/cts/tests/tests/graphics/src/android/graphics/cts/ |
PointFTest.java | 74 method = "negate", 79 mPointF.negate();
|
PointTest.java | 139 method = "negate", 144 mPoint.negate();
|