OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FindEnumTypeByName
(Results
1 - 13
of
13
) sorted by null
/external/protobuf/python/google/protobuf/internal/
symbol_database_test.py
93
self._Database().pool.
FindEnumTypeByName
(
97
self._Database().pool.
FindEnumTypeByName
(
descriptor_pool_test.py
199
enum1 = self.pool.
FindEnumTypeByName
(
205
nested_enum1 = self.pool.
FindEnumTypeByName
(
213
enum2 = self.pool.
FindEnumTypeByName
(
219
nested_enum2 = self.pool.
FindEnumTypeByName
(
229
self.pool.
FindEnumTypeByName
('Does not exist')
562
pool.
FindEnumTypeByName
(
567
pool.
FindEnumTypeByName
(
573
pool.
FindEnumTypeByName
(
656
pool.
FindEnumTypeByName
('protobuf_unittest.ForeignEnum'),
generator_test.py
334
symbol_database.Default().pool.
FindEnumTypeByName
(
338
symbol_database.Default().pool.
FindEnumTypeByName
(
/external/protobuf/python/google/protobuf/pyext/
descriptor_pool.h
140
PyObject*
FindEnumTypeByName
(PyDescriptorPool* self, PyObject* arg);
descriptor_pool.cc
274
PyObject*
FindEnumTypeByName
(PyDescriptorPool* self, PyObject* arg) {
282
self->pool->
FindEnumTypeByName
(string(name, name_size));
373
self->pool->
FindEnumTypeByName
(enum_descriptor->full_name())) {
490
{ "
FindEnumTypeByName
", (PyCFunction)
FindEnumTypeByName
, METH_O,
descriptor_containers.cc
[
all
...]
descriptor.cc
566
_GetDescriptor(self)->
FindEnumTypeByName
(enum_name);
[
all
...]
/external/protobuf/src/google/protobuf/
descriptor_unittest.cc
366
TEST_F(FileDescriptorTest,
FindEnumTypeByName
) {
367
EXPECT_EQ(foo_enum_, foo_file_->
FindEnumTypeByName
("FooEnum"));
368
EXPECT_EQ(bar_enum_, bar_file_->
FindEnumTypeByName
("BarEnum"));
370
EXPECT_TRUE(foo_file_->
FindEnumTypeByName
("BarEnum") == NULL);
371
EXPECT_TRUE(bar_file_->
FindEnumTypeByName
("FooEnum") == NULL);
372
EXPECT_TRUE(baz_file_->
FindEnumTypeByName
("FooEnum") == NULL);
374
EXPECT_TRUE(foo_file_->
FindEnumTypeByName
("NoSuchEnum") == NULL);
375
EXPECT_TRUE(foo_file_->
FindEnumTypeByName
("FooMessage") == NULL);
[
all
...]
descriptor.h
277
const EnumDescriptor*
FindEnumTypeByName
(const string& name) const;
[
all
...]
descriptor.cc
[
all
...]
/external/protobuf/src/google/protobuf/util/
type_resolver_util.cc
107
const EnumDescriptor* descriptor = pool_->
FindEnumTypeByName
(type_name);
/external/protobuf/python/google/protobuf/
descriptor_pool.py
258
def
FindEnumTypeByName
(self, full_name):
descriptor.py
602
return _message.default_pool.
FindEnumTypeByName
(full_name)
[
all
...]
Completed in 1264 milliseconds