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

References

include/llvm/BinaryFormat/MsgPackReader.h
  122   Expected<bool> read(Object &Obj);
  135   template <class T> Expected<bool> readRaw(Object &Obj);
  136   template <class T> Expected<bool> readInt(Object &Obj);
  137   template <class T> Expected<bool> readUInt(Object &Obj);
  138   template <class T> Expected<bool> readLength(Object &Obj);
  139   template <class T> Expected<bool> readExt(Object &Obj);
  140   Expected<bool> createRaw(Object &Obj, uint32_t Size);
  141   Expected<bool> createExt(Object &Obj, uint32_t Size);
lib/BinaryFormat/MsgPackDocument.cpp
   87     Object Obj;
lib/BinaryFormat/MsgPackReader.cpp
   28 Expected<bool> Reader::read(Object &Obj) {
  181 template <class T> Expected<bool> Reader::readRaw(Object &Obj) {
  191 template <class T> Expected<bool> Reader::readInt(Object &Obj) {
  201 template <class T> Expected<bool> Reader::readUInt(Object &Obj) {
  211 template <class T> Expected<bool> Reader::readLength(Object &Obj) {
  221 template <class T> Expected<bool> Reader::readExt(Object &Obj) {
  231 Expected<bool> Reader::createRaw(Object &Obj, uint32_t Size) {
  241 Expected<bool> Reader::createExt(Object &Obj, uint32_t Size) {
unittests/BinaryFormat/MsgPackReaderTest.cpp
   18   Object Obj;