Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:DigitEnd

705       size_t DigitEnd = AsmString.find_first_not_of("0123456789", DigitStart);
706 if (DigitEnd == std::string::npos)
707 DigitEnd = AsmString.size();
708 StringRef OperandStr(&AsmString[DigitStart], DigitEnd - DigitStart);
717 Pos = DigitEnd;