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

1 2

  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSCalculationValue.h 121 bool isNegative() const { return m_expression->doubleValue() < 0; }
  /external/chromium_org/third_party/WebKit/Source/platform/
Decimal.h 130 bool isNegative() const { return sign() == Negative; }
Length.h 266 bool isNegative() const
  /external/clang/include/clang/AST/
CharUnits.h 124 /// isNegative - Test whether the quantity is less than zero.
125 bool isNegative() const { return Quantity < 0; }
  /external/llvm/lib/Support/
APFloat.cpp 119 bool isNegative;
126 isNegative = (*p == '-');
152 if (isNegative)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/text/
PlatformLocale.cpp 258 bool isNegative = false;
264 isNegative = true;
292 builder.append(isNegative ? m_negativeSuffix : m_positiveSuffix);
310 bool Locale::detectSignAndGetDigitRange(const String& input, bool& isNegative, unsigned& startIndex, unsigned& endIndex)
316 isNegative = false;
320 isNegative = true;
324 isNegative = true;
328 isNegative = false;
358 bool isNegative;
361 if (!detectSignAndGetDigitRange(input, isNegative, startIndex, endIndex)
    [all...]
  /external/compiler-rt/lib/ubsan/
ubsan_value.h 194 bool isNegative() const {
  /external/jsoncpp/src/lib_json/
json_writer.cpp 38 bool isNegative = value < 0;
39 if ( isNegative )
42 if ( isNegative )
json_reader.cpp 587 bool isNegative = *current == '-';
588 if ( isNegative )
590 Value::LargestUInt maxIntegerValue = isNegative ? Value::LargestUInt(-Value::minLargestInt)
615 if ( isNegative )
  /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...]
APFloat.h 362 bool isNegative() const { return sign; }
401 bool isPosZero() const { return isZero() && !isNegative(); }
402 bool isNegZero() const { return isZero() && isNegative(); }
  /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/eigen/Eigen/src/Cholesky/
LDLT.h 163 inline bool isNegative(void) const
  /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...]
  /external/owasp/sanitizer/distrib/lib/
jsr305.jar 
  /external/owasp/sanitizer/lib/jsr305/
jsr305.jar 
  /external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/
VTTCue.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
WTFString.cpp 972 bool isNegative = false;
986 isNegative = true;
1006 if (value > maxMultiplier || (value == maxMultiplier && digitValue > (integralMax % base) + isNegative))
1018 if (isNegative)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir.cpp 406 ImmediateValue::isNegative() const
439 assert(!this->isNegative());
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir.cpp 406 ImmediateValue::isNegative() const
439 assert(!this->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) {
plurrule_impl.h 211 UBool isNegative;
  /external/icu/icu4c/source/i18n/
compactdecimalformat.cpp 249 UBool isNegative;
251 _round(orig, rounded, isNegative, status);
256 if (isNegative) {
262 if (isNegative) {
plurrule_impl.h 211 UBool isNegative;
  /external/owasp/sanitizer/tools/findbugs/lib/
annotations.jar 

Completed in 767 milliseconds

1 2