• Home
  • Raw
  • Download

Lines Matching refs:Impl

91 template <typename Impl>
93 T BlobDeserializer<Impl>::ReadArithmetic() { in ReadArithmetic()
103 template <typename Impl>
105 std::vector<T> BlobDeserializer<Impl>::ReadVector() { in ReadVector()
131 template <typename Impl>
132 std::string BlobDeserializer<Impl>::ReadString() { in ReadString()
153 template <typename Impl>
155 void BlobDeserializer<Impl>::ReadArithmetic(T* out, size_t count) { in ReadArithmetic()
175 template <typename Impl>
177 std::vector<Number> BlobDeserializer<Impl>::ReadArithmeticVector(size_t count) { in ReadArithmeticVector()
186 template <typename Impl>
188 std::vector<T> BlobDeserializer<Impl>::ReadNonArithmeticVector(size_t count) { in ReadNonArithmeticVector()
206 template <typename Impl>
208 T BlobDeserializer<Impl>::ReadElement() { in ReadElement()
219 template <typename Impl>
221 size_t BlobSerializer<Impl>::WriteArithmetic(const T& data) { in WriteArithmetic()
229 template <typename Impl>
231 size_t BlobSerializer<Impl>::WriteVector(const std::vector<T>& data) { in WriteVector()
264 template <typename Impl>
265 size_t BlobSerializer<Impl>::WriteString(const std::string& data) { in WriteString()
286 template <typename Impl>
288 size_t BlobSerializer<Impl>::WriteArithmetic(const T* data, size_t count) { in WriteArithmetic()
313 template <typename Impl>
315 size_t BlobSerializer<Impl>::WriteArithmeticVector( in WriteArithmeticVector()
322 template <typename Impl>
324 size_t BlobSerializer<Impl>::WriteNonArithmeticVector( in WriteNonArithmeticVector()
343 template <typename Impl>
345 size_t BlobSerializer<Impl>::WriteElement(const T& data) { in WriteElement()