/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/scripts/ |
D | genvk.py | 156 conventions = APIConventions() 161 defaultAPIName = conventions.xml_api_name 178 conventions = conventions, 203 conventions = conventions, 221 conventions = conventions, 239 conventions = conventions, 263 conventions = conventions, 283 conventions = conventions, 305 conventions = conventions, 324 conventions = conventions, [all …]
|
D | genRef.py | 54 conventions.generated_include_path, 56 conventions.file_suffix) 65 conventions.generated_include_path, 66 type, name, conventions.file_suffix) 105 'include::{config}/copyright-ccby' + conventions.file_suffix + '[]', 238 conventions.extra_refpage_headers, 245 conventions.extra_refpage_body, 326 specName = conventions.api_name(specType) 327 specURL = conventions.specURL(specType) 481 specURL = conventions.specURL(pi.spec) [all …]
|
D | extensionmetadocgenerator.py | 40 self.conventions = generator.genOpts.conventions 87 elif supercededBy.startswith(self.conventions.api_version_prefix): 89 elif supercededBy.startswith(self.conventions.api_prefix): 102 self_is_KHR = self.name.startswith(self.conventions.KHR_prefix) 103 self_is_EXT = self.name.startswith(self.conventions.EXT_prefix) 104 other_is_KHR = other.name.startswith(self.conventions.KHR_prefix) 105 other_is_EXT = other.name.startswith(self.conventions.EXT_prefix) 142 specURL = self.conventions.specURL('api') 148 versionMatch = re.match(self.conventions.api_version_prefix + r'(\d+)_(\d+)', apiVersion) 155 xrefText = self.conventions.api_name() + ' ' + dottedVersion [all …]
|
D | generator.py | 151 conventions=None, argument 225 self.conventions = conventions 442 if self.genOpts.conventions is None: 573 if self.genOpts.conventions is None: 583 if self.genOpts.conventions.constFlagBits and groupElem.get('type') == 'bitmask': 808 self.conventions.generate_max_enum_in_docs): 883 if self.genOpts.conventions is None: 886 self.genOpts.conventions.should_insert_may_alias_macro(self.genOpts) 887 self.file_suffix = self.genOpts.conventions.file_suffix 900 self.conventions = genOpts.conventions [all …]
|
D | docgenerator.py | 157 self.result_type = genOpts.conventions.type_prefix + "Result" 244 write(self.genOpts.conventions.warning_comment, file=fp) 247 if self.genOpts.conventions.generate_index_terms: 248 if basename.startswith(self.conventions.command_prefix): 250 elif basename.startswith(self.conventions.type_prefix): 252 elif basename.startswith(self.conventions.api_prefix): 271 write(self.genOpts.conventions.warning_comment, file=fp) 288 write(self.conventions.warning_comment, file=fp) 302 write(self.conventions.warning_comment, file=fp) 392 if self.conventions.duplicate_aliased_structs: [all …]
|
D | validitygenerator.py | 12 from spec_tools.conventions import ProseListFormats as plf 92 return self.conventions.null 100 return self.conventions.structtype_member_name 108 return self.conventions.nextpointer_member_name 125 return self.conventions.makeProseList(elements, 146 return self.conventions.makeProseList(elements, 154 return ValidityCollection(entity_name, self.conventions) 157 if not genOpts.conventions: 160 self.conventions = genOpts.conventions 164 (x for x in (self.conventions.valid_pointer_prefix, 'pointer') if x)) [all …]
|
D | extdependency.py | 101 conventions = APIConventions() 103 registry_path = conventions.registry_path 105 api_name = conventions.xml_api_name 148 if not conventions.is_api_version_name(dep):
|
D | hostsyncgenerator.py | 47 write(self.genOpts.conventions.warning_comment, file=fp) 93 if self.genOpts.conventions.is_externsync_command(protoname):
|
D | __init__.py.docs | 14 # "conventions",
|
D | README.adoc | 17 * `conventions.py`, `vkconventions.py`, `apiconventions.py` - API-specific 18 parameters and formatting / style conventions used by generators. 36 * `conventions.py`, `vkconventions.py` - API-specific options used by
|
D | cgenerator.py | 229 if not self.genOpts.conventions.protectProtoComment: 243 if self.genOpts.conventions is None: 245 …is_core = self.featureName and self.featureName.startswith(self.conventions.api_prefix + 'VERSION_… 246 … if self.genOpts.conventions.writeFeature(self.featureExtraProtect, self.genOpts.filename):
|
D | xml_consistency.py | 207 conventions = APIConventions() 255 super().__init__(entity_db=db, conventions=conventions, 364 if param_name == self.conventions.nextpointer_member_name: 391 next_name = self.conventions.nextpointer_member_name
|
D | reflow.py | 42 conventions = APIConventions() variable 512 if file.endswith(conventions.file_suffix): 518 if subdir.lower() not in conventions.spec_no_reflow_dirs: 609 folder_to_reflow = conventions.spec_reflow_path
|
D | vkconventions.py | 13 from spec_tools.conventions import ConventionsBase
|
D | interfacedocgenerator.py | 101 filename = feature + self.genOpts.conventions.file_suffix
|
D | json_h_generator.py | 178 … if self.genOpts.conventions.writeFeature(self.featureExtraProtect, self.genOpts.filename):
|
D | spirvcapgenerator.py | 220 write(self.genOpts.conventions.warning_comment, file=fp)
|
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/scripts/spec_tools/ |
D | validity.py | 35 def __init__(self, entity_name=None, conventions=None, strict=True, verbose=False): argument 37 self.conventions = conventions 49 if extension_name and not extension_name.startswith(self.conventions.api_version_prefix): 51 self.conventions.formatExtension(extension_name), entity_preface, self.entity_name)
|
D | consistency_tools.py | 20 from .conventions import ConventionsBase 29 def __init__(self, entity_db, conventions: ConventionsBase, manual_types_to_codes=None, 61 self.conventions = conventions 126 return self.conventions.type_prefix in membertext 135 if self.conventions.type_prefix not in membertext: 180 return self.conventions.should_skip_checking_codes 233 supported = self.conventions.xml_api_name in supported_apis 338 if not name.startswith(self.conventions.type_prefix): 340 self.conventions.type_prefix) 346 members, self.conventions.structtype_member_name) [all …]
|
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/style/ |
D | introduction.adoc | 8 This document contains required procedures and conventions when writing 26 conventions must be followed. 27 If you have a strong desire to modify the procedures and conventions, such 53 for overall and fine-grained structure and conventions, normative 54 language use, API naming conventions, common words and phrases to use
|
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/appendices/ |
D | boilerplate.adoc | 64 [[boilerplate-platform-specific-calling-conventions]] 68 and compiler-specific default calling conventions to be used. 70 …e macro',type='freeform',anchor='boilerplate-platform-specific-calling-conventions',xrefs='VKAPI_C… 74 This macro controls calling conventions for C++11 and GCC/Clang-style 78 …desc='Vulkan function calling conventions macro',type='freeform',anchor='boilerplate-platform-spec… 82 This macro controls calling conventions for MSVC-style compilers. 85 …lkan function pointer calling conventions macro',type='freeform',anchor='boilerplate-platform-spec… 89 This macro also controls calling conventions, and typically has the same
|
D | vulkanscdeviations.adoc | 186 |Rationale |Vulkan SC maintains the Base Vulkan type conventions for 212 Vulkan SC maintains the Base Vulkan type conventions for 236 |Rationale |Vulkan SC maintains the Base Vulkan naming conventions for 249 |Rationale |Vulkan SC maintains the Base Vulkan type and naming conventions for 263 |Rationale |Vulkan SC maintains the Base Vulkan naming conventions for
|
D | VK_KHR_video_decode_h264.adoc | 52 conventions.
|
D | VK_NV_external_memory_sci_buf.adoc | 62 conventions (previous names retained as aliases), and drop const on
|
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/config/ |
D | README.adoc | 35 page, and has very restrictive naming conventions forcing the
|