Searched refs:_data (Results 1 – 3 of 3) sorted by relevance
/thrift-3.4.0/lib/netstd/Thrift/Protocol/ |
D | TJSONProtocol.cs | 992 private readonly byte[] _data = new byte[1]; field in Thrift.Protocol.TJsonProtocol.LookaheadReader 1017 await Proto.Trans.ReadAllAsync(_data, 0, 1, cancellationToken); in ReadAsync() 1019 return _data[0]; in ReadAsync() 1033 await Proto.Trans.ReadAllAsync(_data, 0, 1, cancellationToken); in PeekAsync() 1036 return _data[0]; in PeekAsync()
|
/thrift-3.4.0/lib/dart/lib/src/protocol/ |
D | t_json_protocol.dart | 734 final Uint8List _data = Uint8List(1); 740 protocol.transport.readAll(_data, 0, 1); 743 return _data[0]; 748 protocol.transport.readAll(_data, 0, 1); 752 return _data[0];
|
/thrift-3.4.0/compiler/cpp/tests/catch/ |
D | catch.hpp | 4588 Token( Type _type, std::string const& _data ) : type( _type ), data( _data ) {} in Token()
|