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

  /external/chromium_org/third_party/WebKit/Source/core/platform/
DecimalTest.cpp 46 << ", " << (data.sign() == Decimal::Negative ? "Negative" : "Positive")
79 protected: static const Sign Positive = Decimal::Positive;
115 // FIXME: We should use expectedSign without "Decimal::", however, g++ causes undefined references for DecimalTest::Positive and Negative.
125 EXPECT_EQ(encode(0, 0, Positive), encode(0, 0, Positive).abs());
126 EXPECT_EQ(encode(0, 0, Positive), encode(0, 0, Negative).abs());
128 EXPECT_EQ(encode(0, 10, Positive), encode(0, 10, Positive).abs());
129 EXPECT_EQ(encode(0, 10, Positive), encode(0, 10, Negative).abs())
    [all...]
Decimal.h 53 Positive,
130 bool isPositive() const { return sign() == Positive; }
172 static inline Sign invertSign(Sign sign) { return sign == Negative ? Positive : Negative; }
Decimal.cpp 281 : 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)
371 return Decimal(Positive, alignedOperands.exponent, 0);
409 return Decimal(Positive, alignedOperands.exponent, 0);
421 const Sign resultSign = lhsSign == rhsSign ? Positive : Negative;
459 const Sign resultSign = lhsSign == rhsSign ? Positive : Negative;
565 result.m_data.setSign(Positive);
616 // Round toward positive infinity.
630 return isPositive() ? Decimal(1) : zero(Positive);
633 if (sign() == Positive && result % 10 > 0
    [all...]
  /external/chromium/testing/gtest/samples/
sample1_unittest.cc 107 // Tests factorial of positive numbers.
108 TEST(FactorialTest, Positive) {
135 // Tests positive input.
136 TEST(IsPrimeTest, Positive) {
  /external/chromium_org/testing/gtest/samples/
sample1_unittest.cc 107 // Tests factorial of positive numbers.
108 TEST(FactorialTest, Positive) {
135 // Tests positive input.
136 TEST(IsPrimeTest, Positive) {
  /external/gtest/samples/
sample1_unittest.cc 107 // Tests factorial of positive numbers.
108 TEST(FactorialTest, Positive) {
135 // Tests positive input.
136 TEST(IsPrimeTest, Positive) {
  /external/protobuf/gtest/samples/
sample1_unittest.cc 107 // Tests factorial of positive numbers.
108 TEST(FactorialTest, Positive) {
135 // Tests positive input.
136 TEST(IsPrimeTest, Positive) {
  /ndk/sources/third_party/googletest/googletest/samples/
sample1_unittest.cc 107 // Tests factorial of positive numbers.
108 TEST(FactorialTest, Positive) {
135 // Tests positive input.
136 TEST(IsPrimeTest, Positive) {
  /external/chromium_org/third_party/WebKit/Source/core/html/
StepRange.cpp 71 DEFINE_STATIC_LOCAL(const Decimal, twoPowerOfFloatMantissaBits, (Decimal::Positive, 0, UINT64_C(1) << FLT_MANT_DIG));
77 DEFINE_STATIC_LOCAL(const Decimal, tenPowerOf21, (Decimal::Positive, 21, 1));
156 DEFINE_STATIC_LOCAL(const Decimal, twoPowerOfDoubleMantissaBits, (Decimal::Positive, 0, UINT64_C(1) << DBL_MANT_DIG));
RangeInputType.cpp 393 const Decimal closestRight = middle != m_tickMarkValues.size() ? m_tickMarkValues[middle] : Decimal::infinity(Decimal::Positive);
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
Plane.java 57 Positive,
170 * distance returned is negative, otherwise it is positive. If the point is
183 * plane. The positive values returned are: NEGATIVE_SIDE, POSITIVE_SIDE and
195 return Side.Positive;
  /external/jmonkeyengine/engine/src/core-effects/com/jme3/water/
ReflectionProcessor.java 65 reflectionCam.setClipPlane(reflectionClipPlane, Plane.Side.Positive);//,1
  /external/clang/test/SemaCXX/
compare.cpp 230 // A is max short plus 1. All zero and positive shorts are smaller than it.
345 Positive = 1
354 Positive = 1
  /external/chromium/base/
string_number_conversions.cc 194 if (!Positive::Invoke(begin, end, output)) {
246 class Positive : public Base<Positive> {
  /external/chromium_org/base/strings/
string_number_conversions.cc 199 if (!Positive::Invoke(begin, end, output)) {
251 class Positive : public Base<Positive> {
  /external/chromium_org/v8/test/mjsunit/
mod.js 33 // Positive case.
regexp-capture-3.js 178 NoHang(/(?=(((.*)*)*x)?)foo/); // Positive lookahead is filtered.
179 NoHang(/(?=(((.*)*)*x))?/); // Continuation branch of positive lookahead.
180 NoHang(/(?=?)(((.*)*)*x)/); // Positive lookahead also prunes continuation.
  /external/v8/test/mjsunit/
mod.js 33 // Positive case.
  /external/jmonkeyengine/engine/src/core/com/jme3/bounding/
BoundingSphere.java 449 return Plane.Side.Positive;
BoundingBox.java 287 // Make the rotation matrix all positive to get the maximum x/y/z extent
319 // Make the rotation matrix all positive to get the maximum x/y/z extent
353 return Plane.Side.Positive;
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/renderer/
Camera.java     [all...]
  /external/chromium_org/remoting/webapp/
client_session.js 194 // Note that the positive values in both of these enums are copied directly
    [all...]
  /external/chromium_org/third_party/usb_ids/
usb.ids     [all...]
  /external/libmtp/
configure     [all...]
  /ndk/sources/host-tools/sed-4.2.1/
configure     [all...]

Completed in 1753 milliseconds