HomeSort by relevance Sort by last modified time
    Searched refs:enum_type (Results 51 - 75 of 122) sorted by null

1 23 4 5

  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
parser.h 288 bool ParseEnumDefinition(EnumDescriptorProto* enum_type,
306 bool ParseEnumBlock(EnumDescriptorProto* enum_type,
parser.cc     [all...]
  /external/protobuf/src/google/protobuf/compiler/python/
python_generator.cc 311 // TODO(falk): Also print options and fix the message_type, enum_type,
324 const EnumDescriptor& enum_descriptor = *file_->enum_type(i);
396 PrintEnum(*descriptor.enum_type(i));
560 *message_descriptor.enum_type(i));
652 // sets the message_type and enum_type of all message and enum fields to point
672 const EnumDescriptor& enum_descriptor = *descriptor.enum_type(i);
677 // Sets any necessary message_type and enum_type attributes
698 const EnumDescriptor* enum_type = field.enum_type(); local
699 if (enum_type) {
    [all...]
  /prebuilts/gcc/darwin-x86/aarch64/aarch64-linux-android-4.8/share/gdb/python/gdb/
printing.py 245 def __init__(self, enum_type):
246 super(FlagEnumerationPrinter, self).__init__(enum_type)
  /prebuilts/gcc/darwin-x86/aarch64/aarch64-linux-android-4.9/share/gdb/python/gdb/
printing.py 245 def __init__(self, enum_type):
246 super(FlagEnumerationPrinter, self).__init__(enum_type)
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.8/share/gdb/python/gdb/
printing.py 245 def __init__(self, enum_type):
246 super(FlagEnumerationPrinter, self).__init__(enum_type)
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.8/share/gdb/python/gdb/
printing.py 245 def __init__(self, enum_type):
246 super(FlagEnumerationPrinter, self).__init__(enum_type)
  /prebuilts/gcc/darwin-x86/mips/mips64el-linux-android-4.9/share/gdb/python/gdb/
printing.py 245 def __init__(self, enum_type):
246 super(FlagEnumerationPrinter, self).__init__(enum_type)
  /prebuilts/gcc/darwin-x86/x86/x86_64-linux-android-4.8/share/gdb/python/gdb/
printing.py 245 def __init__(self, enum_type):
246 super(FlagEnumerationPrinter, self).__init__(enum_type)
  /prebuilts/gcc/linux-x86/aarch64/aarch64-linux-android-4.8/share/gdb/python/gdb/
printing.py 245 def __init__(self, enum_type):
246 super(FlagEnumerationPrinter, self).__init__(enum_type)
  /prebuilts/gcc/linux-x86/aarch64/aarch64-linux-android-4.9/share/gdb/python/gdb/
printing.py 245 def __init__(self, enum_type):
246 super(FlagEnumerationPrinter, self).__init__(enum_type)
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.8/share/gdb/python/gdb/
printing.py 245 def __init__(self, enum_type):
246 super(FlagEnumerationPrinter, self).__init__(enum_type)
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.8/share/gdb/python/gdb/
printing.py 245 def __init__(self, enum_type):
246 super(FlagEnumerationPrinter, self).__init__(enum_type)
  /prebuilts/gcc/linux-x86/mips/mips64el-linux-android-4.9/share/gdb/python/gdb/
printing.py 245 def __init__(self, enum_type):
246 super(FlagEnumerationPrinter, self).__init__(enum_type)
  /prebuilts/gcc/linux-x86/x86/x86_64-linux-android-4.8/share/gdb/python/gdb/
printing.py 245 def __init__(self, enum_type):
246 super(FlagEnumerationPrinter, self).__init__(enum_type)
  /prebuilts/gcc/linux-x86/x86/x86_64-linux-android-4.9/share/gdb/python/gdb/
printing.py 245 def __init__(self, enum_type):
246 super(FlagEnumerationPrinter, self).__init__(enum_type)
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/java/
java_file.cc 151 if (file_->enum_type(i)->name() == classname_) {
227 EnumGenerator(file_->enum_type(i)).Generate(printer);
458 file_->enum_type(i),
java_extension.cc 116 singular_type = ClassName(descriptor->enum_type());
  /external/chromium_org/third_party/protobuf/src/google/protobuf/
descriptor.cc 4697 const EnumDescriptor* enum_type = option_field->enum_type(); local
    [all...]
descriptor_unittest.cc 228 foo_enum_ = foo_file_->enum_type(0);
239 bar_enum_ = bar_file_->enum_type(0);
445 enum_ = foo_file_->enum_type(0);
640 EXPECT_TRUE(foo_->enum_type() == NULL);
641 EXPECT_TRUE(baz_->enum_type() == NULL);
642 EXPECT_TRUE(qux_->enum_type() == NULL);
644 EXPECT_EQ(enum_, bar_->enum_type());
1711 const EnumDescriptor* enum_type = file->enum_type(0); local
    [all...]
generated_message_reflection.cc 116 " Expected : " << field->enum_type()->full_name() << "\n"
134 if (value->type() != field->enum_type()) \
    [all...]
  /external/chromium_org/tools/json_schema_compiler/
idl_schema_test.py 240 enum_type = getType(schema, 'enum')
242 enum_type['enum'])
  /external/protobuf/src/google/protobuf/
descriptor_unittest.cc 226 foo_enum_ = foo_file_->enum_type(0);
237 bar_enum_ = bar_file_->enum_type(0);
443 enum_ = foo_file_->enum_type(0);
638 EXPECT_TRUE(foo_->enum_type() == NULL);
639 EXPECT_TRUE(baz_->enum_type() == NULL);
640 EXPECT_TRUE(qux_->enum_type() == NULL);
642 EXPECT_EQ(enum_, bar_->enum_type());
1642 const EnumDescriptor* enum_type = file->enum_type(0); local
    [all...]
  /external/chromium_org/third_party/protobuf/python/google/protobuf/
text_format.py 125 enum_value = field.enum_type.values_by_number.get(value, None)
717 enum_descriptor = field.enum_type
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/cpp/
cpp_file.cc 73 new EnumGenerator(file->enum_type(i), options));
349 "name", ClassName(file_->enum_type(i), false));

Completed in 1474 milliseconds

1 23 4 5