reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

utils/TableGen/AsmWriterEmitter.cpp
  298         !AWI.Operands[0].Str.empty()) {
  299       std::string Str = AWI.Operands[0].Str;
  311         AWI.Operands[0].Str.empty()) {
  315       std::string Str = AWI.Operands[0].Str;
utils/TableGen/AsmWriterInst.cpp
   30     if (Str.size() == 1)
   31       return "O << '" + Str + "';";
   32     return "O << \"" + Str + "\";";
   36     return Str;
   38   std::string Result = Str + "(MI";
utils/TableGen/AsmWriterInst.h
   65       if (OperandType != Other.OperandType || Str != Other.Str) return true;
   65       if (OperandType != Other.OperandType || Str != Other.Str) return true;
   98         Operands.back().Str.append(Str);