Searched defs:CodedInputStream (Results 1 - 7 of 7) sorted by relevance

/external/protobuf/csharp/src/Google.Protobuf/
H A DCodedInputStream.cs54 public sealed class CodedInputStream : IDisposable class in namespace:Google.Protobuf
122 /// Creates a new CodedInputStream reading data from the given byte array.
124 public CodedInputStream(byte[] buffer) : this(null, ProtoPreconditions.CheckNotNull(buffer, "buffer"), 0, buffer.Length) method in class:Google.Protobuf.CodedInputStream
129 /// Creates a new <see cref="CodedInputStream"/> that reads from the given byte array slice.
131 public CodedInputStream(byte[] buffer, int offset, int length) method in class:Google.Protobuf.CodedInputStream
145 /// Creates a new <see cref="CodedInputStream"/> reading data from the given stream, which will be disposed
149 public CodedInputStream(Stream input) : this(input, false) method in class:Google.Protobuf.CodedInputStream
154 /// Creates a new <see cref="CodedInputStream"/> reading data from the given stream.
158 /// <c cref="CodedInputStream"/> is disposed; <c>false</c> to dispose of the given stream when the
160 public CodedInputStream(Strea method in class:Google.Protobuf.CodedInputStream
170 internal CodedInputStream(Stream input, byte[] buffer, int bufferPos, int bufferSize) method in class:Google.Protobuf.CodedInputStream
188 internal CodedInputStream(Stream input, byte[] buffer, int bufferPos, int bufferSize, int sizeLimit, int recursionLimit) method in class:Google.Protobuf.CodedInputStream
[all...]
/external/protobuf/java/core/src/main/java/com/google/protobuf/
H A DCodedInputStream.java53 public final class CodedInputStream { class
55 * Create a new CodedInputStream wrapping the given InputStream.
57 public static CodedInputStream newInstance(final InputStream input) {
58 return new CodedInputStream(input, BUFFER_SIZE);
62 * Create a new CodedInputStream wrapping the given InputStream.
64 static CodedInputStream newInstance(final InputStream input, int bufferSize) {
65 return new CodedInputStream(input, bufferSize);
69 * Create a new CodedInputStream wrapping the given byte array.
71 public static CodedInputStream newInstance(final byte[] buf) {
76 * Create a new CodedInputStream wrappin
891 private CodedInputStream( method in class:CodedInputStream
901 private CodedInputStream(final InputStream input, int bufferSize) { method in class:CodedInputStream
[all...]
/external/protobuf/src/google/protobuf/io/
H A Dcoded_stream.cc73 // CodedInputStream ==================================================
75 CodedInputStream::~CodedInputStream() {
86 int CodedInputStream::default_recursion_limit_ = 100;
93 void CodedInputStream::BackUpInputToCurrentPosition() {
106 inline void CodedInputStream::RecomputeBufferLimits() {
119 CodedInputStream::Limit CodedInputStream::PushLimit(int byte_limit) {
144 void CodedInputStream::PopLimit(Limit limit) {
155 std::pair<CodedInputStream
[all...]
H A Dcoded_stream.h35 // This file contains the CodedInputStream and CodedOutputStream classes,
66 // CodedInputStream example:
70 // CodedInputStream coded_input = new CodedInputStream(raw_input);
145 class CodedInputStream;
154 // Most users will not need to deal with CodedInputStream.
156 // Most methods of CodedInputStream that return a bool return false if an
158 // failure occurs, the CodedInputStream is broken and is no longer useful.
159 class LIBPROTOBUF_EXPORT CodedInputStream { class in namespace:google::protobuf::io
161 // Create a CodedInputStream tha
[all...]
/external/google-tv-pairing-protocol/java/jar/
H A Dprotobuf-java-2.2.0-lite.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/protobuf/ com/google/protobuf/UninitializedMessageException ...
/external/kotlinc/lib/
H A Dkotlin-reflect.jarMETA-INF/MANIFEST.MF kotlin/reflect/jvm/internal/ReflectProperties$LazyVal.class ReflectProperties.java package ...
/external/v8/src/inspector/build/closure-compiler/
H A Dclosure-compiler.jarMETA-INF/MANIFEST.MF META-INF/ com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...

Completed in 291 milliseconds