Home | History | Annotate | Download | only in ADT

Lines Matching refs:Signed

361 } Signed[] =
427 for (size_t i = 0; i < array_lengthof(Signed); ++i) {
428 bool S8Success = StringRef(Signed[i].Str).getAsInteger(0, S8);
429 if (static_cast<int8_t>(Signed[i].Expected) == Signed[i].Expected) {
431 EXPECT_EQ(S8, Signed[i].Expected);
435 bool S16Success = StringRef(Signed[i].Str).getAsInteger(0, S16);
436 if (static_cast<int16_t>(Signed[i].Expected) == Signed[i].Expected) {
438 EXPECT_EQ(S16, Signed[i].Expected);
442 bool S32Success = StringRef(Signed[i].Str).getAsInteger(0, S32);
443 if (static_cast<int32_t>(Signed[i].Expected) == Signed[i].Expected) {
445 EXPECT_EQ(S32, Signed[i].Expected);
449 bool S64Success = StringRef(Signed[i].Str).getAsInteger(0, S64);
450 if (static_cast<int64_t>(Signed[i].Expected) == Signed[i].Expected) {
452 EXPECT_EQ(S64, Signed[i].Expected);