Searched refs:isInteger (Results 1 - 25 of 40) sorted by relevance

12

/macosx-10.9.5/WebCore-7537.78.1/css/
H A DCSSCalculationValue.h82 bool isInteger() const { return m_isInteger; } function in class:WebCore::CSSCalcExpressionNode
85 CSSCalcExpressionNode(CalculationCategory category, bool isInteger) argument
87 , m_isInteger(isInteger)
105 bool isInt() const { return m_expression->isInteger(); }
H A DCSSCalculationValue.cpp138 static PassRefPtr<CSSCalcPrimitiveValue> create(CSSPrimitiveValue* value, bool isInteger) argument
140 return adoptRef(new CSSCalcPrimitiveValue(value, isInteger));
237 explicit CSSCalcPrimitiveValue(CSSPrimitiveValue* value, bool isInteger) argument
238 : CSSCalcExpressionNode(unitCategory((CSSPrimitiveValue::UnitTypes)value->primitiveType()), isInteger)
374 : CSSCalcExpressionNode(category, leftSide->isInteger() && rightSide->isInteger())
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/CodeGen/
H A DISDOpcodes.h784 CondCode getSetCCInverse(CondCode Operation, bool isInteger);
794 CondCode getSetCCOrOperation(CondCode Op1, CondCode Op2, bool isInteger);
800 CondCode getSetCCAndOperation(CondCode Op1, CondCode Op2, bool isInteger);
H A DValueTypes.h170 /// isInteger - Return true if this is an integer, or a vector integer type.
171 bool isInteger() const { function in class:llvm::MVT
566 /// isInteger - Return true if this is an integer, or a vector integer type.
567 bool isInteger() const { function in struct:llvm::EVT
568 return isSimple() ? V.isInteger() : isExtendedInteger();
712 assert(isInteger() && !isVector() && "Invalid integer type!");
724 assert(isInteger() && !isVector() && "Invalid integer type!");
/macosx-10.9.5/llvmCore-3425.0.33/lib/CodeGen/AsmPrinter/
H A DDIE.h191 isInteger, enumerator in enum:llvm::DIEValue::__anon10127
232 explicit DIEInteger(uint64_t I) : DIEValue(isInteger), Integer(I) {}
261 static bool classof(const DIEValue *I) { return I->getType() == isInteger; }
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/
H A DUserAgentSupport.js79 function isUserInputValid(value, isInteger)
83 return isInteger ? /^[0]*[1-9][\d]*$/.test(value) : /^[0]*([1-9][\d]*(\.\d+)?|\.\d+)$/.test(value);
/macosx-10.9.5/llvmCore-3425.0.33/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp250 ISD::CondCode ISD::getSetCCInverse(ISD::CondCode Op, bool isInteger) { argument
252 if (isInteger)
288 bool isInteger) {
289 if (isInteger && (isSignedOp(Op1) | isSignedOp(Op2)) == 3)
301 if (isInteger && Op == ISD::SETUNE) // e.g. SETUGT | SETULT
312 bool isInteger) {
313 if (isInteger && (isSignedOp(Op1) | isSignedOp(Op2)) == 3)
321 if (isInteger) {
810 assert(!VT.isVector() && (VT.isInteger() || VT.isFloatingPoint()) &&
815 assert(N->getOperand(0).getValueType().isInteger()
287 getSetCCOrOperation(ISD::CondCode Op1, ISD::CondCode Op2, bool isInteger) argument
311 getSetCCAndOperation(ISD::CondCode Op1, ISD::CondCode Op2, bool isInteger) argument
[all...]
H A DTargetLowering.cpp763 if (!ExpandedVT.isInteger())
839 isTypeLegal(SVT) && SVT.getScalarType().isInteger()) {
1014 if (ExtendKind != ISD::ANY_EXTEND && VT.isInteger()) {
2164 N0.getOperand(0).getValueType().isInteger());
2460 if (N0.getValueType().isInteger()) {
2477 N0.getValueType().isInteger()) {
2595 Cond = ISD::getSetCCInverse(Cond, /*isInteger=*/true);
2603 Cond = ISD::getSetCCInverse(Cond, /*isInteger=*/true);
2749 if (ConstraintVT.isInteger())
2994 if ((OpInfo.ConstraintVT.isInteger() !
[all...]
H A DLegalizeDAG.cpp385 assert(ST->getMemoryVT().isInteger() &&
509 assert(LoadedVT.isInteger() && !LoadedVT.isVector() &&
619 (EltVT.isInteger() && Val.getValueType().bitsGE(EltVT))) {
1630 if (!OpVT.isInteger()) {
2309 assert(NewInTy.isInteger() && "Ran out of possibilities!");
2351 assert(NewOutTy.isInteger() && "Ran out of possibilities!");
2445 assert(VT.isInteger() && Len <= 128 && Len % 8 == 0 &&
2728 if (VT.isInteger())
3643 assert(OVT.isInteger()
3670 assert(OVT.isInteger()
[all...]
H A DDAGCombiner.cpp802 if (VT.isVector() || !VT.isInteger())
860 if (VT.isVector() || !VT.isInteger())
904 if (VT.isVector() || !VT.isInteger())
933 if (VT.isVector() || !VT.isInteger())
1464 if (VT.isInteger() && !VT.isVector()) {
2365 if (In0Ty.isInteger() && In1Ty.isInteger() && In0Ty == In1Ty) {
2579 LL.getValueType().isInteger()) {
2608 bool isInteger = LL.getValueType().isInteger(); local
3105 bool isInteger = LL.getValueType().isInteger(); local
[all...]
H A DSelectionDAGBuilder.cpp114 if (ValueVT.isInteger()) {
174 assert(ValueVT.isFloatingPoint() && PartVT.isInteger() &&
187 if (PartVT.isInteger() && ValueVT.isInteger()) {
367 assert((PartVT.isInteger() || PartVT == MVT::x86mmx) &&
368 ValueVT.isInteger() &&
381 assert((PartVT.isInteger() || PartVT == MVT::x86mmx) &&
382 ValueVT.isInteger() &&
416 assert(PartVT.isInteger() && ValueVT.isInteger()
[all...]
H A DLegalizeTypes.h695 else if (Op.getValueType().isInteger())
726 if (Op.getValueType().isInteger())
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/Target/
H A DTargetLowering.h529 assert((VT.isInteger() || VT.isFloatingPoint()) &&
535 assert(NVT.isInteger() == VT.isInteger() && NVT != MVT::isVoid &&
590 if (VT.isInteger()) {
613 if (VT.isInteger()) {
1989 assert(VT.isInteger() && "Float types must be simple");
2015 if (EltVT.isInteger()) {
/macosx-10.9.5/llvmCore-3425.0.33/lib/Target/NVPTX/
H A DNVPTXISelLowering.cpp329 if (elemtype.isInteger() && (sz < 8)) sz = 8;
358 if (elemtype.isInteger() && (sz < 32)) sz = 32;
425 if (elemtype.isInteger() && (sz < 32)) sz = 32;
479 if (VT.isInteger() && (sz < 32)) sz = 32;
540 if (elemtype.isInteger() && (sz < 8)) sz = 8;
573 if (elemtype.isInteger() && (sz < 32)) sz = 32;
622 if (elemtype.isInteger() && (sz < 32)) sz = 32;
625 if (elemtype.isInteger() && (sz < 8)) sz = 8;
755 if (Ins[i].VT.isInteger() && (sz < 8)) sz = 8;
H A DNVPTXAsmPrinter.cpp317 if (elemtype.isInteger() && (sz < 8)) sz = 8;
346 if (elemtype.isInteger() && (sz < 32)) sz = 32;
1550 if (elemtype.isInteger() && (sz < 32)) sz = 32;
/macosx-10.9.5/llvmCore-3425.0.33/utils/TableGen/
H A DDAGISelMatcher.cpp353 return !MVT(T2).isInteger() || MVT(T2).isVector();
356 return !MVT(T1).isInteger() || MVT(T1).isVector();
H A DCodeGenDAGPatterns.cpp32 static inline bool isInteger(MVT::SimpleValueType VT) { function
33 return EVT(VT).isInteger();
104 if (isInteger(TypeVec[i]))
234 return FillWithPossibleTypes(TP, isInteger, "integer");
242 if (!isInteger(TypeVec[i]))
392 if (isInteger(TypeVec[i])) {
397 if (isInteger(TypeVec[i]) && TypeVec[i] < SmallestInt)
416 if (isInteger(*TVI)) {
448 if (isInteger(Other.TypeVec[i])) {
453 if (isInteger(Othe
[all...]
H A DIntrinsicEmitter.cpp249 if (EVT(VT).isInteger()) {
/macosx-10.9.5/JavaScriptCore-7537.78.1/jit/
H A DJITArithmetic32_64.cpp794 Jump isInteger = jump(); local
798 isInteger.link(this);
898 Jump isInteger = jump(); local
902 isInteger.link(this);
H A DJITArithmetic.cpp1044 Jump isInteger = jump(); local
1054 isInteger.link(this);
/macosx-10.9.5/llvmCore-3425.0.33/lib/VMCore/
H A DValueTypes.cpp112 if (isInteger())
/macosx-10.9.5/JavaScriptCore-7537.78.1/offlineasm/
H A Dparser.rb181 def isInteger(token) method
366 elsif isInteger @tokens[@idx]
403 @tokens[@idx] == "-" or @tokens[@idx] == "~" or @tokens[@idx] == "sizeof" or isInteger(@tokens[@idx]) or isVariable(@tokens[@idx]) or @tokens[@idx] == "("
/macosx-10.9.5/ICU-511.35/icuSources/i18n/unicode/
H A Ddecimfmt.h2038 * @param isInteger if TRUE format the digits as Integer.
2044 UBool isInteger,
/macosx-10.9.5/ICU-511.35/icuSources/i18n/
H A Ddecimfmt.cpp.fixed846 UBool isInteger) const
1089 UBool fractionPresent = (!isInteger && digitIndex < digits.fCount) ||
1121 (isInteger || digitIndex >= digits.fCount)) {
1136 if (!isInteger && digitIndex < digits.fCount) {
/macosx-10.9.5/llvmCore-3425.0.33/lib/Transforms/Scalar/
H A DCodeGenPrepare.cpp538 if (SrcVT.isInteger() != DstVT.isInteger())

Completed in 434 milliseconds

12