Searched refs:typedef (Results 1 – 16 of 16) sorted by relevance
/system/media/camera/docs/ |
D | metadata_template.mako | 33 % for typedef in metadata.types: 34 <typedef name="${typedef.name}"> 35 % for (language, klass) in typedef.languages.iteritems(): 38 </typedef> 111 % if prop.typedef is not None: 112 typedef="${prop.typedef.name}"
|
D | metadata_helpers.py | 156 if entry.typedef is None: 159 typeName = entry.typedef.name 183 (entry.name, entry.type, entry.typedef) 402 typedef = entry.typedef 421 name = typedef.languages['java'] 460 if entry.typedef: 525 if entry.typedef: 752 if entry.enum and not (entry.typedef and entry.typedef.languages.get('java')): 759 if entry.enum and not (entry.typedef and entry.typedef.languages.get('java')):
|
D | CameraMetadataEnums.mako | 61 and not (entry.typedef and entry.typedef.languages.get('java')) \ 71 and not (entry.typedef and entry.typedef.languages.get('java')) \
|
D | camera_metadata_tags.mako | 50 typedef enum camera_metadata_section { 63 typedef enum camera_metadata_section_start { 76 typedef enum camera_metadata_tag { 99 typedef enum camera_metadata_enum_${csym(entry.name).lower()} {
|
D | ndk_camera_metadata_tags.mako | 51 typedef enum acamera_metadata_section { 63 typedef enum acamera_metadata_section_start { 73 typedef enum acamera_metadata_tag { 128 typedef enum acamera_metadata_enum_${csym(ndk(entry.name)).lower()} {
|
D | CameraMetadataKeys.mako | 46 % if entry.enum and not (entry.typedef and entry.typedef.languages.get('java')):
|
D | html.mako | 279 …type_visibility"> [${prop.applied_visibility}${" as %s" %prop.typedef.name if prop.typedef else ""…
|
D | metadata_model.py | 1246 def typedef(self): member in Entry
|
/system/tpm/trunks/generator/ |
D | generator_test.py | 34 typedef = generator.Typedef('int', 'INT') 39 typedef.OutputForward(out_file, defined_types, typemap) 41 typedef.Output(out_file, defined_types, typemap) 59 typedef = generator.Typedef('int', 'INT') 61 typemap = {'INT': typedef}
|
D | generator.py | 1099 typedef = Typedef(constant_type, constant_typename) 1100 typemap[constant_typename] = typedef 1101 types.append(typedef) 2000 for typedef in types: 2001 typedef.Output(out_file, defined_types, typemap) 2016 for typedef in types: 2017 out_file.write(_SERIALIZE_DECLARATION % {'type': typedef.new_type}) 2055 for typedef in types: 2056 typedef.OutputSerialize(out_file, serialized_types, typemap)
|
D | raw_structures.txt | 1211 storage type other than int so the method of using a combination of typedef and #define is used. 1244 typedef 1307 typedef unsigned short 1309 typedef UINT16 1311 typedef unsigned long 1313 typedef UINT32 1355 typedef enum { 1509 typedef struct { 1565 typedef struct { 1753 typedef union { [all …]
|
D | raw_structures_fixed.txt | 1211 storage type other than int so the method of using a combination of typedef and #define is used. 1244 typedef 1307 typedef unsigned short 1309 typedef UINT16 1311 typedef unsigned long 1313 typedef UINT32 1355 typedef enum { 1509 typedef struct { 1565 typedef struct { 1753 typedef union { [all …]
|
/system/bt/ |
D | Android.mk | 39 -Wno-typedef-redefinition \
|
/system/bt/doc/ |
D | style_guide.md | 120 typedef struct { 136 typedef struct { 212 typedef struct alarm_t alarm_t; 213 typedef struct list_t list_t;
|
/system/media/audio_utils/ |
D | Doxyfile.orig | 356 # with only public data fields or simple typedef fields will be shown inline in 365 # When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or 366 # enum is documented as struct, union, or enum with the name of the typedef. So 367 # typedef struct TypeS {} TypeT, will appear in the documentation as a struct 368 # with name TypeT. When disabled the typedef will appear as a member of a file, 371 # types are typedef'ed and only the typedef is referenced, never the tag name.
|
D | Doxyfile | 356 # with only public data fields or simple typedef fields will be shown inline in 365 # When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or 366 # enum is documented as struct, union, or enum with the name of the typedef. So 367 # typedef struct TypeS {} TypeT, will appear in the documentation as a struct 368 # with name TypeT. When disabled the typedef will appear as a member of a file, 371 # types are typedef'ed and only the typedef is referenced, never the tag name.
|