Home | History | Annotate | Download | only in ADT

Lines Matching refs:getAsInteger

466 TEST(StringRefTest, getAsInteger) {
473 bool U8Success = StringRef(Unsigned[i].Str).getAsInteger(0, U8);
480 bool U16Success = StringRef(Unsigned[i].Str).getAsInteger(0, U16);
487 bool U32Success = StringRef(Unsigned[i].Str).getAsInteger(0, U32);
494 bool U64Success = StringRef(Unsigned[i].Str).getAsInteger(0, U64);
509 bool S8Success = StringRef(Signed[i].Str).getAsInteger(0, S8);
516 bool S16Success = StringRef(Signed[i].Str).getAsInteger(0, S16);
523 bool S32Success = StringRef(Signed[i].Str).getAsInteger(0, S32);
530 bool S64Success = StringRef(Signed[i].Str).getAsInteger(0, S64);
556 bool IsBadNumber = StringRef(BadStrings[i]).getAsInteger(0, U64);