Home
last modified time | relevance | path

Searched refs:apiName (Results 1 – 9 of 9) sorted by relevance

/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/scripts/
Ddoctransformer.py117 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
DgenRef.py141 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 …]
Dscriptgenerator.py30 def apiName(self, name): member in ScriptOutputGenerator
160 if not self.apiName(baseType) or not self.apiName(refType):
Dreg.py114 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):
Dreflow.py255 state.apiName,
268 logDiag('Assigning', self.vuPrefix, state.apiName, self.nextvu,
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/scripts/cereal/
Ddispatch.py325 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/
DVkReconstruction.cpp313 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/
Dcodegen.py853 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)
Dvulkantypes.py32 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)