Searched defs:isNegative (Results 1 - 17 of 17) sorted by relevance

/external/jmonkeyengine/engine/src/core/com/jme3/input/controls/
H A DJoyAxisTrigger.java65 public boolean isNegative() { method in class:JoyAxisTrigger
H A DMouseAxisTrigger.java68 public boolean isNegative() { method in class:MouseAxisTrigger
/external/clang/include/clang/AST/
H A DCharUnits.h125 /// isNegative - Test whether the quantity is less than zero.
126 bool isNegative() const { return Quantity < 0; } function in class:clang::CharUnits
/external/compiler-rt/lib/ubsan/
H A Dubsan_value.h185 bool isNegative() const { function in class:__ubsan::Value
/external/llvm/include/llvm/ADT/
H A DAPInt.h304 bool isNegative() const { function in class:llvm::APInt
311 return !isNegative();
340 !isNegative() && countPopulation() == BitWidth - 1;
354 return BitWidth == 1 ? VAL == 1 : isNegative() && isPowerOf2();
1184 if (isNegative())
1242 return isNegative() ? countLeadingOnes() : countLeadingZeros();
1401 if (isNegative())
H A DAPFloat.h327 bool isNegative() const { return sign; } function in class:llvm::APFloat
328 bool isPosZero() const { return isZero() && !isNegative(); }
329 bool isNegZero() const { return isZero() && isNegative(); }
/external/llvm/lib/Support/
H A DAPFloat.cpp113 bool isNegative; local
120 isNegative = (*p == '-');
146 if (isNegative)
1759 bool inputSign = isNegative();
1768 if (inputSign != isNegative())
2147 if (isSigned && api.isNegative()) {
3372 if (isNegative())
3380 if (isNegative())
3393 if (isNegative())
/external/webkit/Source/WebCore/platform/
H A DLength.h169 bool isNegative() const { return getFloatValue() < 0; } function in struct:WebCore::Length
/external/eigen/Eigen/src/Cholesky/
H A DLDLT.h153 inline bool isNegative(void) const function in class:Eigen::LDLT
/external/llvm/include/llvm/IR/
H A DConstants.h156 bool isNegative() const { return Val.isNegative(); } function in class:llvm::ConstantInt
269 /// isNegative - Return true if the sign bit is set.
270 bool isNegative() const { return Val.isNegative(); } function in class:llvm::ConstantFP
/external/llvm/lib/Target/PowerPC/
H A DPPCCTRLoops.cpp146 bool isNegative; member in class:__anon9758::CountValue
150 isNegative(neg) {}
152 isNegative(i < 0) {}
156 bool isNeg() const { return isNegative; }
167 if (isNegative) {
/external/webkit/Source/JavaScriptCore/wtf/text/
H A DWTFString.cpp804 bool isNegative = false; local
818 isNegative = true;
838 if (value > maxMultiplier || (value == maxMultiplier && digitValue > (integralMax % base) + isNegative))
850 if (isNegative)
/external/icu4c/i18n/
H A Ddecimfmt.cpp1384 UBool isNegative = !adjustedNum.isPositive(); local
1403 int32_t prefixLen = appendAffix(appendTo, adjustedNum.getDouble(), handler, isNegative, TRUE);
1410 int32_t suffixLen = appendAffix(appendTo, adjustedNum.getDouble(), handler, isNegative, FALSE);
2705 * @param isNegative
2718 UBool isNegative,
2734 if (isNegative) {
3947 * @param isNegative
3952 UBool isNegative, UBool isPrefix) const {
3958 affixPat = isNegative ? fNegPrefixPattern : fPosPrefixPattern;
3960 affixPat = isNegative
2716 compareAffix(const UnicodeString& text, int32_t pos, UBool isNegative, UBool isPrefix, const UnicodeString* affixPat, UBool currencyParsing, int8_t type, UChar* currency) const argument
3950 appendAffix(UnicodeString& buf, double number, FieldPositionHandler& handler, UBool isNegative, UBool isPrefix) const argument
[all...]
/external/libxml2/
H A Dtrio.c2171 BOOLEAN_T isNegative; local
2200 isNegative = FALSE;
2205 isNegative = ((trio_intmax_t)number < 0);
2206 if (isNegative)
2265 if (isNegative || (flags & FLAGS_SHOWSIGN) || (flags & FLAGS_SPACE))
2293 if (isNegative)
2627 BOOLEAN_T isNegative; local
2647 switch (trio_fpclassify_and_signbit(number, &isNegative))
2658 if (isNegative)
2732 if (isNegative)
5432 BOOLEAN_T isNegative = FALSE; local
[all...]
/external/llvm/lib/Target/ARM/AsmParser/
H A DARMAsmParser.cpp383 unsigned isNegative : 1; // Negated OffsetReg? (~'U' bit) member in struct:__anon9678::ARMOperand::MemoryOp
993 if (!isMem() || !Memory.OffsetRegNum || Memory.isNegative ||
999 if (!isMem() || !Memory.OffsetRegNum || Memory.isNegative ||
1011 if (!isMem() || !Memory.OffsetRegNum || Memory.isNegative ||
1024 if (!isMem() || !Memory.OffsetRegNum || Memory.isNegative ||
1723 Val = ARM_AM::getAM2Opc(Memory.isNegative ? ARM_AM::sub : ARM_AM::add,
1767 Val = ARM_AM::getAM3Opc(Memory.isNegative ? ARM_AM::sub : ARM_AM::add, 0);
1902 ARM_AM::getAM2Opc(Memory.isNegative ? ARM_AM::sub : ARM_AM::add,
2304 bool isNegative,
2313 Op->Memory.isNegative
2298 CreateMem(unsigned BaseRegNum, const MCConstantExpr *OffsetImm, unsigned OffsetRegNum, ARM_AM::ShiftOpc ShiftType, unsigned ShiftImm, unsigned Alignment, bool isNegative, SMLoc S, SMLoc E) argument
3874 bool isNegative = Parser.getTok().is(AsmToken::Minus); local
4353 bool isNegative = getParser().getTok().is(AsmToken::Minus); local
4393 bool isNegative = false; local
4535 bool isNegative = false; local
4640 bool isNegative = Parser.getTok().is(AsmToken::Minus); local
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 331 milliseconds