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

1 2 3 4 5

  /external/jsr305/ri/src/main/java/javax/annotation/
Nonnegative.java 23 boolean isNegative;
26 isNegative = value.longValue() < 0;
28 isNegative = value.doubleValue() < 0;
30 isNegative = value.floatValue() < 0;
32 isNegative = value.intValue() < 0;
34 if (isNegative)
  /external/clang/lib/StaticAnalyzer/Core/
APSIntType.cpp 21 Value.isSigned() && Value.isNegative())
45 if (Value.isSigned() && Value.isNegative())
BasicValueFactory.cpp 175 if (V2.isSigned() && V2.isNegative())
193 if (V2.isSigned() && V2.isNegative())
  /libcore/luni/src/main/java/java/security/acl/
AclEntry.java 66 boolean isNegative();
  /external/jmonkeyengine/engine/src/core/com/jme3/input/controls/
JoyAxisTrigger.java 65 public boolean isNegative() {
MouseAxisTrigger.java 68 public boolean isNegative() {
  /external/chromium_org/third_party/WebKit/Source/core/platform/text/
PlatformLocale.cpp 204 bool isNegative = false;
210 isNegative = true;
237 builder.append(isNegative ? m_negativeSuffix : m_positiveSuffix);
255 bool Locale::detectSignAndGetDigitRange(const String& input, bool& isNegative, unsigned& startIndex, unsigned& endIndex)
261 isNegative = false;
265 isNegative = true;
268 isNegative = true;
272 isNegative = false;
301 bool isNegative;
304 if (!detectSignAndGetDigitRange(input, isNegative, startIndex, endIndex)
    [all...]
PlatformLocale.h 149 bool detectSignAndGetDigitRange(const String& input, bool& isNegative, unsigned& startIndex, unsigned& endIndex);
LocaleICU.h 76 bool detectSignAndGetDigitRange(const String& input, bool& isNegative, unsigned& startIndex, unsigned& endIndex);
  /prebuilts/tools/common/m2/internal/com/google/code/findbugs/jsr305/2.0.1/
jsr305-2.0.1.jar 
  /external/compiler-rt/lib/ubsan/
ubsan_value.h 194 bool isNegative() const {
ubsan_handlers.cc 165 if (RHSVal.isNegative())
171 else if (LHSVal.isNegative())
  /external/llvm/include/llvm/ADT/
APFloat.h 361 bool isNegative() const { return sign; }
400 bool isPosZero() const { return isZero() && !isNegative(); }
401 bool isNegZero() const { return isZero() && isNegative(); }
APInt.h 322 bool isNegative() const { return (*this)[BitWidth - 1]; }
327 bool isNonNegative() const { return !isNegative(); }
358 : !isNegative() && countPopulation() == BitWidth - 1;
372 return BitWidth == 1 ? VAL == 1 : isNegative() && isPowerOf2();
    [all...]
APSInt.h 281 if (I1.isNegative())
287 if (I2.isNegative())
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
ResponseData.java 268 boolean isNegative = (offSetVal < 0);
277 tzOffset = (isNegative ? -1 : 1) * tzOffset;
280 return isNegative ? (bcdVal |= 0x08) : bcdVal;
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/header/
header_read_write_utils.cpp 202 bool isNegative = false;
205 isNegative = true;
215 return isNegative ? -value : value;
  /external/llvm/lib/Support/
APInt.cpp 557 bool lhsNeg = isNegative();
558 bool rhsNeg = rhs.isNegative();
620 unsigned isNegative = *p == '-';
630 return slen + isNegative;
632 return slen * 3 + isNegative;
634 return slen * 4 + isNegative;
657 return isNegative + 1;
659 return isNegative + log + 1;
1059 if (isNegative())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSCalculationValue.h 108 bool isNegative() const { return m_expression->doubleValue() < 0; }
  /external/chromium_org/third_party/WebKit/Source/core/platform/
Decimal.h 129 bool isNegative() const { return sign() == Negative; }
Decimal.cpp 531 return !result.isZero() && result.isNegative();
541 return result.isZero() || result.isNegative();
559 return result.isZero() || !result.isNegative();
644 return result.isNegative() ? Decimal(-1) : Decimal(1);
675 if (isNegative() && result % 10 > 0)
906 return quotient.isSpecial() ? quotient : *this - (quotient.isNegative() ? quotient.ceiling() : quotient.floor()) * rhs;
939 return isNegative() ? -std::numeric_limits<double>::infinity() : std::numeric_limits<double>::infinity();
  /external/llvm/lib/Analysis/
ValueTracking.cpp 55 if (!CLHS->getValue().isNegative()) {
111 if (!KnownZero.isNegative() && !KnownOne.isNegative()) {
115 if (LHSKnownZero.isNegative() && KnownZero2.isNegative())
118 else if (LHSKnownOne.isNegative() && KnownOne2.isNegative())
122 if (LHSKnownZero.isNegative() && KnownOne2.isNegative())
125 else if (LHSKnownOne.isNegative() && KnownZero2.isNegative()
    [all...]
  /external/llvm/unittests/ADT/
APFloatTest.cpp 76 EXPECT_TRUE(!test.isNegative());
83 EXPECT_TRUE(!test.isNegative());
90 EXPECT_TRUE(test.isNegative());
97 EXPECT_TRUE(test.isInfinity() && test.isNegative());
104 EXPECT_TRUE(test.isInfinity() && !test.isNegative());
114 EXPECT_TRUE(!test.isInfinity() && !test.isNegative());
128 EXPECT_TRUE(test.isInfinity() && test.isNegative());
142 EXPECT_TRUE(test.isZero() && !test.isNegative());
149 EXPECT_TRUE(test.isZero() && test.isNegative());
298 EXPECT_TRUE(test.isNegative());
    [all...]
  /external/clang/include/clang/AST/
CharUnits.h 124 /// isNegative - Test whether the quantity is less than zero.
125 bool isNegative() const { return Quantity < 0; }
  /prebuilts/tools/common/m2/internal/com/google/code/findbugs/annotations/2.0.1/
annotations-2.0.1.jar 

Completed in 702 milliseconds

1 2 3 4 5