/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/io/ |
D | zero_copy_stream.h | 119 class ZeroCopyInputStream; variable 124 class LIBPROTOBUF_EXPORT ZeroCopyInputStream { 126 inline ZeroCopyInputStream() {} in ZeroCopyInputStream() function 127 virtual ~ZeroCopyInputStream(); 176 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(ZeroCopyInputStream);
|
D | zero_copy_stream_impl.h | 63 class LIBPROTOBUF_EXPORT FileInputStream : public ZeroCopyInputStream { 215 class LIBPROTOBUF_EXPORT IstreamInputStream : public ZeroCopyInputStream { 304 class LIBPROTOBUF_EXPORT ConcatenatingInputStream : public ZeroCopyInputStream { 308 ConcatenatingInputStream(ZeroCopyInputStream* const streams[], int count); 321 ZeroCopyInputStream* const* streams_; 332 class LIBPROTOBUF_EXPORT LimitingInputStream : public ZeroCopyInputStream { 334 LimitingInputStream(ZeroCopyInputStream* input, int64 limit); 345 ZeroCopyInputStream* input_;
|
D | zero_copy_stream.cc | 44 ZeroCopyInputStream::~ZeroCopyInputStream() {} in ~ZeroCopyInputStream()
|
D | gzip_stream.h | 55 class LIBPROTOBUF_EXPORT GzipInputStream : public ZeroCopyInputStream { 71 ZeroCopyInputStream* sub_stream, 93 ZeroCopyInputStream* sub_stream_;
|
D | tokenizer.h | 49 class ZeroCopyInputStream; // zero_copy_stream.h variable 96 Tokenizer(ZeroCopyInputStream* input, ErrorCollector* error_collector); 262 ZeroCopyInputStream* input_;
|
D | zero_copy_stream_unittest.cc | 104 int ReadFromInput(ZeroCopyInputStream* input, void* data, int size); 109 void ReadString(ZeroCopyInputStream* input, const string& str); 116 void ReadStuff(ZeroCopyInputStream* input); 122 void ReadStuffLarge(ZeroCopyInputStream* input); 164 int IoTest::ReadFromInput(ZeroCopyInputStream* input, void* data, int size) { in ReadFromInput() 203 void IoTest::ReadString(ZeroCopyInputStream* input, const string& str) { in ReadString() 226 void IoTest::ReadStuff(ZeroCopyInputStream* input) { in ReadStuff() 258 void IoTest::ReadStuffLarge(ZeroCopyInputStream* input) { in ReadStuffLarge() 942 ZeroCopyInputStream* streams[] = in TEST_F()
|
D | zero_copy_stream_impl_lite.h | 66 class LIBPROTOBUF_EXPORT ArrayInputStream : public ZeroCopyInputStream { 226 class LIBPROTOBUF_EXPORT CopyingInputStreamAdaptor : public ZeroCopyInputStream {
|
D | coded_stream.h | 149 class ZeroCopyInputStream; // zero_copy_stream.h variable 162 explicit CodedInputStream(ZeroCopyInputStream* input); 525 ZeroCopyInputStream* input_; 1312 inline CodedInputStream::CodedInputStream(ZeroCopyInputStream* input) in CodedInputStream()
|
D | zero_copy_stream_impl.cc | 353 ZeroCopyInputStream* const streams[], int count) in ConcatenatingInputStream() 415 LimitingInputStream::LimitingInputStream(ZeroCopyInputStream* input, in LimitingInputStream()
|
D | gzip_stream.cc | 50 ZeroCopyInputStream* sub_stream, Format format, int buffer_size) in GzipInputStream()
|
D | coded_stream_unittest.cc | 227 class In : public ZeroCopyInputStream { in TEST_F() 1317 class ReallyBigInputStream : public ZeroCopyInputStream {
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/ |
D | message_lite.h | 51 class ZeroCopyInputStream; variable 150 bool ParseFromZeroCopyStream(io::ZeroCopyInputStream* input); 153 bool ParsePartialFromZeroCopyStream(io::ZeroCopyInputStream* input); 157 bool ParseFromBoundedZeroCopyStream(io::ZeroCopyInputStream* input, int size); 160 bool ParsePartialFromBoundedZeroCopyStream(io::ZeroCopyInputStream* input,
|
D | text_format.h | 324 static bool Parse(io::ZeroCopyInputStream* input, Message* output); 330 static bool Merge(io::ZeroCopyInputStream* input, Message* output); 413 bool Parse(io::ZeroCopyInputStream* input, Message* output); 417 bool Merge(io::ZeroCopyInputStream* input, Message* output); 471 bool MergeUsingImpl(io::ZeroCopyInputStream* input,
|
D | message_lite.cc | 173 bool MessageLite::ParseFromZeroCopyStream(io::ZeroCopyInputStream* input) { in ParseFromZeroCopyStream() 179 io::ZeroCopyInputStream* input) { in ParsePartialFromZeroCopyStream() 186 io::ZeroCopyInputStream* input, int size) { in ParseFromBoundedZeroCopyStream() 195 io::ZeroCopyInputStream* input, int size) { in ParsePartialFromBoundedZeroCopyStream()
|
D | unknown_field_set.h | 52 class ZeroCopyInputStream; // zero_copy_stream.h variable 142 bool ParseFromZeroCopyStream(io::ZeroCopyInputStream* input);
|
D | text_format.cc | 228 io::ZeroCopyInputStream* input_stream, in ParserImpl() 1280 bool TextFormat::Parser::Parse(io::ZeroCopyInputStream* input, in Parse() 1304 bool TextFormat::Parser::Merge(io::ZeroCopyInputStream* input, in Merge() 1321 bool TextFormat::Parser::MergeUsingImpl(io::ZeroCopyInputStream* /* input */, in MergeUsingImpl() argument 1349 /* static */ bool TextFormat::Parse(io::ZeroCopyInputStream* input, in Parse() 1354 /* static */ bool TextFormat::Merge(io::ZeroCopyInputStream* input, in Merge()
|
D | unknown_field_set.cc | 258 bool UnknownFieldSet::ParseFromZeroCopyStream(io::ZeroCopyInputStream* input) { in ParseFromZeroCopyStream()
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/util/ |
D | json_util.h | 43 class ZeroCopyInputStream; variable 106 io::ZeroCopyInputStream* binary_input, 112 io::ZeroCopyInputStream* binary_input, in BinaryToJsonStream() 141 io::ZeroCopyInputStream* json_input, 148 io::ZeroCopyInputStream* json_input, in JsonToBinaryStream()
|
D | json_util.cc | 75 io::ZeroCopyInputStream* binary_input, in BinaryToJsonStream() 143 io::ZeroCopyInputStream* json_input, in JsonToBinaryStream()
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/compiler/ |
D | importer.h | 51 namespace io { class ZeroCopyInputStream; } variable 217 virtual io::ZeroCopyInputStream* Open(const string& filename) = 0; 295 virtual io::ZeroCopyInputStream* Open(const string& filename); 313 io::ZeroCopyInputStream* OpenVirtualFile(const string& virtual_file, 317 io::ZeroCopyInputStream* OpenDiskFile(const string& filename);
|
D | importer.cc | 128 google::protobuf::scoped_ptr<io::ZeroCopyInputStream> input(source_tree_->Open(filename)); in FindFileByName() 419 google::protobuf::scoped_ptr<io::ZeroCopyInputStream> stream(OpenDiskFile(disk_file)); in DiskFileToVirtualFile() 429 google::protobuf::scoped_ptr<io::ZeroCopyInputStream> stream( in VirtualFileToDiskFile() 434 io::ZeroCopyInputStream* DiskSourceTree::Open(const string& filename) { in Open() 442 io::ZeroCopyInputStream* DiskSourceTree::OpenVirtualFile( in OpenVirtualFile() 459 io::ZeroCopyInputStream* stream = OpenDiskFile(temp_disk_file); in OpenVirtualFile() 479 io::ZeroCopyInputStream* DiskSourceTree::OpenDiskFile( in OpenDiskFile()
|
D | importer_unittest.cc | 104 io::ZeroCopyInputStream* Open(const string& filename) { in Open() 271 google::protobuf::scoped_ptr<io::ZeroCopyInputStream> input(source_tree_.Open(filename)); in ExpectFileContents() 288 google::protobuf::scoped_ptr<io::ZeroCopyInputStream> input(source_tree_.Open(filename)); in ExpectCannotOpenFile()
|
/frameworks/opt/gamesdk/samples/tuningfork/tfvalidate/ |
D | apk_validator.h | 48 pb::io::ZeroCopyInputStream* Open(const std::string& relative_path) override;
|
D | apk_validator.cpp | 66 pb::io::ZeroCopyInputStream*
|
/frameworks/base/tools/aapt2/io/ |
D | Util.h | 86 class ZeroCopyInputAdaptor : public ::google::protobuf::io::ZeroCopyInputStream {
|