Lines Matching refs:temp

340 		Operand temp = rhs;
341 _ResolveTypesIfNeeded(temp);
347 + temp.fPrimitive.ToInt8()));
354 + temp.fPrimitive.ToUInt8()));
361 + temp.fPrimitive.ToInt16()));
368 + temp.fPrimitive.ToUInt16()));
375 + temp.fPrimitive.ToInt32());
382 + temp.fPrimitive.ToUInt32());
389 + temp.fPrimitive.ToInt64());
396 + temp.fPrimitive.ToUInt64());
403 + temp.fPrimitive.ToFloat());
410 + temp.fPrimitive.ToDouble());
420 Operand temp = rhs;
421 _ResolveTypesIfNeeded(temp);
427 - temp.fPrimitive.ToInt8()));
434 - temp.fPrimitive.ToUInt8()));
441 - temp.fPrimitive.ToInt16()));
448 - temp.fPrimitive.ToUInt16()));
455 - temp.fPrimitive.ToInt32());
462 - temp.fPrimitive.ToUInt32());
469 - temp.fPrimitive.ToInt64());
476 - temp.fPrimitive.ToUInt64());
483 - temp.fPrimitive.ToFloat());
490 - temp.fPrimitive.ToDouble());
500 Operand temp = rhs;
501 _ResolveTypesIfNeeded(temp);
507 / temp.fPrimitive.ToInt8()));
514 / temp.fPrimitive.ToUInt8()));
521 / temp.fPrimitive.ToInt16()));
528 / temp.fPrimitive.ToUInt16()));
535 / temp.fPrimitive.ToInt32());
542 / temp.fPrimitive.ToUInt32());
549 / temp.fPrimitive.ToInt64());
556 / temp.fPrimitive.ToUInt64());
563 / temp.fPrimitive.ToFloat());
570 / temp.fPrimitive.ToDouble());
580 Operand temp = rhs;
581 _ResolveTypesIfNeeded(temp);
587 * temp.fPrimitive.ToInt8()));
594 * temp.fPrimitive.ToUInt8()));
601 * temp.fPrimitive.ToInt16()));
608 * temp.fPrimitive.ToUInt16()));
615 * temp.fPrimitive.ToInt32());
622 * temp.fPrimitive.ToUInt32());
629 * temp.fPrimitive.ToInt64());
636 * temp.fPrimitive.ToUInt64());
643 * temp.fPrimitive.ToFloat());
650 * temp.fPrimitive.ToDouble());
660 Operand temp = rhs;
661 _ResolveTypesIfNeeded(temp);
667 % temp.fPrimitive.ToInt8()));
674 % temp.fPrimitive.ToUInt8()));
681 % temp.fPrimitive.ToInt16()));
688 % temp.fPrimitive.ToUInt16()));
695 % temp.fPrimitive.ToInt32());
702 % temp.fPrimitive.ToUInt32());
709 % temp.fPrimitive.ToInt64());
716 % temp.fPrimitive.ToUInt64());
726 Operand temp = rhs;
727 _ResolveTypesIfNeeded(temp);
733 & temp.fPrimitive.ToInt8()));
740 & temp.fPrimitive.ToUInt8()));
747 & temp.fPrimitive.ToInt16()));
754 & temp.fPrimitive.ToUInt16()));
761 & temp.fPrimitive.ToInt32());
768 & temp.fPrimitive.ToUInt32());
775 & temp.fPrimitive.ToInt64());
782 & temp.fPrimitive.ToUInt64());
792 Operand temp = rhs;
793 _ResolveTypesIfNeeded(temp);
799 | temp.fPrimitive.ToInt8()));
806 | temp.fPrimitive.ToUInt8()));
813 | temp.fPrimitive.ToInt16()));
820 | temp.fPrimitive.ToUInt16()));
827 | temp.fPrimitive.ToInt32());
834 | temp.fPrimitive.ToUInt32());
841 | temp.fPrimitive.ToInt64());
848 | temp.fPrimitive.ToUInt64());
858 Operand temp = rhs;
859 _ResolveTypesIfNeeded(temp);
865 ^ temp.fPrimitive.ToInt8()));
872 ^ temp.fPrimitive.ToUInt8()));
879 ^ temp.fPrimitive.ToInt16()));
886 ^ temp.fPrimitive.ToUInt16()));
893 ^ temp.fPrimitive.ToInt32());
900 ^ temp.fPrimitive.ToUInt32());
907 ^ temp.fPrimitive.ToInt64());
914 ^ temp.fPrimitive.ToUInt64());
1053 Operand temp = rhs;
1055 lhs._ResolveTypesIfNeeded(temp);
1061 result = lhs.fPrimitive.ToInt8() < temp.fPrimitive.ToInt8();
1067 result = lhs.fPrimitive.ToUInt8() < temp.fPrimitive.ToUInt8();
1073 result = lhs.fPrimitive.ToInt16() < temp.fPrimitive.ToInt16();
1080 < temp.fPrimitive.ToUInt16();
1086 result = lhs.fPrimitive.ToInt32() < temp.fPrimitive.ToInt32();
1093 < temp.fPrimitive.ToUInt32();
1099 result = lhs.fPrimitive.ToInt64() < temp.fPrimitive.ToInt64();
1106 < temp.fPrimitive.ToUInt64();
1112 result = lhs.fPrimitive.ToFloat() < temp.fPrimitive.ToFloat();
1119 < temp.fPrimitive.ToDouble();
1135 Operand temp = rhs;
1136 lhs._ResolveTypesIfNeeded(temp);
1142 result = lhs.fPrimitive.ToInt8() > temp.fPrimitive.ToInt8();
1148 result = lhs.fPrimitive.ToUInt8() > temp.fPrimitive.ToUInt8();
1154 result = lhs.fPrimitive.ToInt16() > temp.fPrimitive.ToInt16();
1161 > temp.fPrimitive.ToUInt16();
1167 result = lhs.fPrimitive.ToInt32() > temp.fPrimitive.ToInt32();
1174 > temp.fPrimitive.ToUInt32();
1180 result = lhs.fPrimitive.ToInt64() > temp.fPrimitive.ToInt64();
1187 > temp.fPrimitive.ToUInt64();
1193 result = lhs.fPrimitive.ToFloat() > temp.fPrimitive.ToFloat();
1200 > temp.fPrimitive.ToDouble();
1216 Operand temp = rhs;
1217 lhs._ResolveTypesIfNeeded(temp);
1223 result = lhs.fPrimitive.ToInt8() == temp.fPrimitive.ToInt8();
1229 result = lhs.fPrimitive.ToUInt8() == temp.fPrimitive.ToUInt8();
1235 result = lhs.fPrimitive.ToInt16() == temp.fPrimitive.ToInt16();
1242 == temp.fPrimitive.ToUInt16();
1248 result = lhs.fPrimitive.ToInt32() == temp.fPrimitive.ToInt32();
1255 == temp.fPrimitive.ToUInt32();
1261 result = lhs.fPrimitive.ToInt64() == temp.fPrimitive.ToInt64();
1268 == temp.fPrimitive.ToUInt64();
1274 result = lhs.fPrimitive.ToFloat() == temp.fPrimitive.ToFloat();
1281 == temp.fPrimitive.ToDouble();
1826 BString temp;
1827 temp << "Expected " << expected.String() << " got '" << token.string
1829 throw ParseException(temp.String(), token.position);