HomeSort by relevance Sort by last modified time
    Searched refs:isNegative (Results 26 - 50 of 152) sorted by null

12 3 4 5 6 7

  /external/clang/lib/StaticAnalyzer/Core/
BasicValueFactory.cpp 175 if (V2.isSigned() && V2.isNegative())
193 if (V2.isSigned() && V2.isNegative())
  /external/chromium_org/third_party/WebKit/Source/platform/
Decimal.cpp 529 return !result.isZero() && result.isNegative();
539 return result.isZero() || result.isNegative();
557 return result.isZero() || !result.isNegative();
646 return result.isNegative() ? Decimal(-1) : Decimal(1);
677 if (isNegative() && !isMultiplePowersOfTen(m_data.coefficient(), numberOfDropDigits))
898 return quotient.isSpecial() ? quotient : *this - (quotient.isNegative() ? quotient.ceiling() : quotient.floor()) * rhs;
931 return isNegative() ? -std::numeric_limits<double>::infinity() : std::numeric_limits<double>::infinity();
Length.h 266 bool isNegative() const
  /external/llvm/include/llvm/ADT/
APInt.h 320 bool isNegative() const { return (*this)[BitWidth - 1]; }
325 bool isNonNegative() const { return !isNegative(); }
356 : !isNegative() && countPopulation() == BitWidth - 1;
370 return BitWidth == 1 ? VAL == 1 : isNegative() && isPowerOf2();
    [all...]
APSInt.h 275 if (I1.isNegative())
281 if (I2.isNegative())
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCompares.cpp 43 if (In2->isNegative())
77 if (In2->isNegative())
184 if (UnknownBits.isNegative()) { // Sign bit is unknown
    [all...]
  /external/chromium_org/third_party/jsoncpp/overrides/src/lib_json/
json_reader.cpp 589 bool isNegative = *current == '-';
590 if ( isNegative )
592 Value::LargestUInt maxIntegerValue = isNegative ? Value::LargestUInt(-Value::minLargestInt)
617 if ( isNegative )
  /external/clang/include/clang/AST/
CharUnits.h 124 /// isNegative - Test whether the quantity is less than zero.
125 bool isNegative() const { return Quantity < 0; }
RecordLayout.h 279 return !CXXInfo->VBPtrOffset.isNegative();
  /external/jsoncpp/src/lib_json/
json_reader.cpp 587 bool isNegative = *current == '-';
588 if ( isNegative )
590 Value::LargestUInt maxIntegerValue = isNegative ? Value::LargestUInt(-Value::minLargestInt)
615 if ( isNegative )
json_writer.cpp 38 bool isNegative = value < 0;
39 if ( isNegative )
42 if ( isNegative )
  /external/compiler-rt/lib/ubsan/
ubsan_handlers.cc 165 if (RHSVal.isNegative())
171 else if (LHSVal.isNegative())
  /external/owasp/sanitizer/tools/findbugs/lib/
annotations.jar 
  /prebuilts/tools/common/m2/repository/com/google/code/findbugs/annotations/2.0.1/
annotations-2.0.1.jar 
  /external/chromium_org/third_party/icu/source/i18n/unicode/
decimfmt.h     [all...]
smpdtfmt.h     [all...]
  /external/icu/icu4c/source/i18n/unicode/
decimfmt.h     [all...]
smpdtfmt.h     [all...]
  /external/icu/icu4c/source/i18n/
decimfmt.cpp     [all...]
compactdecimalformat.cpp 249 UBool isNegative;
251 _round(orig, rounded, isNegative, status);
256 if (isNegative) {
262 if (isNegative) {
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
NumberInputType.cpp 79 const unsigned sizeOfSign = value.isNegative() ? 1 : 0;
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLParserIdioms.cpp 84 return number.isNegative() ? "-0" : "0";
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderMarquee.cpp 105 if (increment.isNegative())
  /external/chromium_org/third_party/icu/source/i18n/
compactdecimalformat.cpp 249 UBool isNegative;
251 _round(orig, rounded, isNegative, status);
256 if (isNegative) {
262 if (isNegative) {
  /external/llvm/include/llvm/IR/
Constants.h 155 bool isNegative() const { return Val.isNegative(); }
268 /// isNegative - Return true if the sign bit is set.
269 bool isNegative() const { return Val.isNegative(); }
    [all...]

Completed in 422 milliseconds

12 3 4 5 6 7