HomeSort by relevance Sort by last modified time
    Searched refs:typedict (Results 1 - 5 of 5) sorted by null

  /external/vulkan-validation-layers/scripts/
reg.py 166 # typedict - dictionary of TypeInfo objects keyed by type name
198 self.typedict = {}
270 self.typedict = {}
276 self.addElementInfo(type, TypeInfo(type), 'type', self.typedict)
411 for name in self.typedict:
412 tobj = self.typedict[name]
445 type = self.lookupElementInfo(typename, self.typedict)
538 self.typedict[v.get('struct')].additionalValidity.append(copy.deepcopy(v))
548 self.typedict[v.get('struct')].removedValidity.append(copy.deepcopy(v))
588 self.generateFeature(depname, 'type', self.typedict)
    [all...]
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/
reg.py 165 # typedict - dictionary of TypeInfo objects keyed by type name
197 self.typedict = {}
267 self.typedict = {}
273 self.addElementInfo(type, TypeInfo(type), 'type', self.typedict)
396 for name in self.typedict:
397 tobj = self.typedict[name]
430 type = self.lookupElementInfo(typename, self.typedict)
523 self.typedict[v.get('struct')].additionalValidity.append(copy.deepcopy(v))
533 self.typedict[v.get('struct')].removedValidity.append(copy.deepcopy(v))
573 self.generateFeature(depname, 'type', self.typedict)
    [all...]
  /frameworks/native/opengl/tools/glgen2/registry/
reg.py 645 # typedict - dictionary of TypeInfo objects keyed by type name
679 self.typedict = {}
747 self.typedict = {}
753 self.addElementInfo(type, TypeInfo(type), 'type', self.typedict)
    [all...]
  /external/python/cpython2/Modules/_ctypes/
_ctypes.c 939 PyObject *typedict; local
941 typedict = PyTuple_GetItem(args, 2);
942 if (!typedict)
959 proto = PyDict_GetItemString(typedict, "_type_"); /* Borrowed ref */
1031 StgDictObject *typedict; local
1384 PyObject *typedict; local
    [all...]
  /external/python/cpython3/Modules/_ctypes/
_ctypes.c 899 PyObject *typedict; local
901 typedict = PyTuple_GetItem(args, 2);
902 if (!typedict)
919 proto = PyDict_GetItemString(typedict, "_type_"); /* Borrowed ref */
991 StgDictObject *typedict; local
999 typedict = PyType_stgdict(type);
1000 assert(typedict); /* Cannot be NULL for pointer types */
1005 switch (PyObject_IsInstance(value, typedict->proto)) {
    [all...]

Completed in 126 milliseconds