HomeSort by relevance Sort by last modified time
    Searched defs:CodedInputStream (Results 1 - 25 of 35) sorted by null

1 2

  /external/protobuf/csharp/src/Google.Protobuf/
CodedInputStream.cs 54 public sealed class CodedInputStream : IDisposable
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)
129 /// Creates a new <see cref="CodedInputStream"/> that reads from the given byte array slice.
131 public CodedInputStream(byte[] buffer, int offset, int length)
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)
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(Stream input, bool leaveOpen)
    [all...]
  /external/protobuf/src/google/protobuf/io/
coded_stream.cc 73 // 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::Limit, int
    [all...]
coded_stream.h 35 // 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 {
161 // Create a CodedInputStream that reads from the given ZeroCopyInputStream
    [all...]
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/io/
coded_stream.h 35 // This file contains the CodedInputStream and CodedOutputStream classes,
66 // CodedInputStream example:
70 // CodedInputStream coded_input = new CodedInputStream(raw_input);
142 class CodedInputStream;
151 // Most users will not need to deal with CodedInputStream.
153 // Most methods of CodedInputStream that return a bool return false if an
155 // failure occurs, the CodedInputStream is broken and is no longer useful.
156 class LIBPROTOBUF_EXPORT CodedInputStream {
158 // Create a CodedInputStream that reads from the given ZeroCopyInputStream
    [all...]
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/io/
coded_stream.h 35 // This file contains the CodedInputStream and CodedOutputStream classes,
66 // CodedInputStream example:
70 // CodedInputStream coded_input = new CodedInputStream(raw_input);
142 class CodedInputStream;
151 // Most users will not need to deal with CodedInputStream.
153 // Most methods of CodedInputStream that return a bool return false if an
155 // failure occurs, the CodedInputStream is broken and is no longer useful.
156 class LIBPROTOBUF_EXPORT CodedInputStream {
158 // Create a CodedInputStream that reads from the given ZeroCopyInputStream
    [all...]
  /prebuilts/misc/windows/protobuf2.5/include/google/protobuf/io/
coded_stream.h 35 // This file contains the CodedInputStream and CodedOutputStream classes,
66 // CodedInputStream example:
70 // CodedInputStream coded_input = new CodedInputStream(raw_input);
142 class CodedInputStream;
151 // Most users will not need to deal with CodedInputStream.
153 // Most methods of CodedInputStream that return a bool return false if an
155 // failure occurs, the CodedInputStream is broken and is no longer useful.
156 class LIBPROTOBUF_EXPORT CodedInputStream {
158 // Create a CodedInputStream that reads from the given ZeroCopyInputStream
    [all...]
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/io/
coded_stream.h 35 // 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 {
161 // Create a CodedInputStream that reads from the given ZeroCopyInputStream
    [all...]
  /prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/io/
coded_stream.h 35 // This file contains the CodedInputStream and CodedOutputStream classes,
66 // CodedInputStream example:
70 // CodedInputStream coded_input = new CodedInputStream(raw_input);
142 class CodedInputStream;
151 // Most users will not need to deal with CodedInputStream.
153 // Most methods of CodedInputStream that return a bool return false if an
155 // failure occurs, the CodedInputStream is broken and is no longer useful.
156 class LIBPROTOBUF_EXPORT CodedInputStream {
158 // Create a CodedInputStream that reads from the given ZeroCopyInputStream
    [all...]
  /external/protobuf/java/core/src/test/java/com/google/protobuf/
ParserTest.java 82 CodedInputStream.newInstance(data), registry));
102 CodedInputStream.newInstance(data)));
143 CodedInputStream.newInstance(data)));
169 // parseFrom(CodedInputStream)
171 parser.parseFrom(CodedInputStream.newInstance(
CodedInputStreamTest.java 49 * Unit test for {@link CodedInputStream}.
69 * We use this to make sure that CodedInputStream doesn't screw up when
95 private void assertDataConsumed(byte[] data, CodedInputStream input)
106 CodedInputStream input = CodedInputStream.newInstance(data);
110 input = CodedInputStream.newInstance(data);
114 input = CodedInputStream.newInstance(data);
118 input = CodedInputStream.newInstance(data);
124 input = CodedInputStream.newInstance(
129 input = CodedInputStream.newInstance
    [all...]
  /external/protobuf/java/core/src/main/java/com/google/protobuf/
CodedInputStream.java 53 public final class CodedInputStream {
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 wrapping the given byte array slice
    [all...]
  /prebuilts/tools/common/m2/repository/com/android/tools/external/libprotobuf-java-lite/2.3.0/
libprotobuf-java-lite-2.3.0.jar 
  /prebuilts/tools/common/m2/repository/com/google/protobuf/protobuf-lite/3.0.1/
protobuf-lite-3.0.1.jar 
  /prebuilts/misc/common/robolectric/3.1.1/lib/
protobuf-java-2.6.1.jar 
  /prebuilts/misc/common/robolectric/3.4.2/lib/
protobuf-java-2.6.1.jar 
  /prebuilts/misc/common/robolectric/3.5.1/lib/
protobuf-java-2.6.1.jar 
  /prebuilts/misc/common/robolectric/3.6.1/lib/
protobuf-java-2.6.1.jar 
  /prebuilts/tools/common/m2/repository/com/google/protobuf/protobuf-java/2.6.1/
protobuf-java-2.6.1.jar 
  /prebuilts/misc/common/android-support-test/espresso/
espresso_core_release_no_deps.jar 
  /prebuilts/tools/common/m2/repository/com/google/protobuf/protobuf-java/3.0.0-beta-2/
protobuf-java-3.0.0-beta-2.jar 
  /external/google-tv-pairing-protocol/java/jar/
protobuf-java-2.2.0-lite.jar 
  /prebuilts/tools/common/m2/repository/com/google/protobuf/protobuf-java/3.0.0/
protobuf-java-3.0.0.jar 
  /prebuilts/tools/common/m2/repository/com/google/protobuf/protobuf-java/3.0.2/
protobuf-java-3.0.2.jar 
  /prebuilts/tools/common/m2/repository/com/google/protobuf/protobuf-java/2.5.0/
protobuf-java-2.5.0.jar 
  /prebuilts/tools/common/offline-m2/com/google/protobuf/protobuf-java/2.5.0/
protobuf-java-2.5.0.jar 

Completed in 729 milliseconds

1 2