Searched refs:Negative (Results 1 - 25 of 44) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/core/platform/
H A DDecimalTest.cpp46 << ", " << (data.sign() == Decimal::Negative ? "Negative" : "Positive")
80 protected: static const Sign Negative = Decimal::Negative; member in class:DecimalTest
115 // FIXME: We should use expectedSign without "Decimal::", however, g++ causes undefined references for DecimalTest::Positive and Negative.
126 EXPECT_EQ(encode(0, 0, Positive), encode(0, 0, Negative).abs());
129 EXPECT_EQ(encode(0, 10, Positive), encode(0, 10, Negative).abs());
132 EXPECT_EQ(encode(0, -10, Positive), encode(0, -10, Negative).abs());
135 EXPECT_EQ(encode(1, 0, Positive), encode(1, 0, Negative).abs());
138 EXPECT_EQ(encode(1, 10, Positive), encode(1, 10, Negative)
[all...]
H A DDecimal.h54 Negative, enumerator in enum:WebCore::Decimal::Sign
129 bool isNegative() const { return sign() == Negative; }
172 static inline Sign invertSign(Sign sign) { return sign == Negative ? Positive : Negative; }
H A DDecimal.cpp281 : m_data(i32 < 0 ? Negative : Positive, 0, i32 < 0 ? static_cast<uint64_t>(-static_cast<int64_t>(i32)) : static_cast<uint64_t>(i32))
370 if (lhsSign == Negative && rhsSign == Positive && !result)
408 if (lhsSign == Negative && rhsSign == Negative && !result)
421 const Sign resultSign = lhsSign == rhsSign ? Positive : Negative;
459 const Sign resultSign = lhsSign == rhsSign ? Positive : Negative;
687 return infinity(doubleValue < 0 ? Negative : Positive);
778 exponentSign = Negative;
797 return exponentSign == Negative ? zero(Positive) : infinity(sign);
835 sign = Negative;
[all...]
/external/llvm/include/llvm/ADT/
H A DAPFloat.h209 /// Factory for Positive and Negative Zero.
211 /// \param Negative True iff the number should be negative.
212 static APFloat getZero(const fltSemantics &Sem, bool Negative = false) {
214 Val.makeZero(Negative);
218 /// Factory for Positive and Negative Infinity.
220 /// \param Negative True iff the number should be negative.
221 static APFloat getInf(const fltSemantics &Sem, bool Negative = false) {
223 Val.makeInf(Negative);
229 /// \param Negative - True iff the NaN generated should be negative.
232 static APFloat getNaN(const fltSemantics &Sem, bool Negative
[all...]
/external/chromium/testing/gtest/samples/
H A Dsample1_unittest.cc79 TEST(FactorialTest, Negative) {
80 // This test is named "Negative", and belongs to the "FactorialTest"
119 TEST(IsPrimeTest, Negative) {
/external/chromium_org/testing/gtest/samples/
H A Dsample1_unittest.cc79 TEST(FactorialTest, Negative) {
80 // This test is named "Negative", and belongs to the "FactorialTest"
119 TEST(IsPrimeTest, Negative) {
/external/gtest/samples/
H A Dsample1_unittest.cc79 TEST(FactorialTest, Negative) {
80 // This test is named "Negative", and belongs to the "FactorialTest"
119 TEST(IsPrimeTest, Negative) {
/external/libvpx/libvpx/third_party/googletest/src/samples/
H A Dsample1_unittest.cc79 TEST(FactorialTest, Negative) {
80 // This test is named "Negative", and belongs to the "FactorialTest"
119 TEST(IsPrimeTest, Negative) {
/external/protobuf/gtest/samples/
H A Dsample1_unittest.cc79 TEST(FactorialTest, Negative) {
80 // This test is named "Negative", and belongs to the "FactorialTest"
119 TEST(IsPrimeTest, Negative) {
/external/jmonkeyengine/engine/src/core/com/jme3/math/
H A DPlane.java58 Negative enum constant in enum:Plane.Side
193 return Side.Negative;
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXPathPredicate.h57 class Negative : public Expression { class in namespace:WebCore::XPath
H A DXPathPredicate.cpp60 Value Negative::evaluate() const
H A DXPathGrammar.y547 $$ = new Negative;
/external/chromium_org/third_party/skia/src/sfnt/
H A DSkOTTable_OS_2_V0.h116 Negative,
H A DSkOTTable_OS_2_VA.h116 Negative,
H A DSkOTTable_OS_2_V1.h359 Negative,
/external/skia/src/sfnt/
H A DSkOTTable_OS_2_V0.h116 Negative,
H A DSkOTTable_OS_2_VA.h116 Negative,
/external/llvm/lib/Support/
H A DAPFloat.cpp618 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);
2064 // Negative zero can't be represented as an int.
2119 /* Negative numbers cannot be represented as unsigned. */
3342 void APFloat::makeLargest(bool Negative) {
3344 // sign = {Negative}
3348 sign = Negative;
3365 void APFloat::makeSmallest(bool Negative) {
[all...]
/external/chromium/base/
H A Dstring_number_conversions.cc187 if (!Negative::Invoke(begin + 1, end, output)) {
262 class Negative : public Base<Negative> { class in class:base::__anon1760::IteratorRangeToNumber
/external/chromium_org/base/strings/
H A Dstring_number_conversions.cc192 } else if (!Negative::Invoke(begin + 1, end, output)) {
267 class Negative : public Base<Negative> { class in class:base::__anon3888::IteratorRangeToNumber
/external/llvm/lib/Target/AArch64/InstPrinter/
H A DAArch64InstPrinter.cpp181 uint32_t Negative = (Imm8 >> 7) & 0x1; local
194 Val = Negative ? -Val : Val;
/external/clang/test/SemaCXX/
H A Dcompare.cpp344 Negative = -1, enumerator in enum:E
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DRangeInputType.cpp392 const Decimal closestLeft = middle ? m_tickMarkValues[middle - 1] : Decimal::infinity(Decimal::Negative);
/external/jmonkeyengine/engine/src/core/com/jme3/bounding/
H A DIntersection.java273 if (bbox.whichSide(p) == Plane.Side.Negative) {

Completed in 301 milliseconds

12