• Home
  • Raw
  • Download

Lines Matching refs:kInt

62 …{ SkOpType(kInt | kScalar | kString), SkOpType(kInt | kScalar | kString), kTowardsString }, // kAdd
67 { kInt, kInt, kNoBias }, // kBitAnd
68 { kNoType, kInt, kNoBias }, // kBitNot
69 { kInt, kInt, kNoBias }, // kBitOr
70 { SkOpType(kInt | kScalar), SkOpType(kInt | kScalar), kNoBias }, // kDivide
74 …{ SkOpType(kInt | kScalar | kString), SkOpType(kInt | kScalar | kString), kTowardsNumber }, // kEq…
78 { kInt, kNoType, kNoBias }, // kFlipOps
79 …{ SkOpType(kInt | kScalar | kString), SkOpType(kInt | kScalar | kString), kTowardsNumber }, // kGr…
84 { kNoType, kInt, kNoBias }, // kLogicalAnd (really, ToBool)
85 { kNoType, kInt, kNoBias }, // kLogicalNot
86 { kInt, kInt, kNoBias }, // kLogicalOr
87 { kNoType, SkOpType(kInt | kScalar), kNoBias }, // kMinus
90 { SkOpType(kInt | kScalar), SkOpType(kInt | kScalar), kNoBias }, // kModulo
93 { SkOpType(kInt | kScalar), SkOpType(kInt | kScalar), kNoBias }, // kMultiply
97 { kInt, kInt, kNoBias }, // kShiftLeft
98 { kInt, kInt, kNoBias }, // kShiftRight
99 { SkOpType(kInt | kScalar), SkOpType(kInt | kScalar), kNoBias }, // kSubtract
102 { kInt, kInt, kNoBias } // kXor
656 *fTypeStack.push() = kInt; in innerScript()
882 fReturnType = kInt; in handleArrayIndexer()
1154 if (indexType != kInt && indexType != kScalar) { in logicalOp()
1211 if (fTypeStack.top() != kInt) { in logicalOp()
1298 if (type1 == kInt || type1 == kScalar) { in processOp()
1299 convertToString(operand1, type1 == kInt ? SkType_Int : SkType_Float); in processOp()
1302 if (type2 == kInt || type2 == kScalar) { in processOp()
1303 convertToString(operand2, type2 == kInt ? SkType_Int : SkType_Float); in processOp()
1307 if (type1 == kInt) { in processOp()
1311 if (type2 == kInt) { in processOp()
1326 if (type1 == kScalar && (attributes->fLeftType == kInt || type2 == kInt)) { in processOp()
1328 type1 = kInt; in processOp()
1341 if (type2 == kScalar && (attributes->fRightType == kInt || type1 == kInt)) { in processOp()
1343 type2 = kInt; in processOp()
1397 type2 = kInt; in processOp()
1401 type2 = kInt; in processOp()
1408 type2 = kInt; in processOp()
1412 type2 = kInt; in processOp()
1579 case kInt: in ToDisplayType()
1601 return kInt; in ToOpType()
1606 return kInt; in ToOpType()
1627 case kInt: in ValueToString()