OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:CodedOutputStream
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/third_party/protobuf/src/google/protobuf/io/
coded_stream.cc
551
//
CodedOutputStream
=================================================
553
CodedOutputStream
::
CodedOutputStream
(ZeroCopyOutputStream* output)
567
CodedOutputStream
::~
CodedOutputStream
() {
573
bool
CodedOutputStream
::Skip(int count) {
585
bool
CodedOutputStream
::GetDirectBufferPointer(void** data, int* size) {
593
void
CodedOutputStream
::WriteRaw(const void* data, int size) {
605
uint8*
CodedOutputStream
::WriteRawToArray(
612
void
CodedOutputStream
::WriteLittleEndian32(uint32 value)
[
all
...]
coded_stream.h
35
// This file contains the CodedInputStream and
CodedOutputStream
classes,
47
//
CodedOutputStream
example:
54
//
CodedOutputStream
* coded_output = new
CodedOutputStream
(raw_output);
143
class
CodedOutputStream
;
562
// Most users will not need to deal with
CodedOutputStream
.
564
// Most methods of
CodedOutputStream
which return a bool return false if an
566
//
CodedOutputStream
is broken and is no longer useful. The Write* methods do
570
// Note that every method of
CodedOutputStream
which writes some data has
580
//
CodedOutputStream
coded_output = new CodedOutputStream(raw_output)
[
all
...]
/external/protobuf/src/google/protobuf/io/
coded_stream.cc
524
//
CodedOutputStream
=================================================
526
CodedOutputStream
::
CodedOutputStream
(ZeroCopyOutputStream* output)
540
CodedOutputStream
::~
CodedOutputStream
() {
546
bool
CodedOutputStream
::Skip(int count) {
558
bool
CodedOutputStream
::GetDirectBufferPointer(void** data, int* size) {
566
void
CodedOutputStream
::WriteRaw(const void* data, int size) {
578
uint8*
CodedOutputStream
::WriteRawToArray(
585
void
CodedOutputStream
::WriteLittleEndian32(uint32 value)
[
all
...]
coded_stream.h
35
// This file contains the CodedInputStream and
CodedOutputStream
classes,
47
//
CodedOutputStream
example:
54
//
CodedOutputStream
* coded_output = new
CodedOutputStream
(raw_output);
130
class
CodedOutputStream
;
534
// Most users will not need to deal with
CodedOutputStream
.
536
// Most methods of
CodedOutputStream
which return a bool return false if an
538
//
CodedOutputStream
is broken and is no longer useful. The Write* methods do
542
// Note that every method of
CodedOutputStream
which writes some data has
552
//
CodedOutputStream
coded_output = new CodedOutputStream(raw_output)
[
all
...]
/external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
CodedOutputStream.java
52
public final class
CodedOutputStream
{
66
*
CodedOutputStream
. Used by AbstractMessageLite.
69
*
CodedOutputStream
.
76
private
CodedOutputStream
(final byte[] buffer, final int offset,
84
private
CodedOutputStream
(final OutputStream output, final byte[] buffer) {
92
* Create a new {@code
CodedOutputStream
} wrapping the given
95
public static
CodedOutputStream
newInstance(final OutputStream output) {
100
* Create a new {@code
CodedOutputStream
} wrapping the given
103
public static
CodedOutputStream
newInstance(final OutputStream output,
105
return new
CodedOutputStream
(output, new byte[bufferSize])
[
all
...]
/external/protobuf/java/src/main/java/com/google/protobuf/
CodedOutputStream.java
51
public final class
CodedOutputStream
{
65
*
CodedOutputStream
. Used by AbstractMessageLite.
68
*
CodedOutputStream
.
75
private
CodedOutputStream
(final byte[] buffer, final int offset,
83
private
CodedOutputStream
(final OutputStream output, final byte[] buffer) {
91
* Create a new {@code
CodedOutputStream
} wrapping the given
94
public static
CodedOutputStream
newInstance(final OutputStream output) {
99
* Create a new {@code
CodedOutputStream
} wrapping the given
102
public static
CodedOutputStream
newInstance(final OutputStream output,
104
return new
CodedOutputStream
(output, new byte[bufferSize])
[
all
...]
Completed in 97 milliseconds