Searched refs:typedict (Results 1 – 16 of 16) sorted by relevance
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/ |
D | reg.py | 329 self.typedict = {} 468 self.typedict = {} 477 self.addElementInfo(type_elem, TypeInfo(type_elem), 'type', self.typedict) 705 for name in self.typedict: 706 tobj = self.typedict[name] 749 typeinfo = self.lookupElementInfo(typename, self.typedict) 1011 typeinfo = self.lookupElementInfo(typename, self.typedict) 1015 alias = self.getAlias(typeElem, self.typedict) 1019 typeinfo = self.lookupElementInfo(alias, self.typedict) 1095 self.typedict[v.get('struct')].additionalValidity.append(copy.deepcopy(v)) [all …]
|
D | xml_consistency.py | 379 memberType = self.reg.typedict[typeName] 408 info = self.reg.typedict[name] 414 extendingStruct = self.reg.typedict[extendingStructName]
|
D | cgenerator.py | 388 for typeName, data in self.registry.typedict.items() 393 for otherType in self.registry.typedict.values())
|
D | validitygenerator.py | 683 typeElem = self.registry.lookupElementInfo(bitsname, self.registry.typedict) 685 alias = self.registry.getAlias(typeElem.elem, self.registry.typedict) 888 info = self.registry.typedict.get(structname) 956 struct, self.registry.typedict) 1093 paraminfo = self.registry.lookupElementInfo(paramtype, self.registry.typedict)
|
D | generator.py | 1129 info = self.registry.typedict.get(typename) 1155 info = self.registry.typedict.get(typename) 1179 info = self.registry.typedict.get(structname)
|
D | docgenerator.py | 415 alias_info = self.registry.typedict[alias]
|
/third_party/vulkan-headers/registry/ |
D | reg.py | 329 self.typedict = {} 468 self.typedict = {} 477 self.addElementInfo(type_elem, TypeInfo(type_elem), 'type', self.typedict) 705 for name in self.typedict: 706 tobj = self.typedict[name] 749 typeinfo = self.lookupElementInfo(typename, self.typedict) 1011 typeinfo = self.lookupElementInfo(typename, self.typedict) 1015 alias = self.getAlias(typeElem, self.typedict) 1019 typeinfo = self.lookupElementInfo(alias, self.typedict) 1095 self.typedict[v.get('struct')].additionalValidity.append(copy.deepcopy(v)) [all …]
|
D | cgenerator.py | 388 for typeName, data in self.registry.typedict.items() 393 for otherType in self.registry.typedict.values())
|
D | generator.py | 1129 info = self.registry.typedict.get(typename) 1155 info = self.registry.typedict.get(typename) 1179 info = self.registry.typedict.get(structname)
|
/third_party/openGLES/xml/ |
D | reg.py | 676 self.typedict = {} 744 self.typedict = {} 750 self.addElementInfo(type, TypeInfo(type), 'type', self.typedict) 803 for name in self.typedict: 804 tobj = self.typedict[name] 837 type = self.lookupElementInfo(typename, self.typedict) 936 self.generateFeature(depname, 'type', self.typedict, 943 self.generateFeature(depname, 'type', self.typedict, 966 self.generateFeature(t.get('name'), 'type', self.typedict, 1114 for type in self.typedict: [all …]
|
/third_party/EGL/api/ |
D | reg.py | 685 self.typedict = {} 753 self.typedict = {} 759 self.addElementInfo(type, TypeInfo(type), 'type', self.typedict) 812 for name in self.typedict: 813 tobj = self.typedict[name] 846 type = self.lookupElementInfo(typename, self.typedict) 945 self.generateFeature(depname, 'type', self.typedict, 952 self.generateFeature(depname, 'type', self.typedict, 975 self.generateFeature(t.get('name'), 'type', self.typedict, 1123 for type in self.typedict: [all …]
|
/third_party/skia/third_party/externals/opengl-registry/xml/ |
D | reg.py | 687 self.typedict = {} 755 self.typedict = {} 761 self.addElementInfo(type, TypeInfo(type), 'type', self.typedict) 814 for name in self.typedict: 815 tobj = self.typedict[name] 848 type = self.lookupElementInfo(typename, self.typedict) 947 self.generateFeature(depname, 'type', self.typedict, 954 self.generateFeature(depname, 'type', self.typedict, 977 self.generateFeature(t.get('name'), 'type', self.typedict, 1125 for type in self.typedict: [all …]
|
/third_party/skia/third_party/externals/egl-registry/api/ |
D | reg.py | 696 self.typedict = {} 764 self.typedict = {} 770 self.addElementInfo(type, TypeInfo(type), 'type', self.typedict) 823 for name in self.typedict: 824 tobj = self.typedict[name] 857 type = self.lookupElementInfo(typename, self.typedict) 956 self.generateFeature(depname, 'type', self.typedict, 963 self.generateFeature(depname, 'type', self.typedict, 986 self.generateFeature(t.get('name'), 'type', self.typedict, 1134 for type in self.typedict: [all …]
|
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/spec_tools/ |
D | consistency_tools.py | 213 for name, info in self.reg.typedict.items(): 726 for type_name, type_info in self.reg.typedict.items()
|
D | entity_db.py | 645 for name, info in registry.typedict.items():
|
/third_party/python/Modules/_ctypes/ |
D | _ctypes.c | 1060 PyObject *typedict; in PyCPointerType_new() local 1063 typedict = PyTuple_GetItem(args, 2); in PyCPointerType_new() 1064 if (!typedict) in PyCPointerType_new() 1081 proto = _PyDict_GetItemIdWithError(typedict, &PyId__type_); /* Borrowed ref */ in PyCPointerType_new() 1162 StgDictObject *typedict; in PyCPointerType_from_param() local 1170 typedict = PyType_stgdict(type); in PyCPointerType_from_param() 1171 if (!typedict) { in PyCPointerType_from_param() 1180 switch (PyObject_IsInstance(value, typedict->proto)) { in PyCPointerType_from_param() 1196 int ret = PyObject_IsSubclass(v->proto, typedict->proto); in PyCPointerType_from_param()
|