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

Declarations

include/llvm/Support/YAMLParser.h
  103   void printError(Node *N, const Twine &Msg);

References

lib/Remarks/YAMLRemarkParser.cpp
   48   Stream.printError(&Node, Twine(Msg) + Twine('\n'));
lib/Support/VirtualFileSystem.cpp
 1142   void error(yaml::Node *N, const Twine &Msg) { Stream.printError(N, Msg); }
lib/Support/YAMLTraits.cpp
  368   Strm->printError(node, message);
lib/Transforms/Utils/SymbolRewriter.cpp
  279       YS.printError(Document.getRoot(), "DescriptorList node must be a map");
  300     YS.printError(Entry.getKey(), "rewrite type must be a scalar");
  306     YS.printError(Entry.getValue(), "rewrite descriptor must be a map");
  318   YS.printError(Entry.getKey(), "unknown rewrite type");
  340       YS.printError(Field.getKey(), "descriptor key must be a scalar");
  346       YS.printError(Field.getValue(), "descriptor value must be a scalar");
  356         YS.printError(Field.getKey(), "invalid regex: " + Error);
  369       YS.printError(Field.getKey(), "unknown key for function");
  375     YS.printError(Descriptor,
  409       YS.printError(Field.getKey(), "descriptor Key must be a scalar");
  415       YS.printError(Field.getValue(), "descriptor value must be a scalar");
  425         YS.printError(Field.getKey(), "invalid regex: " + Error);
  433       YS.printError(Field.getKey(), "unknown Key for Global Variable");
  439     YS.printError(Descriptor,
  472       YS.printError(Field.getKey(), "descriptor key must be a scalar");
  478       YS.printError(Field.getValue(), "descriptor value must be a scalar");
  488         YS.printError(Field.getKey(), "invalid regex: " + Error);
  496       YS.printError(Field.getKey(), "unknown key for Global Alias");
  502     YS.printError(Descriptor,
unittests/Support/YAMLParserTest.cpp
  243   UnnamedStream.printError(UnnamedStream.begin()->getRoot(), "Hello, World!");
  258   Stream.printError(Stream.begin()->getRoot(), "Hello, World!");