/prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/share/gdb/python/gdb/ |
types.py | 72 def make_enum_dict(enum_type): 76 enum_type: The enum to compute the dictionary for. 85 if enum_type.code != gdb.TYPE_CODE_ENUM: 88 for field in enum_type.fields():
|
/prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/share/gdb/python/gdb/ |
types.py | 72 def make_enum_dict(enum_type): 76 enum_type: The enum to compute the dictionary for. 85 if enum_type.code != gdb.TYPE_CODE_ENUM: 88 for field in enum_type.fields():
|
/prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/share/gdb/python/gdb/ |
types.py | 72 def make_enum_dict(enum_type): 76 enum_type: The enum to compute the dictionary for. 85 if enum_type.code != gdb.TYPE_CODE_ENUM: 88 for field in enum_type.fields():
|
/prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/share/gdb/python/gdb/ |
types.py | 72 def make_enum_dict(enum_type): 76 enum_type: The enum to compute the dictionary for. 85 if enum_type.code != gdb.TYPE_CODE_ENUM: 88 for field in enum_type.fields():
|
/external/chromium_org/third_party/protobuf/python/google/protobuf/ |
descriptor_database.py | 55 for enum in file_desc_proto.enum_type: 119 for enum_type in desc_proto.enum_type: 120 yield '.'.join((message_name, enum_type.name))
|
descriptor_pool.py | 208 symbols = list(self._ExtractEnums(dep_proto.enum_type, package)) 216 for enum_type in file_proto.enum_type: 217 self._ConvertEnumDescriptor(enum_type, file_proto.package, 262 for enum in desc_proto.enum_type] 368 enum_type=None, 378 """Sets the field's type, cpp_type, message_type and enum_type. 409 field_desc.enum_type = desc 424 field_desc.default_value = field_desc.enum_type.values_by_name[ 474 for symbol in self._ExtractEnums(desc_proto.enum_type, message_name) [all...] |
/external/chromium_org/tools/json_schema_compiler/test/ |
enums_unittest.cc | 15 EnumType enum_type; local 18 EXPECT_TRUE(EnumType::Populate(value, &enum_type)); 19 EXPECT_EQ(EnumType::TYPE_ONE, enum_type.type); 20 EXPECT_TRUE(value.Equals(enum_type.ToValue().get())); 23 EnumType enum_type; local 26 EXPECT_FALSE(EnumType::Populate(value, &enum_type)); 110 OptionalEnumType enum_type; local 113 EXPECT_TRUE(OptionalEnumType::Populate(value, &enum_type)); 114 EXPECT_EQ(OptionalEnumType::TYPE_TWO, enum_type.type); 115 EXPECT_TRUE(value.Equals(enum_type.ToValue().get())) 118 OptionalEnumType enum_type; local 125 OptionalEnumType enum_type; local [all...] |
/external/chromium_org/third_party/protobuf/python/google/protobuf/internal/ |
enum_type_wrapper.py | 46 def __init__(self, enum_type): 48 self._enum_type = enum_type 49 self.DESCRIPTOR = enum_type;
|
/external/chromium/chrome/browser/sync/protocol/ |
proto_enum_conversions.cc | 14 #define ASSERT_ENUM_BOUNDS(enum_parent, enum_type, enum_min, enum_max) \ 15 COMPILE_ASSERT(enum_parent::enum_type##_MIN == enum_parent::enum_min, \ 16 enum_type##_MIN_not_##enum_min); \ 17 COMPILE_ASSERT(enum_parent::enum_type##_MAX == enum_parent::enum_max, \ 18 enum_type##_MAX_not_##enum_max);
|
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/ |
check_injected_webgl_calls_info.py | 106 for enum_type in enum_types: 107 if not enum_type in argument_types: 109 result[enum_type[2:]] = [i for i in range(len(argument_types)) if argument_types[i] == enum_type]
|
/prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.7/share/gdb/python/gdb/ |
types.py | 72 def make_enum_dict(enum_type): 76 enum_type: The enum to compute the dictionary for. 85 if enum_type.code != gdb.TYPE_CODE_ENUM: 88 for field in enum_type.fields():
|
/prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.7/share/gdb/python/gdb/ |
types.py | 72 def make_enum_dict(enum_type): 76 enum_type: The enum to compute the dictionary for. 85 if enum_type.code != gdb.TYPE_CODE_ENUM: 88 for field in enum_type.fields():
|
/external/clang/test/CodeGenCXX/ |
value-init.cpp | 27 enum enum_type { negative_number = -1, magic_number = 42 }; enum 31 enum_type m_enum;
|
/external/chromium_org/tools/json_schema_compiler/ |
ppapi_generator_test.py | 137 enum_type = self.namespace.types['EnumType'] 139 self.generator.EnumValueName(enum_type.enum_values[0], 140 enum_type)) 142 self.generator.EnumValueName(enum_type.enum_values[1], 143 enum_type)) 144 enum_type = self.namespace.types['AnotherEnumType'] 146 self.generator.EnumValueName(enum_type.enum_values[0], 147 enum_type)) 149 self.generator.EnumValueName(enum_type.enum_values[1], 150 enum_type)) [all...] |
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/cpp/ |
cpp_extension.cc | 71 type_traits_.append(ClassName(descriptor_->enum_type(), true)); 73 type_traits_.append(ClassName(descriptor_->enum_type(), true)); 187 "type", ClassName(descriptor_->enum_type(), true));
|
/external/protobuf/src/google/protobuf/compiler/cpp/ |
cpp_extension.cc | 71 type_traits_.append(ClassName(descriptor_->enum_type(), true)); 73 type_traits_.append(ClassName(descriptor_->enum_type(), true)); 187 "type", ClassName(descriptor_->enum_type(), true));
|
/external/protobuf/src/google/protobuf/compiler/java/ |
java_enum_field.cc | 61 (*variables)["type"] = ClassName(descriptor->enum_type()); 168 return ClassName(descriptor_->enum_type()); 367 return ClassName(descriptor_->enum_type());
|
java_extension.cc | 104 vars["type"] = ClassName(descriptor_->enum_type()); 154 vars["type"] = ClassName(descriptor_->enum_type()); 155 vars["enum_map"] = ClassName(descriptor_->enum_type()) +
|
/frameworks/compile/mclinker/include/mcld/ADT/ |
Flags.h | 22 typedef Enum enum_type; typedef in class:mcld::Flags
|
/external/chromium_org/sync/protocol/ |
proto_enum_conversions.cc | 14 #define ASSERT_ENUM_BOUNDS(enum_parent, enum_type, enum_min, enum_max) \ 15 COMPILE_ASSERT(enum_parent::enum_type##_MIN == enum_parent::enum_min, \ 16 enum_type##_MIN_not_##enum_min); \ 17 COMPILE_ASSERT(enum_parent::enum_type##_MAX == enum_parent::enum_max, \ 18 enum_type##_MAX_not_##enum_max);
|
/external/protobuf/python/google/protobuf/ |
descriptor.py | 240 for enum_type in self.enum_types: 241 enum_type.containing_type = self 312 enum_type: (EnumDescriptor) If this field contains an enum, a 374 default_value, message_type, enum_type, containing_type, 396 self.enum_type = enum_type
|
/external/protobuf/src/google/protobuf/compiler/javamicro/ |
javamicro_enum_field.cc | 133 return ClassName(params_, descriptor_->enum_type()); 327 return ClassName(params_, descriptor_->enum_type());
|
/external/protobuf/src/google/protobuf/compiler/javanano/ |
javanano_enum_field.cc | 144 return ClassName(params_, descriptor_->enum_type()); 269 return ClassName(params_, descriptor_->enum_type());
|
/external/protobuf/src/google/protobuf/compiler/ |
parser.h | 217 bool ParseEnumDefinition(EnumDescriptorProto* enum_type); 227 bool ParseEnumBlock(EnumDescriptorProto* enum_type);
|
/external/clang/bindings/python/tests/cindex/ |
test_cursor.py | 160 enum_type = enum.enum_type 161 assert enum_type.kind == TypeKind.UINT 169 assert enum.enum_type.kind == TypeKind.LONGLONG
|