Lines Matching refs:Unsigned
425 } Unsigned[] = variable
472 for (size_t i = 0; i < array_lengthof(Unsigned); ++i) { in TEST()
473 bool U8Success = StringRef(Unsigned[i].Str).getAsInteger(0, U8); in TEST()
474 if (static_cast<uint8_t>(Unsigned[i].Expected) == Unsigned[i].Expected) { in TEST()
476 EXPECT_EQ(U8, Unsigned[i].Expected); in TEST()
480 bool U16Success = StringRef(Unsigned[i].Str).getAsInteger(0, U16); in TEST()
481 if (static_cast<uint16_t>(Unsigned[i].Expected) == Unsigned[i].Expected) { in TEST()
483 EXPECT_EQ(U16, Unsigned[i].Expected); in TEST()
487 bool U32Success = StringRef(Unsigned[i].Str).getAsInteger(0, U32); in TEST()
488 if (static_cast<uint32_t>(Unsigned[i].Expected) == Unsigned[i].Expected) { in TEST()
490 EXPECT_EQ(U32, Unsigned[i].Expected); in TEST()
494 bool U64Success = StringRef(Unsigned[i].Str).getAsInteger(0, U64); in TEST()
495 if (static_cast<uint64_t>(Unsigned[i].Expected) == Unsigned[i].Expected) { in TEST()
497 EXPECT_EQ(U64, Unsigned[i].Expected); in TEST()