Lines Matching defs:Pref
1657 bool tryParseFmt(const char *Pref, int64_t MaxVal, int64_t &Val);
1789 bool trySkipId(const StringRef Pref, const StringRef Id);
6721 bool AMDGPUAsmParser::tryParseFmt(const char *Pref,
6727 auto Res = parseIntWithPrefix(Pref, Val);
6734 Error(Loc, Twine("out of range ", StringRef(Pref)));
6744 const char *Pref = "index_key";
6747 auto Res = parseIntWithPrefix(Pref, ImmVal);
6752 return Error(Loc, Twine("out of range ", StringRef(Pref)));
6755 return Error(Loc, Twine("out of range ", StringRef(Pref)));
7674 AMDGPUAsmParser::trySkipId(const StringRef Pref, const StringRef Id) {
7677 if (Tok.starts_with(Pref) && Tok.drop_front(Pref.size()) == Id) {