Home
last modified time | relevance | path

Searched refs:enum (Results 1 – 25 of 29) sorted by relevance

12

/system/media/camera/docs/
Dcamera_metadata_tags.mako32 if entry.enum:
33 type = 'enum'
42 /** TODO: Nearly every enum in this file needs a description */
50 typedef enum camera_metadata_section {
60 * Hierarchy positions in enum space. All vendor extension tags must be
63 typedef enum camera_metadata_section_start {
71 * Main enum for defining camera metadata tags. New entries must always go
76 typedef enum camera_metadata_tag {
97 % if entry.enum:
99 typedef enum camera_metadata_enum_${csym(entry.name).lower()} {
[all …]
Dndk_camera_metadata_tags.mako44 if entry.enum:
45 type += ' (enum)'
51 typedef enum acamera_metadata_section {
61 * Hierarchy positions in enum space.
63 typedef enum acamera_metadata_section_start {
71 * Main enum for camera metadata tags.
73 typedef enum acamera_metadata_tag {
126 % if entry.enum:
128 typedef enum acamera_metadata_enum_${csym(ndk(entry.name)).lower()} {
132 % for val in entry.enum.values:
[all …]
Dmetadata_validate.py257 enum = entry.attrs.get('enum')
258 if enum and enum == 'true':
259 if entry.enum is None:
266 for value in entry.enum.find_all('value'):
278 if entry.enum:
DCameraMetadataEnums.mako18 ## This section of enum integer definitions is inserted into
21 * The enum values below this point are generated from metadata
26 ## Generate an enum's integers
32 % for value in entry.enum.values:
60 % if entry.enum \
70 % if entry.enum \
Dmetadata_template.mako101 % if prop.enum:
102 enum="true"
133 % if prop.enum:
134 <enum>
135 % for value in prop.enum.values:
158 </enum>
Dcamera_metadata_tag_info.mako68 const char *msg = "error: not an enum";
75 % if entry.enum:
77 % for val in entry.enum.values:
84 msg = "error: enum value out of range";
Dmetadata_helpers_test.py72 def compare_values_against_list(expected_list, enum): argument
75 enum_calculate_value_string(list(enum.values)[idx]))
DCameraMetadataKeys.mako46 % if entry.enum and not (entry.typedef and entry.typedef.languages.get('java')):
47 % for value in entry.enum.values:
Dmetadata_helpers.py466 if not java_type and entry.enum and metadata_type == 'byte':
752 if entry.enum and not (entry.typedef and entry.typedef.languages.get('java')):
754 for value in entry.enum.values:
759 if entry.enum and not (entry.typedef and entry.typedef.languages.get('java')):
Dhtml.mako61 .entry_type_name_enum:after { color: #669900; font-weight: bold; content:" (enum)" }
259 % if prop.enum:
297 % if prop.enum:
299 % for value in prop.enum.values:
Dmetadata_parser_xml.py214 for value in entry.enum.find_all('value'):
Dmetadata_model.py1250 def enum(self): member in Entry
1254 if self.enum:
1255 yield self.enum
/system/tpm/attestation/common/
Dproto_print.py283 def GenerateEnumPrinter(enum, header_file, impl_file): argument
293 std::string GetProtoDebugString(%(name)s value);""" % {'name': enum.name}
300 """ % {'name': enum.name}
312 for value_name in enum.values:
407 for enum in enums:
408 GenerateEnumPrinter(enum, header_file, impl_file)
Dcommon.proto10 enum KeyType {
16 enum KeyUsage {
22 enum CertificateProfile {
Dattestation_ca.proto40 enum ResponseStatus {
188 enum KeyProfile {
Dinterface.proto23 enum AttestationStatus {
/system/bt/osi/src/protos/
Dbluetooth.proto33 enum DeviceType {
57 enum ConnectionTechnologyType {
135 enum WakeEventType {
164 enum ScanTechnologyType {
177 enum ScanEventType {
/system/connectivity/shill/mobile_operator_db/
Dmobile_operator_db.proto24 enum Type {
49 enum Plan {
63 enum Method {
80 enum ProviderType {
/system/tpm/tpm_manager/common/
Dtpm_manager_status.proto20 enum TpmManagerStatus {
/system/core/metricsd/uploader/proto/
Dchrome_user_metrics_extension.proto36 enum Product {
43 // (though they still need to add the new product to the server-side enum).
Dsystem_profile.proto63 enum Channel {
210 enum Type {
246 enum VendorIDSource {
302 enum ConnectionType {
318 enum WifiPHYLayerProtocol {
339 enum SecurityMode {
405 enum InstallResult {
591 enum AVDeviceType {
619 enum AudioFormat {
751 // corresponding enum in chrome/browser/metrics/extensions_metrics_provider.cc
[all …]
/system/connectivity/shill/shims/protos/
Dcrypto_util.proto23 enum ReturnCode {
/system/extras/perfprofd/
Dperf_profile.proto77 enum EventType {
/system/bt/doc/
Dstyle_guide.md61 * use `enum` for enumerations, not a collection of `#define`s
/system/update_engine/
Dupdate_metadata.proto150 enum Type {

12