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

/external/protobuf/csharp/src/Google.Protobuf/
H A DCodedOutputStream.ComputeSize.cs37 // This part of CodedOutputStream provides all the static entry points that are used
39 // written to an instance of CodedOutputStream.
40 public sealed partial class CodedOutputStream class in namespace:Google.Protobuf
H A DCodedOutputStream.cs58 public sealed partial class CodedOutputStream : IDisposable class in namespace:Google.Protobuf
76 /// Creates a new CodedOutputStream that writes directly to the given
80 public CodedOutputStream(byte[] flatArray) : this(flatArray, 0, flatArray.Length) method in class:Google.Protobuf.CodedOutputStream
85 /// Creates a new CodedOutputStream that writes directly to the given
89 private CodedOutputStream(byte[] buffer, int offset, int length) method in class:Google.Protobuf.CodedOutputStream
98 private CodedOutputStream(Stream output, byte[] buffer, bool leaveOpen) method in class:Google.Protobuf.CodedOutputStream
108 /// Creates a new <see cref="CodedOutputStream" /> which write to the given stream, and disposes of that
109 /// stream when the returned <c>CodedOutputStream</c> is disposed.
111 /// <param name="output">The stream to write to. It will be disposed when the returned <c>CodedOutputStream is disposed.</c></param>
112 public CodedOutputStream(Strea method in class:Google.Protobuf.CodedOutputStream
122 public CodedOutputStream(Stream output, int bufferSize) : this(output, new byte[bufferSize], false) method in class:Google.Protobuf.CodedOutputStream
132 public CodedOutputStream(Stream output, bool leaveOpen) : this(output, DefaultBufferSize, leaveOpen) method in class:Google.Protobuf.CodedOutputStream
144 public CodedOutputStream(Stream output, int bufferSize, bool leaveOpen) : this(output, new byte[bufferSize], leaveOpen) method in class:Google.Protobuf.CodedOutputStream
[all...]
/external/protobuf/src/google/protobuf/io/
H A Dcoded_stream.cc89 void CodedOutputStream::EnableAliasing(bool enabled) {
615 // CodedOutputStream =================================================
617 CodedOutputStream::CodedOutputStream(ZeroCopyOutputStream* output) function in class:google::protobuf::io::CodedOutputStream
632 CodedOutputStream::CodedOutputStream(ZeroCopyOutputStream* output, function in class:google::protobuf::io::CodedOutputStream
650 CodedOutputStream::~CodedOutputStream() {
654 void CodedOutputStream::Trim() {
663 bool CodedOutputStream
[all...]
H A Dcoded_stream.h35 // This file contains the CodedInputStream and CodedOutputStream classes,
47 // CodedOutputStream example:
54 // CodedOutputStream* coded_output = new CodedOutputStream(raw_output);
146 class CodedOutputStream;
621 // Most users will not need to deal with CodedOutputStream.
623 // Most methods of CodedOutputStream which return a bool return false if an
625 // CodedOutputStream is broken and is no longer useful. The Write* methods do
629 // Note that every method of CodedOutputStream which writes some data has
639 // CodedOutputStream coded_outpu
665 class LIBPROTOBUF_EXPORT CodedOutputStream { class in namespace:google::protobuf::io
[all...]
/external/protobuf/java/core/src/main/java/com/google/protobuf/
H A DCodedOutputStream.java60 public abstract class CodedOutputStream extends ByteOutput { class in inherits:ByteOutput
61 private static final Logger logger = Logger.getLogger(CodedOutputStream.class.getName());
83 * CodedOutputStream. Used by AbstractMessageLite.
86 * CodedOutputStream.
96 * Create a new {@code CodedOutputStream} wrapping the given {@code OutputStream}.
102 public static CodedOutputStream newInstance(final OutputStream output) {
107 * Create a new {@code CodedOutputStream} wrapping the given {@code OutputStream} with a given
114 public static CodedOutputStream newInstance(final OutputStream output, final int bufferSize) {
119 * Create a new {@code CodedOutputStream} that writes directly to the given
125 public static CodedOutputStream newInstanc
184 private CodedOutputStream() { method in class:CodedOutputStream
[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/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 370 milliseconds