Lines Matching refs:Postfixes
400 SmallVector<StringRef, 4> Postfixes; in decodeSPIRVTypeName() local
401 SubStrs[2].split(Postfixes, PostDelim, -1, true); in decodeSPIRVTypeName()
402 assert(Postfixes.size() > 1 && Postfixes[0].empty() && "Invalid postfix"); in decodeSPIRVTypeName()
403 for (unsigned I = 1, E = Postfixes.size(); I != E; ++I) in decodeSPIRVTypeName()
404 Strs.push_back(std::string(Postfixes[I]).c_str()); in decodeSPIRVTypeName()
594 SmallVector<std::string, 8> Postfixes; in transSPIRVOpaqueType() local
595 auto TN = decodeSPIRVTypeName(STName, Postfixes); in transSPIRVOpaqueType()
598 assert(Postfixes.size() == 1 && "Invalid pipe type ops"); in transSPIRVOpaqueType()
601 atoi(Postfixes[0].c_str()))); in transSPIRVOpaqueType()
608 Postfixes[0], *Ctx)); in transSPIRVOpaqueType()
611 Ops.push_back(atoi(Postfixes[I].c_str())); in transSPIRVOpaqueType()