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

12345678910

/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/libcxx/test/utilities/function.objects/arithmetic.operations/
H A Dnegate.pass.cpp12 // negate
20 typedef std::negate<int> F;
25 typedef std::negate<> F2;
31 constexpr int foo = std::negate<int> () (3);
34 constexpr int bar = std::negate<> () (3.0);
H A Dtransparent.pass.cpp53 static_assert ( !is_transparent<std::negate<int>>::value, "" );
54 static_assert ( !is_transparent<std::negate<std::string>>::value, "" );
55 static_assert ( is_transparent<std::negate<void>>::value, "" );
56 static_assert ( is_transparent<std::negate<>>::value, "" );
/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 ((self.commands, self.negate, self.pipe_err) ==
53 (other.commands, other.negate, self.pipe_err))
58 if self.negate:
/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/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
H A DAbstractECMultiplier.java16 return sign > 0 ? positive : positive.negate();
H A DECAlgorithms.java109 points[3].negate(), points[2].negate(), points[1].negate(),
110 points[0].negate(), infinity, points[0],
/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
/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/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_vec4_copy_propagation.cpp86 if (inst->src[arg].negate) {
178 value.negate != values[i]->negate ||
201 value.negate = false;
204 if (inst->src[arg].negate)
205 value.negate = !value.negate;
219 value.negate &&
H A Dbrw_fs_copy_propagation.cpp46 entry->src.negate)
49 bool has_source_modifiers = entry->src.abs || entry->src.negate;
61 inst->src[arg].negate ^= entry->src.negate;
/external/libcxx/test/numerics/numarray/template.valarray/valarray.unary/
H A DAndroid.mk27 test_name := numerics/numarray/template.valarray/valarray.unary/negate
28 test_src := negate.pass.cpp
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_vec4_copy_propagation.cpp86 if (inst->src[arg].negate) {
178 value.negate != values[i]->negate ||
201 value.negate = false;
204 if (inst->src[arg].negate)
205 value.negate = !value.negate;
219 value.negate &&
H A Dbrw_fs_copy_propagation.cpp46 entry->src.negate)
49 bool has_source_modifiers = entry->src.abs || entry->src.negate;
61 inst->src[arg].negate ^= entry->src.negate;
/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/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/r200/
H A Dr200_vertprog.h126 #define MAKE_VSF_SOURCE(in_reg_index, comp_x, comp_y, comp_z, comp_w, class, negate) \
132 | ((negate)<<25) | ((class)))
134 #define EASY_VSF_SOURCE(in_reg_index, comp_x, comp_y, comp_z, comp_w, class, negate) \
140 VSF_IN_CLASS_##class, VSF_FLAG_##negate)
/external/mesa3d/src/mesa/drivers/dri/r200/
H A Dr200_vertprog.h126 #define MAKE_VSF_SOURCE(in_reg_index, comp_x, comp_y, comp_z, comp_w, class, negate) \
132 | ((negate)<<25) | ((class)))
134 #define EASY_VSF_SOURCE(in_reg_index, comp_x, comp_y, comp_z, comp_w, class, negate) \
140 VSF_IN_CLASS_##class, VSF_FLAG_##negate)

Completed in 564 milliseconds

12345678910