Lines Matching defs:Pref
1685 bool tryParseFmt(const char *Pref, int64_t MaxVal, int64_t &Val);
1817 bool trySkipId(const StringRef Pref, const StringRef Id);
6835 bool AMDGPUAsmParser::tryParseFmt(const char *Pref,
6841 auto Res = parseIntWithPrefix(Pref, Val);
6848 Error(Loc, Twine("out of range ", StringRef(Pref)));
6858 const char *Pref = "index_key";
6861 auto Res = parseIntWithPrefix(Pref, ImmVal);
6866 return Error(Loc, Twine("out of range ", StringRef(Pref)));
6869 return Error(Loc, Twine("out of range ", StringRef(Pref)));
7788 AMDGPUAsmParser::trySkipId(const StringRef Pref, const StringRef Id) {
7791 if (Tok.starts_with(Pref) && Tok.drop_front(Pref.size()) == Id) {