Lines Matching refs:Signed
442 } Signed[] = variable
508 for (size_t i = 0; i < array_lengthof(Signed); ++i) { in TEST()
509 bool S8Success = StringRef(Signed[i].Str).getAsInteger(0, S8); in TEST()
510 if (static_cast<int8_t>(Signed[i].Expected) == Signed[i].Expected) { in TEST()
512 EXPECT_EQ(S8, Signed[i].Expected); in TEST()
516 bool S16Success = StringRef(Signed[i].Str).getAsInteger(0, S16); in TEST()
517 if (static_cast<int16_t>(Signed[i].Expected) == Signed[i].Expected) { in TEST()
519 EXPECT_EQ(S16, Signed[i].Expected); in TEST()
523 bool S32Success = StringRef(Signed[i].Str).getAsInteger(0, S32); in TEST()
524 if (static_cast<int32_t>(Signed[i].Expected) == Signed[i].Expected) { in TEST()
526 EXPECT_EQ(S32, Signed[i].Expected); in TEST()
530 bool S64Success = StringRef(Signed[i].Str).getAsInteger(0, S64); in TEST()
531 if (static_cast<int64_t>(Signed[i].Expected) == Signed[i].Expected) { in TEST()
533 EXPECT_EQ(S64, Signed[i].Expected); in TEST()