/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/scripts/ |
D | doctransformer.py | 117 self.apiName = self.defaultApiName 151 self.apiName = self.defaultApiName 191 self.apiName = state.apiName 381 apiName = matches.group('entity_name') 382 if self.state.apiName != self.state.defaultApiName: 389 if not self.apiMatch(self.state.apiName, apiName): 392 self.state.apiName = apiName
|
D | genRef.py | 141 def seeAlsoList(apiName, explicitRefs=None, apiAliases=[]): argument 156 allApis.append(apiName) 537 ' * The ' + apiName + ' Specification.\n')) 583 desc = 'Unknown ' + apiName + ' flags type' 595 ' is an unknown ' + apiName + ' type, assumed to be a bitmask.\n')) 628 desc = apiName + ' object handle' 633 'by the ' + apiName + ' implementation. These handles are created or allocated\n', 634 'by the @@ TBD @@ function, and used by other ' + apiName + ' structures\n', 733 print('= ' + apiName + ' API Reference Pages', 755 [api.protos, 'protos', apiName + ' Commands'], [all …]
|
D | scriptgenerator.py | 30 def apiName(self, name): member in ScriptOutputGenerator 160 if not self.apiName(baseType) or not self.apiName(refType):
|
D | reg.py | 114 for apiName in [toApiName] + fromApiNames: 115 if apiName in supportedList: 146 for apiName in [toApiName] + fromApiNames: 149 if variant.get('requires') and variant.get('api') == apiName: 152 if apiName in variant.get('api').split(',') and bestMatchApi is None: 167 def stripNonmatchingAPIs(tree, apiName, actuallyDelete = True): argument 185 if apiNameMatch(apiName, api): 188 elif not apiNameMatch(apiName, api):
|
D | reflow.py | 255 state.apiName, 268 logDiag('Assigning', self.vuPrefix, state.apiName, self.nextvu,
|
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/scripts/cereal/ |
D | dispatch.py | 325 def emit_check_impl(cgen, dispatchVar, feature, featureToCheck, apiName): argument 327 cgen.beginIf("!%s->%s" % (dispatchVar, apiName)) 328 … cgen.stmt("fprintf(stderr, \"%s check failed: %s not found\\n\")" % (featureToCheck, apiName))
|
/hardware/google/gfxstream/host/vulkan/ |
D | VkReconstruction.cpp | 313 const char* apiName = in dump() local 316 (unsigned long long)apiHandle, apiName); in dump() 332 const char* apiName = apiInfo ? api_opcode_to_string(apiInfo->opCode) : "unalloced"; in dump() local 334 (unsigned long long)apiHandle, apiName); in dump()
|
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/scripts/cereal/common/ |
D | codegen.py | 853 def makeApiFunc(self, typeInfo, apiName): argument 854 customApi = copy(typeInfo.apis[apiName]) 874 def makeDecl(self, typeInfo, apiName): argument 876 self.makeApi(self, typeInfo, apiName)) + ";\n\n" 878 def makeDefinition(self, typeInfo, apiName, isStatic=False): argument 879 vulkanApi = self.makeApi(self, typeInfo, apiName)
|
D | vulkantypes.py | 32 def isCreateApi(self, apiName): argument 33 return apiName == self.createApis or (apiName in self.createApis) 35 def isDestroyApi(self, apiName): argument 38 return apiName == self.destroyApis or (apiName in self.destroyApis)
|