Lines Matching refs:StreamingDecoder

28 void StreamingDecoder::OnBytesReceived(Vector<const uint8_t> bytes) {  in OnBytesReceived()
46 size_t StreamingDecoder::DecodingState::ReadBytes(StreamingDecoder* streaming, in ReadBytes()
55 void StreamingDecoder::Finish() { in Finish()
84 void StreamingDecoder::Abort() { in Abort()
95 class StreamingDecoder::DecodeVarInt32 : public DecodingState {
104 size_t ReadBytes(StreamingDecoder* streaming,
107 std::unique_ptr<DecodingState> Next(StreamingDecoder* streaming) override;
110 StreamingDecoder* streaming) = 0;
122 class StreamingDecoder::DecodeModuleHeader : public DecodingState {
127 std::unique_ptr<DecodingState> Next(StreamingDecoder* streaming) override;
138 class StreamingDecoder::DecodeSectionID : public DecodingState {
147 std::unique_ptr<DecodingState> Next(StreamingDecoder* streaming) override;
155 class StreamingDecoder::DecodeSectionLength : public DecodeVarInt32 {
163 StreamingDecoder* streaming) override;
171 class StreamingDecoder::DecodeSectionPayload : public DecodingState {
182 std::unique_ptr<DecodingState> Next(StreamingDecoder* streaming) override;
188 class StreamingDecoder::DecodeNumberOfFunctions : public DecodeVarInt32 {
195 StreamingDecoder* streaming) override;
201 class StreamingDecoder::DecodeFunctionLength : public DecodeVarInt32 {
215 StreamingDecoder* streaming) override;
223 class StreamingDecoder::DecodeFunctionBody : public DecodingState {
241 std::unique_ptr<DecodingState> Next(StreamingDecoder* streaming) override;
251 size_t StreamingDecoder::DecodeVarInt32::ReadBytes( in ReadBytes()
252 StreamingDecoder* streaming, Vector<const uint8_t> bytes) { in ReadBytes()
280 std::unique_ptr<StreamingDecoder::DecodingState>
281 StreamingDecoder::DecodeVarInt32::Next(StreamingDecoder* streaming) { in Next()
295 std::unique_ptr<StreamingDecoder::DecodingState>
296 StreamingDecoder::DecodeModuleHeader::Next(StreamingDecoder* streaming) { in Next()
305 std::unique_ptr<StreamingDecoder::DecodingState>
306 StreamingDecoder::DecodeSectionID::Next(StreamingDecoder* streaming) { in Next()
312 std::unique_ptr<StreamingDecoder::DecodingState>
313 StreamingDecoder::DecodeSectionLength::NextWithValue( in NextWithValue()
314 StreamingDecoder* streaming) { in NextWithValue()
343 std::unique_ptr<StreamingDecoder::DecodingState>
344 StreamingDecoder::DecodeSectionPayload::Next(StreamingDecoder* streaming) { in Next()
353 std::unique_ptr<StreamingDecoder::DecodingState>
354 StreamingDecoder::DecodeNumberOfFunctions::NextWithValue( in NextWithValue()
355 StreamingDecoder* streaming) { in NextWithValue()
380 std::unique_ptr<StreamingDecoder::DecodingState>
381 StreamingDecoder::DecodeFunctionLength::NextWithValue( in NextWithValue()
382 StreamingDecoder* streaming) { in NextWithValue()
406 std::unique_ptr<StreamingDecoder::DecodingState>
407 StreamingDecoder::DecodeFunctionBody::Next(StreamingDecoder* streaming) { in Next()
426 StreamingDecoder::StreamingDecoder( in StreamingDecoder() function in v8::internal::wasm::StreamingDecoder