HomeSort by relevance Sort by last modified time
    Searched refs:InputByteStream (Results 1 - 4 of 4) sorted by null

  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
encodings.h 68 template <typename InputByteStream>
69 static CharType TakeBOM(InputByteStream& is);
72 template <typename InputByteStream>
73 static Ch Take(InputByteStream& is);
196 template <typename InputByteStream>
197 static CharType TakeBOM(InputByteStream& is) {
198 RAPIDJSON_STATIC_ASSERT(sizeof(typename InputByteStream::Ch) == 1);
209 template <typename InputByteStream>
210 static Ch Take(InputByteStream& is) {
211 RAPIDJSON_STATIC_ASSERT(sizeof(typename InputByteStream::Ch) == 1);
    [all...]
encodedstream.h 30 \tparam InputByteStream Type of input byte stream. For example, FileReadStream.
32 template <typename Encoding, typename InputByteStream>
34 RAPIDJSON_STATIC_ASSERT(sizeof(typename InputByteStream::Ch) == 1);
38 EncodedInputStream(InputByteStream& is) : is_(is) {
56 InputByteStream& is_;
63 \tparam InputByteStream Type of input byte stream. For example, FileWriteStream.
98 \tparam InputByteStream type of input byte stream to be wrapped.
100 template <typename CharType, typename InputByteStream>
102 RAPIDJSON_STATIC_ASSERT(sizeof(typename InputByteStream::Ch) == 1);
111 AutoUTFInputStream(InputByteStream& is, UTFType type = kUTF8) : is_(&is), type_(type), hasBOM_(false) {
    [all...]
  /external/llvm/tools/llvm-pdbdump/fuzzer/
llvm-pdbdump-fuzzer.cpp 34 class InputByteStream : public codeview::ByteStream<false> {
36 explicit InputByteStream(std::unique_ptr<MemoryBuffer> Buffer)
52 auto InputStream = llvm::make_unique<InputByteStream>(std::move(Buff));
  /external/llvm/lib/DebugInfo/PDB/Raw/
RawSession.cpp 32 class InputByteStream : public codeview::ByteStream<false> {
34 explicit InputByteStream(std::unique_ptr<MemoryBuffer> Buffer)
58 auto Stream = llvm::make_unique<InputByteStream>(std::move(Buffer));

Completed in 2188 milliseconds