HomeSort by relevance Sort by last modified time
    Searched refs:Negative (Results 1 - 25 of 48) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/platform/
DecimalTest.cpp 47 << ", " << (data.sign() == Decimal::Negative ? "Negative" : "Positive")
81 protected: static const Sign Negative = Decimal::Negative;
116 // FIXME: We should use expectedSign without "Decimal::", however, g++ causes undefined references for DecimalTest::Positive and Negative.
127 EXPECT_EQ(encode(0, 0, Positive), encode(0, 0, Negative).abs());
130 EXPECT_EQ(encode(0, 10, Positive), encode(0, 10, Negative).abs());
133 EXPECT_EQ(encode(0, -10, Positive), encode(0, -10, Negative).abs());
136 EXPECT_EQ(encode(1, 0, Positive), encode(1, 0, Negative).abs());
139 EXPECT_EQ(encode(1, 10, Positive), encode(1, 10, Negative).abs())
    [all...]
Decimal.h 55 Negative,
130 bool isNegative() const { return sign() == Negative; }
173 static inline Sign invertSign(Sign sign) { return sign == Negative ? Positive : Negative; }
Decimal.cpp 279 : m_data(i32 < 0 ? Negative : Positive, 0, i32 < 0 ? static_cast<uint64_t>(-static_cast<int64_t>(i32)) : static_cast<uint64_t>(i32))
368 if (lhsSign == Negative && rhsSign == Positive && !result)
406 if (lhsSign == Negative && rhsSign == Negative && !result)
419 const Sign resultSign = lhsSign == rhsSign ? Positive : Negative;
457 const Sign resultSign = lhsSign == rhsSign ? Positive : Negative;
661 // Round toward negative infinity.
688 return infinity(doubleValue < 0 ? Negative : Positive);
770 exponentSign = Negative;
789 return exponentSign == Negative ? zero(Positive) : infinity(sign)
    [all...]
  /external/llvm/include/llvm/ADT/
APFloat.h 210 /// Factory for Positive and Negative Zero.
212 /// \param Negative True iff the number should be negative.
213 static APFloat getZero(const fltSemantics &Sem, bool Negative = false) {
215 Val.makeZero(Negative);
219 /// Factory for Positive and Negative Infinity.
221 /// \param Negative True iff the number should be negative.
222 static APFloat getInf(const fltSemantics &Sem, bool Negative = false) {
224 Val.makeInf(Negative);
    [all...]
  /external/chromium_org/testing/gtest/samples/
sample1_unittest.cc 78 // Tests factorial of negative numbers.
79 TEST(FactorialTest, Negative) {
80 // This test is named "Negative", and belongs to the "FactorialTest"
118 // Tests negative input.
119 TEST(IsPrimeTest, Negative) {
  /external/protobuf/gtest/samples/
sample1_unittest.cc 78 // Tests factorial of negative numbers.
79 TEST(FactorialTest, Negative) {
80 // This test is named "Negative", and belongs to the "FactorialTest"
118 // Tests negative input.
119 TEST(IsPrimeTest, Negative) {
  /ndk/sources/third_party/googletest/googletest/samples/
sample1_unittest.cc 78 // Tests factorial of negative numbers.
79 TEST(FactorialTest, Negative) {
80 // This test is named "Negative", and belongs to the "FactorialTest"
118 // Tests negative input.
119 TEST(IsPrimeTest, Negative) {
  /external/chromium_org/media/cast/test/utility/
audio_utility_unittest.cc 25 TEST(AudioTimestampTest, Negative) {
  /external/chromium_org/v8/test/mjsunit/
array-indexing.js 52 // Negative cases.
58 // Negative index out of range.
60 // Negative index in rage.
120 // Negative cases.
131 // Negative index in range.
mod.js 39 // Negative case.
42 // Check for negative zero.
46 // Check for negative zero.
array-concat.js 96 // Negative indices don't get concated.
168 // Negative indices don't get concated.
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XPathPredicate.h 61 class Negative FINAL : public Expression {
XPathPredicate.cpp 72 Value Negative::evaluate(EvaluationContext& context) const
XPathGrammar.y 547 $$ = new Negative;
  /external/chromium_org/third_party/skia/src/sfnt/
SkOTTable_OS_2_V0.h 116 Negative,
SkOTTable_OS_2_VA.h 116 Negative,
SkOTTable_OS_2_V1.h 359 Negative,
SkOTTable_OS_2_V2.h 374 Negative,
  /external/skia/src/sfnt/
SkOTTable_OS_2_V0.h 116 Negative,
SkOTTable_OS_2_VA.h 116 Negative,
  /prebuilts/misc/common/swig/include/2.0.11/
constraints.i 21 Number NEGATIVE - Negative number (not zero)
24 Number NONPOSITIVE - Negative number (including zero)
98 // Negative numbers
101 int NEGATIVE,
102 short NEGATIVE,
103 long NEGATIVE,
104 unsigned int NEGATIVE,
105 unsigned short NEGATIVE,
106 unsigned long NEGATIVE,
    [all...]
  /external/chromium_org/base/strings/
string_number_conversions.cc 50 // for testing whether an integer is negative.
56 // value is unsigned, and can never be negative.
187 } else if (!Negative::Invoke(begin + 1, end, output)) {
262 class Negative : public Base<Negative> {
  /external/llvm/lib/Support/
APFloat.cpp 165 bool negative, overflow;
170 negative = *p == '-';
196 if (negative)
204 exponent = negative ? -32768: 32767;
618 void APFloat::makeNaN(bool SNaN, bool Negative, const APInt *fill)
621 sign = Negative;
665 APFloat APFloat::makeNaN(const fltSemantics &Sem, bool SNaN, bool Negative,
668 value.makeNaN(SNaN, Negative, fill);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
RangeInputType.cpp 384 const Decimal closestLeft = middle ? m_tickMarkValues[middle - 1] : Decimal::infinity(Decimal::Negative);
  /external/clang/test/SemaCXX/
compare.cpp 231 // All negative shorts are cast towards the max unsigned range. Relation
242 // When negative one is converted to an unsigned value, it becomes the max
243 // unsigned. Likewise, a negative one short can also be converted to max
344 Negative = -1,

Completed in 1109 milliseconds

1 2