Lines Matching defs:Pieces
48 SmallVector<StringRef, 16> Pieces;
49 String.split(Pieces, " ", /* MaxSplit */ -1, /* KeepEmpty */ false);
50 if (Pieces.empty()) {
55 for (StringRef Piece : Pieces) {
260 SmallVector<StringRef, 2> Pieces;
261 String.split(Pieces, "=0x", /* MaxSplit */ -1,
265 if (Pieces.size() == 2 && (RegNo = Context.getRegNo(Pieces[0]))) {
267 const unsigned BitsNeeded = APInt::getBitsNeeded(Pieces[1], kRadix);
268 RV.Value = APInt(BitsNeeded, Pieces[1], kRadix);