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

Overrides

include/llvm/TableGen/Record.h
  367   virtual std::string getAsUnquotedString() const { return getAsString(); }

References

lib/TableGen/JSONBackend.cpp
   98       obj["name"] = name->getAsUnquotedString();
  104         arg.push_back(argname->getAsUnquotedString());
lib/TableGen/Record.cpp
 1737                       FieldName->getAsUnquotedString() + "' of '" +
 1970     Result += ":" + ValName->getAsUnquotedString();
 1973     if (getArgName(0)) Result += ":$" + getArgName(0)->getAsUnquotedString();
 1976       if (getArgName(i)) Result += ":$" + getArgName(i)->getAsUnquotedString();
tools/clang/utils/TableGen/NeonEmitter.cpp
 1557   std::string Op = cast<StringInit>(DI->getArg(0))->getAsUnquotedString();
 1587     N = SI->getAsUnquotedString();
 1636       if (SI->getAsUnquotedString() == "R") {
 1638       } else if (SI->getAsUnquotedString() == "U") {
 1640       } else if (SI->getAsUnquotedString() == "S") {
 1642       } else if (SI->getAsUnquotedString() == "H") {
 1644       } else if (SI->getAsUnquotedString() == "D") {
 1646       } else if (SI->getAsUnquotedString() == "8") {
 1649         castToType = Type::fromTypedefName(SI->getAsUnquotedString());
 1875   std::string ToReplace = cast<StringInit>(DI->getArg(0))->getAsUnquotedString();
 1876   std::string ReplaceWith = cast<StringInit>(DI->getArg(1))->getAsUnquotedString();
 1887   std::string Ty = cast<StringInit>(DI->getArg(0))->getAsUnquotedString();
 1888   std::string Value = cast<StringInit>(DI->getArg(1))->getAsUnquotedString();
utils/TableGen/CodeGenInstruction.cpp
  741             Result->getArgName(AliasOpNo)->getAsUnquotedString() + "." +
  742             MIOI->getArgName(SubOp)->getAsUnquotedString(), SubRec);