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

12

/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 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
H A DUnknownIntegerValue.java32 public IntegerValue negate() method in class:UnknownIntegerValue
H A DSpecificDoubleValue.java32 public DoubleValue negate() method in class:SpecificDoubleValue
H A DSpecificFloatValue.java32 public FloatValue negate() method in class:SpecificFloatValue
H A DParticularLongValue.java52 public LongValue negate() method in class:ParticularLongValue
H A DSpecificLongValue.java32 public LongValue negate() method in class:SpecificLongValue
/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/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.c722 int negate; member in struct:fs_type_compile
737 int negate, first_negate = 1; local
755 cmp->negate = 0;
764 negate = 0;
767 negate = 1;
770 negate = 1;
778 cmp->type[num] = negate ? FS_TYPE_NEGOPT : FS_TYPE_OPT;
781 cmp->negate = negate;
784 if ((negate
[all...]
/external/skia/include/core/
H A DSkPoint.h61 void negate() { fX = -fX; fY = -fY; } function in struct:SkIPoint
217 void negate() { function in struct:SkPoint

Completed in 1905 milliseconds

12