/external/protobuf/src/google/protobuf/ |
descriptor_database.h | 72 FileDescriptorProto* output) = 0; 78 FileDescriptorProto* output) = 0; 86 FileDescriptorProto* output) = 0; 133 // Adds the FileDescriptorProto to the database, making a copy. The object 137 bool Add(const FileDescriptorProto& file); 139 // Adds the FileDescriptorProto to the database and takes ownership of it. 140 bool AddAndOwn(const FileDescriptorProto* file); 144 FileDescriptorProto* output); 146 FileDescriptorProto* output); 149 FileDescriptorProto* output) [all...] |
descriptor_database_unittest.cc | 55 FileDescriptorProto file_proto; 60 static void ExpectContainsType(const FileDescriptorProto& proto, 86 virtual bool AddToDatabase(const FileDescriptorProto& file) = 0; 104 virtual bool AddToDatabase(const FileDescriptorProto& file) { 124 virtual bool AddToDatabase(const FileDescriptorProto& file) { 147 virtual bool AddToDatabase(const FileDescriptorProto& file) { 167 FileDescriptorProto file_proto; 173 FileDescriptorProto file_proto; 191 FileDescriptorProto file; 198 FileDescriptorProto file [all...] |
descriptor_database.cc | 54 const FileDescriptorProto& file, 256 bool SimpleDescriptorDatabase::Add(const FileDescriptorProto& file) { 257 FileDescriptorProto* new_file = new FileDescriptorProto; 262 bool SimpleDescriptorDatabase::AddAndOwn(const FileDescriptorProto* file) { 269 FileDescriptorProto* output) { 275 FileDescriptorProto* output) { 282 FileDescriptorProto* output) { 292 bool SimpleDescriptorDatabase::MaybeCopy(const FileDescriptorProto* file, 293 FileDescriptorProto* output) [all...] |
descriptor.pb.h | 37 class FileDescriptorProto; 206 // repeated .google.protobuf.FileDescriptorProto file = 1; 210 inline const ::google::protobuf::FileDescriptorProto& file(int index) const; 211 inline ::google::protobuf::FileDescriptorProto* mutable_file(int index); 212 inline ::google::protobuf::FileDescriptorProto* add_file(); 213 inline const ::google::protobuf::RepeatedPtrField< ::google::protobuf::FileDescriptorProto >& 215 inline ::google::protobuf::RepeatedPtrField< ::google::protobuf::FileDescriptorProto >* 223 ::google::protobuf::RepeatedPtrField< ::google::protobuf::FileDescriptorProto > file_; 246 class LIBPROTOBUF_EXPORT FileDescriptorProto : public ::google::protobuf::Message { 248 FileDescriptorProto(); [all...] |
dynamic_message_unittest.cc | 74 FileDescriptorProto unittest_file; 75 FileDescriptorProto unittest_import_file;
|
descriptor_unittest.cc | 60 DescriptorProto* AddMessage(FileDescriptorProto* file, const string& name) { 72 EnumDescriptorProto* AddEnum(FileDescriptorProto* file, const string& name) { 85 ServiceDescriptorProto* AddService(FileDescriptorProto* file, 104 FieldDescriptorProto* AddExtension(FileDescriptorProto* file, 161 void AddEmptyEnum(FileDescriptorProto* file, const string& name) { 190 FileDescriptorProto foo_file; 199 FileDescriptorProto bar_file; 210 FileDescriptorProto baz_file; 352 FileDescriptorProto file; 398 FileDescriptorProto foo_file [all...] |
descriptor.pb.cc | 103 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(FileDescriptorProto, name_), 104 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(FileDescriptorProto, package_), 105 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(FileDescriptorProto, dependency_), 106 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(FileDescriptorProto, message_type_), 107 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(FileDescriptorProto, enum_type_), 108 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(FileDescriptorProto, service_), 109 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(FileDescriptorProto, extension_), 110 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(FileDescriptorProto, options_), 115 FileDescriptorProto::default_instance_, 117 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(FileDescriptorProto, _has_bits_[0]) [all...] |
descriptor.h | 83 class FileDescriptorProto; [all...] |
message_unittest.cc | 270 FileDescriptorProto file;
|
descriptor.cc | 841 // the raw bytes of the FileDescriptorProto representing the file. 852 // FileDescriptorProto and generates a FileDescriptor (and all its children) 855 // Note that FileDescriptorProto is itself a generated protocol message. [all...] |
/external/protobuf/src/google/protobuf/compiler/ |
importer.h | 99 bool FindFileByName(const string& filename, FileDescriptorProto* output); 101 FileDescriptorProto* output); 104 FileDescriptorProto* output);
|
parser.h | 63 // to a FileDescriptorProto. It does not resolve import directives or perform 71 // Parse the entire input and construct a FileDescriptorProto representing 73 bool Parse(io::Tokenizer* input, FileDescriptorProto* file); 110 // you may pass a NULL FileDescriptorProto to Parse(). 213 bool ParseTopLevelStatement(FileDescriptorProto* file); 219 bool ParsePackage(FileDescriptorProto* file);
|
command_line_interface.h | 53 class FileDescriptorProto; // descriptor.pb.h 237 RepeatedPtrField<FileDescriptorProto>* output);
|
parser_unittest.cc | 110 // Parse the input and expect that the resulting FileDescriptorProto matches 111 // the given output. The output is a FileDescriptorProto in protocol buffer 115 FileDescriptorProto actual, expected; 142 FileDescriptorProto file; 155 FileDescriptorProto file; [all...] |
plugin.pb.h | 124 // repeated .google.protobuf.FileDescriptorProto proto_file = 15; 128 inline const ::google::protobuf::FileDescriptorProto& proto_file(int index) const; 129 inline ::google::protobuf::FileDescriptorProto* mutable_proto_file(int index); 130 inline ::google::protobuf::FileDescriptorProto* add_proto_file(); 131 inline const ::google::protobuf::RepeatedPtrField< ::google::protobuf::FileDescriptorProto >& 133 inline ::google::protobuf::RepeatedPtrField< ::google::protobuf::FileDescriptorProto >* 144 ::google::protobuf::RepeatedPtrField< ::google::protobuf::FileDescriptorProto > proto_file_; 483 // repeated .google.protobuf.FileDescriptorProto proto_file = 15; 490 inline const ::google::protobuf::FileDescriptorProto& CodeGeneratorRequest::proto_file(int index) const { 493 inline ::google::protobuf::FileDescriptorProto* CodeGeneratorRequest::mutable_proto_file(int index) [all...] |
importer.cc | 123 const string& filename, FileDescriptorProto* output) { 151 const string& symbol_name, FileDescriptorProto* output) { 157 FileDescriptorProto* output) {
|
parser.cc | 306 bool Parser::Parse(io::Tokenizer* input, FileDescriptorProto* file) { 366 bool Parser::ParseTopLevelStatement(FileDescriptorProto* file) { 1056 bool Parser::ParsePackage(FileDescriptorProto* file) { [all...] |
command_line_interface.cc | 668 FileDescriptorProto file; [all...] |
/external/protobuf/java/src/main/java/com/google/protobuf/ |
Descriptors.java | 61 public FileDescriptorProto toProto() { return proto; } 208 public static FileDescriptor buildFrom(final FileDescriptorProto proto, 214 // FileDescriptorProto's tree and put all of the descriptors into the 227 "those listed in the FileDescriptorProto."); 233 "those listed in the FileDescriptorProto."); 243 * to {@code buildFrom} except that the {@code FileDescriptorProto} is 252 // protocol compiler embeds the FileDescriptorProto as a giant 255 // characters, each one representing a byte of the FileDescriptorProto's 274 FileDescriptorProto proto; 276 proto = FileDescriptorProto.parseFrom(descriptorBytes) [all...] |
/external/protobuf/java/src/test/java/com/google/protobuf/ |
DescriptorsTest.java | 35 import com.google.protobuf.DescriptorProtos.FileDescriptorProto; 433 FileDescriptorProto fileDescriptorProto = FileDescriptorProto.newBuilder() 447 Descriptors.FileDescriptor.buildFrom(fileDescriptorProto,
|
/external/protobuf/python/google/protobuf/internal/ |
descriptor_test.py | 309 descriptor_pb2.FileDescriptorProto,
|
/external/protobuf/src/google/protobuf/compiler/javamicro/ |
javamicro_file.cc | 95 FileDescriptorProto file_proto;
|
/external/protobuf/src/google/protobuf/compiler/javanano/ |
javanano_file.cc | 95 FileDescriptorProto file_proto;
|
/external/protobuf/src/google/protobuf/compiler/java/ |
java_file.cc | 245 // Embed the descriptor. We simply serialize the entire FileDescriptorProto 255 FileDescriptorProto file_proto;
|
/external/protobuf/src/google/protobuf/compiler/cpp/ |
cpp_file.cc | 381 // FileDescriptorProto for this .proto file to the global DescriptorPool 526 // Embed the descriptor. We simply serialize the entire FileDescriptorProto 529 FileDescriptorProto file_proto;
|