Home | History | Annotate | Download | only in TableGen

Lines Matching refs:Suffix

149 /// suffix.  ("VST4d8", "VST4d8_UPD", "_UPD") as input returns true.
152 const StringRef Suffix) {
154 if (RHS.startswith(LHS) && RHS.endswith(Suffix))
155 return RHS.size() == LHS.size() + Suffix.size();