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

/external/protobuf/src/google/protobuf/io/
H A Dcoded_stream.h35 // This file contains the CodedInputStream and CodedOutputStream classes,
66 // CodedInputStream example:
70 // CodedInputStream coded_input = new CodedInputStream(raw_input);
129 class CodedInputStream;
138 // Most users will not need to deal with CodedInputStream.
140 // Most methods of CodedInputStream that return a bool return false if an
142 // failure occurs, the CodedInputStream is broken and is no longer useful.
143 class LIBPROTOBUF_EXPORT CodedInputStream { class in namespace:google::protobuf::io
145 // Create a CodedInputStream tha
1038 inline CodedInputStream::CodedInputStream(ZeroCopyInputStream* input) function in class:google::protobuf::io::CodedInputStream
1059 inline CodedInputStream::CodedInputStream(const uint8* buffer, int size) function in class:google::protobuf::io::CodedInputStream
[all...]
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DCodedInputStream.java50 public final class CodedInputStream { class
52 * Create a new CodedInputStream wrapping the given InputStream.
54 public static CodedInputStream newInstance(final InputStream input) {
55 return new CodedInputStream(input);
59 * Create a new CodedInputStream wrapping the given byte array.
61 public static CodedInputStream newInstance(final byte[] buf) {
66 * Create a new CodedInputStream wrapping the given byte array slice.
68 public static CodedInputStream newInstance(final byte[] buf, final int off,
70 return new CodedInputStream(buf, off, len);
354 * stream in a CodedInputStream an
509 private CodedInputStream(final byte[] buffer, final int off, final int len) { method in class:CodedInputStream
517 private CodedInputStream(final InputStream input) { method in class:CodedInputStream
[all...]

Completed in 132 milliseconds