HomeSort by relevance Sort by last modified time
    Searched refs:DescriptorPool (Results 1 - 25 of 34) sorted by null

1 2

  /external/protobuf/src/google/protobuf/
dynamic_message.h 49 class DescriptorPool; // descriptor.h
71 // the DescriptorPool in which the exendee is defined.
75 // the given DescriptorPool.
81 DynamicMessageFactory(const DescriptorPool* pool);
87 // d->file()->pool() == DescriptorPool::generated_pool(),
115 const DescriptorPool* pool_;
descriptor.cc 156 // A DescriptorPool contains a bunch of hash_maps to implement the
305 // DescriptorPool::Tables
307 class DescriptorPool::Tables {
345 // This implements the body of DescriptorPool::Find*ByName(). It should
346 // really be a private method of DescriptorPool, but that would require
350 const DescriptorPool* pool, const string& name) const;
426 // FileDescriptorTables and DescriptorPool::Tables are interleaved below.
481 DescriptorPool::Tables::Tables()
486 DescriptorPool::Tables::~Tables() {
502 void DescriptorPool::Tables::Checkpoint()
    [all...]
descriptor.h 74 class DescriptorPool;
107 // Use DescriptorPool to construct your own descriptors.
271 // Must be constructed using DescriptorPool.
288 // - Given a DescriptorPool, call DescriptorPool::FindExtensionByNumber().
292 // Use DescriptorPool to construct your own descriptors.
532 // Must be constructed using DescriptorPool.
541 // for a generated enum type, call TypeName_descriptor(). Use DescriptorPool
609 // Must be constructed using DescriptorPool.
622 // EnumDescriptor::FindValueByNumber(). Use DescriptorPool to construc
    [all...]
descriptor_database.h 58 // This is useful if you want to create a DescriptorPool which loads
61 // calling DescriptorPool::BuildFile() for each one. Instead, a DescriptorPool
313 DescriptorPoolDatabase(const DescriptorPool& pool);
328 const DescriptorPool& pool_;
generated_message_reflection.h 49 class DescriptorPool;
116 // pool: DescriptorPool to search for extension definitions. Only
128 const DescriptorPool* pool,
285 const DescriptorPool* descriptor_pool_;
dynamic_message_unittest.cc 58 DescriptorPool pool_;
message.cc 247 GOOGLE_DCHECK_EQ(descriptor->file()->pool(), DescriptorPool::generated_pool())
269 if (type->file()->pool() != DescriptorPool::generated_pool()) return NULL;
descriptor_unittest.cc 246 DescriptorPool pool_;
395 // All messages created from the same DescriptorPool share the same lookup
464 DescriptorPool pool_;
508 // All messages in the same DescriptorPool share a single lookup table for
714 DescriptorPool pool_;
    [all...]
dynamic_message.cc 174 const DescriptorPool* pool; // The factory's DescriptorPool.
441 DynamicMessageFactory::DynamicMessageFactory(const DescriptorPool* pool)
461 type->file()->pool() == DescriptorPool::generated_pool()) {
extension_set_heavy.cc 50 // DescriptorPool, using the given MessageFactory to construct sub-objects.
54 DescriptorPoolExtensionFinder(const DescriptorPool* pool,
63 const DescriptorPool* pool_;
69 const DescriptorPool* pool,
message_unittest.cc 269 DescriptorPool pool;
  /external/protobuf/src/google/protobuf/compiler/
importer.h 67 // code locations for error reporting. However, when a DescriptorPool wraps
69 // of the database is called at a time, even if the DescriptorPool is used
89 // Gets a DescriptorPool::ErrorCollector which records errors to the
92 // from the information given to it by the DescriptorPool.
93 DescriptorPool::ErrorCollector* GetValidationErrorCollector() {
112 class LIBPROTOBUF_EXPORT ValidationErrorCollector : public DescriptorPool::ErrorCollector {
149 // the file is already in the DescriptorPool, the existing FileDescriptor
150 // will be returned. The FileDescriptor is property of the DescriptorPool,
160 // DescriptorPool so that they can be cross-linked).
163 // The DescriptorPool in which all imported FileDescriptors and thei
    [all...]
parser.h 79 // and column numbers for errors reported by DescriptorPool during validation.
186 DescriptorPool::ErrorCollector::ErrorLocation location,
192 DescriptorPool::ErrorCollector::ErrorLocation location);
303 // DescriptorPool when validating descriptors -- to line and column numbers
316 DescriptorPool::ErrorCollector::ErrorLocation location,
321 DescriptorPool::ErrorCollector::ErrorLocation location,
329 pair<const Message*, DescriptorPool::ErrorCollector::ErrorLocation>,
parser.cc 255 DescriptorPool::ErrorCollector::ErrorLocation location,
264 DescriptorPool::ErrorCollector::ErrorLocation location) {
396 RecordLocation(message, DescriptorPool::ErrorCollector::NAME);
449 RecordLocation(field, DescriptorPool::ErrorCollector::TYPE);
460 RecordLocation(field, DescriptorPool::ErrorCollector::NAME);
466 RecordLocation(field, DescriptorPool::ErrorCollector::NUMBER);
479 RecordLocation(group, DescriptorPool::ErrorCollector::NAME,
530 RecordLocation(field, DescriptorPool::ErrorCollector::DEFAULT_VALUE);
679 DescriptorPool::ErrorCollector::OPTION_NAME);
691 DescriptorPool::ErrorCollector::OPTION_VALUE)
    [all...]
command_line_interface.h 52 class DescriptorPool; // descriptor.h
223 bool EncodeOrDecode(const DescriptorPool* pool);
231 // depends on it, so that you can call DescriptorPool::BuildFile() on them
plugin.cc 106 DescriptorPool pool;
plugin.pb.cc 35 ::google::protobuf::DescriptorPool::generated_pool()->FindFileByName(
52 ::google::protobuf::DescriptorPool::generated_pool(),
68 ::google::protobuf::DescriptorPool::generated_pool(),
85 ::google::protobuf::DescriptorPool::generated_pool(),
126 ::google::protobuf::DescriptorPool::InternalAddGeneratedFile(
    [all...]
parser_unittest.cc 72 class MockValidationErrorCollector : public DescriptorPool::ErrorCollector {
147 // Parse the text as a file and validate it (with a DescriptorPool), and
169 DescriptorPool pool_;
    [all...]
  /external/protobuf/src/google/protobuf/io/
coded_stream.h 123 class DescriptorPool;
376 // The given DescriptorPool must contain m->GetDescriptor(). It is not
385 // 2) Use a DescriptorPool which has m->GetDescriptor()->pool() as an
386 // "underlay". Read the documentation for DescriptorPool for more
398 // DescriptorPool::generated_pool(), the factory MUST return the same
423 void SetExtensionRegistry(DescriptorPool* pool, MessageFactory* factory);
425 // Get the DescriptorPool set via SetExtensionRegistry(), or NULL if no pool
427 const DescriptorPool* GetExtensionPool();
481 const DescriptorPool* extension_pool_;
    [all...]
  /hardware/ril/mock-ril/src/cpp/
protobuf_v8.cpp 46 using google::protobuf::DescriptorPool;
101 Schema(Handle<Object> self, const DescriptorPool* pool)
112 if (pool_ != DescriptorPool::generated_pool())
484 const DescriptorPool* pool_;
505 DescriptorPool::generated_pool()))->handle_;
516 DescriptorPool* pool = new DescriptorPool;
msgheader.pb.cpp 27 ::google::protobuf::DescriptorPool::generated_pool()->FindFileByName(
45 ::google::protobuf::DescriptorPool::generated_pool(),
77 ::google::protobuf::DescriptorPool::InternalAddGeneratedFile(
  /external/protobuf/java/src/main/java/com/google/protobuf/
Descriptors.java 215 // DescriptorPool's lookup tables. In the linking step, we look up all
216 // type references in the DescriptorPool, so that, for example, a
220 final DescriptorPool pool = new DescriptorPool(dependencies);
329 private final DescriptorPool pool;
333 final DescriptorPool pool)
510 new DescriptorPool.DescriptorIntPair(this, number));
    [all...]
  /hardware/ril/mock-ril/src/generated/cpp/
msgheader.pb.cpp 27 ::google::protobuf::DescriptorPool::generated_pool()->FindFileByName(
45 ::google::protobuf::DescriptorPool::generated_pool(),
77 ::google::protobuf::DescriptorPool::InternalAddGeneratedFile(
ctrl.pb.cpp 44 ::google::protobuf::DescriptorPool::generated_pool()->FindFileByName(
59 ::google::protobuf::DescriptorPool::generated_pool(),
74 ::google::protobuf::DescriptorPool::generated_pool(),
89 ::google::protobuf::DescriptorPool::generated_pool(),
105 ::google::protobuf::DescriptorPool::generated_pool(),
120 ::google::protobuf::DescriptorPool::generated_pool(),
135 ::google::protobuf::DescriptorPool::generated_pool(),
190 ::google::protobuf::DescriptorPool::InternalAddGeneratedFile(
    [all...]
ril.pb.cpp 96 ::google::protobuf::DescriptorPool::generated_pool()->FindFileByName(
118 ::google::protobuf::DescriptorPool::generated_pool(),
138 ::google::protobuf::DescriptorPool::generated_pool(),
156 ::google::protobuf::DescriptorPool::generated_pool(),
183 ::google::protobuf::DescriptorPool::generated_pool(),
199 ::google::protobuf::DescriptorPool::generated_pool(),
215 ::google::protobuf::DescriptorPool::generated_pool(),
232 ::google::protobuf::DescriptorPool::generated_pool(),
247 ::google::protobuf::DescriptorPool::generated_pool(),
262 ::google::protobuf::DescriptorPool::generated_pool()
    [all...]

Completed in 331 milliseconds

1 2