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

Declarations

include/llvm/Transforms/Utils/SymbolRewriter.h
   51 class Stream;

References

include/llvm/Support/Error.h
  330 template <typename ErrT, typename... ArgTs> Error make_error(ArgTs &&... Args) {
include/llvm/Support/YAMLParser.h
  524   Document(Stream &ParentStream);
  547   Stream &stream;
  599       Stream &S = (*Doc)->stream;
include/llvm/Support/YAMLTraits.h
 1527   std::unique_ptr<llvm::yaml::Stream> Strm;
include/llvm/Transforms/Utils/SymbolRewriter.h
  100   bool parseEntry(yaml::Stream &Stream, yaml::KeyValueNode &Entry,
  102   bool parseRewriteFunctionDescriptor(yaml::Stream &Stream,
  106   bool parseRewriteGlobalVariableDescriptor(yaml::Stream &Stream,
  110   bool parseRewriteGlobalAliasDescriptor(yaml::Stream &YS, yaml::ScalarNode *K,
lib/Remarks/YAMLRemarkParser.cpp
   37                                yaml::Stream &Stream, yaml::Node &Node) {
lib/Remarks/YAMLRemarkParser.h
   35   YAMLParseError(StringRef Message, SourceMgr &SM, yaml::Stream &Stream,
   59   yaml::Stream Stream;
lib/Support/VirtualFileSystem.cpp
 1140   yaml::Stream &Stream;
 1484   RedirectingFileSystemParser(yaml::Stream &S) : Stream(S) {}
 1587   yaml::Stream Stream(Buffer->getMemBufferRef(), SM);
lib/Support/YAMLParser.cpp
 2257 Document::Document(Stream &S) : stream(S), Root(nullptr) {
lib/Support/YAMLTraits.cpp
   57     : IO(Ctxt), Strm(new Stream(InputContent, SrcMgr, false, &EC)) {
   65     : IO(Ctxt), Strm(new Stream(Input, SrcMgr, false, &EC)) {
lib/Transforms/Utils/SymbolRewriter.cpp
  268   yaml::Stream YS(MapFile->getBuffer(), SM);
  291 bool RewriteMapParser::parseEntry(yaml::Stream &YS, yaml::KeyValueNode &Entry,
  323 parseRewriteFunctionDescriptor(yaml::Stream &YS, yaml::ScalarNode *K,
  393 parseRewriteGlobalVariableDescriptor(yaml::Stream &YS, yaml::ScalarNode *K,
  456 parseRewriteGlobalAliasDescriptor(yaml::Stream &YS, yaml::ScalarNode *K,
tools/clang/include/clang/Tooling/JSONCompilationDatabase.h
  136   llvm::yaml::Stream YAMLStream;
tools/clang/lib/ARCMigrate/ObjCMT.cpp
 2099     Stream YAMLStream(FileBufOrErr.get()->getMemBufferRef(), SM);
tools/clang/tools/extra/clangd/unittests/TraceTests.cpp
   86   llvm::yaml::Stream Stream(JSON, SM);
tools/sancov/sancov.cpp
  373   yaml::Stream S(**BufOrErr, SM);
unittests/Support/YAMLParserTest.cpp
   33   yaml::Stream Stream(Input, SM);
   42   yaml::Stream Stream(Input, SM);
  160   yaml::Stream Stream("test: |\n  Hello\n  World\n", SM);
  191   yaml::Stream Stream(StringInArray, SM);
  228   yaml::Stream Stream("[\"1\", \"2\", \"3\", \"4\", \"5\", \"6\"]", SM);
  242   yaml::Stream UnnamedStream("[]", SM);
  257   yaml::Stream Stream(Buffer->getMemBufferRef(), SM);
  264   yaml::Stream Stream("[\"1\", \"2\"]", SM);
  279   yaml::Stream Stream("[\"1\", \"2\"]", SM);
  294   yaml::Stream Stream("[\"1\", \"2\"]", SM);
  295   yaml::Stream AnotherStream("[\"1\", \"2\"]", SM);
  315   yaml::Stream Stream("[\"1\", \"2\"]", SM);
  316   yaml::Stream AnotherStream("[\"1\", \"2\"]", SM);
usr/include/c++/7.4.0/bits/move.h
   72     constexpr _Tp&&
   83     constexpr _Tp&&
usr/include/c++/7.4.0/bits/unique_ptr.h
   68         default_delete(const default_delete<_Up>&) noexcept { }
   72       operator()(_Tp* __ptr) const
   74 	static_assert(!is_void<_Tp>::value,
   76 	static_assert(sizeof(_Tp)>0,
  122 	  using type = _Up*;
  137       using pointer = typename _Ptr<_Tp, _Dp>::type;
  161 	typename __uniq_ptr_impl<_Tp, _Up>::_DeleterConstraint::type;
  163       __uniq_ptr_impl<_Tp, _Dp> _M_t;
  166       using pointer	  = typename __uniq_ptr_impl<_Tp, _Dp>::pointer;
  167       using element_type  = _Tp;
  824     make_unique(_Args&&... __args)
usr/include/c++/7.4.0/type_traits
  215     : public __is_void_helper<typename remove_cv<_Tp>::type>::type
  581     : public __or_<is_lvalue_reference<_Tp>,
  582                    is_rvalue_reference<_Tp>>::type
  601     : public __not_<__or_<is_function<_Tp>, is_reference<_Tp>,
  601     : public __not_<__or_<is_function<_Tp>, is_reference<_Tp>,
  602                           is_void<_Tp>>>::type
  638     : public __or_<is_object<_Tp>, is_reference<_Tp>>::type
  638     : public __or_<is_object<_Tp>, is_reference<_Tp>>::type
 1554     { typedef _Tp     type; };
 1563     { typedef _Tp     type; };
 1574       remove_const<typename remove_volatile<_Tp>::type>::type     type;
 1633     { typedef _Tp   type; };
 1645     { typedef _Tp&   type; };
 1650     : public __add_lvalue_reference_helper<_Tp>
utils/yaml-bench/YAMLBench.cpp
  131 static void dumpStream(yaml::Stream &stream) {
  170     llvm::yaml::Stream stream(JSONText, SM);
  214       yaml::Stream stream(Buf.getBuffer(), sm, ShowColors);