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