Home
last modified time | relevance | path

Searched refs:typedef (Results 1 – 16 of 16) sorted by relevance

/system/media/camera/docs/
Dmetadata_template.mako33 % 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}"
Dmetadata_helpers.py156 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')):
DCameraMetadataEnums.mako61 and not (entry.typedef and entry.typedef.languages.get('java')) \
71 and not (entry.typedef and entry.typedef.languages.get('java')) \
Dcamera_metadata_tags.mako50 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()} {
Dndk_camera_metadata_tags.mako51 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()} {
DCameraMetadataKeys.mako46 % if entry.enum and not (entry.typedef and entry.typedef.languages.get('java')):
Dhtml.mako279 …type_visibility"> [${prop.applied_visibility}${" as %s" %prop.typedef.name if prop.typedef else ""…
Dmetadata_model.py1246 def typedef(self): member in Entry
/system/tpm/trunks/generator/
Dgenerator_test.py34 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}
Dgenerator.py1099 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)
Draw_structures.txt1211 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 …]
Draw_structures_fixed.txt1211 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/
DAndroid.mk39 -Wno-typedef-redefinition \
/system/bt/doc/
Dstyle_guide.md120 typedef struct {
136 typedef struct {
212 typedef struct alarm_t alarm_t;
213 typedef struct list_t list_t;
/system/media/audio_utils/
DDoxyfile.orig356 # 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.
DDoxyfile356 # 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.