Home | History | Annotate | Download | only in vulkan-validation-layers

Lines Matching refs:ancestor

1837                         ancestor = parent
1838 while ancestor is not None and not self.isHandleTypeDispatchable(ancestor):
1839 ancestor = self.getHandleParent(ancestor)
1842 if ancestor is not None:
1843 if ancestor not in parentdictionary:
1844 parentdictionary[ancestor] = []
1847 parentdictionary[ancestor].append('the elements of ' + self.makeParameterName(paramname.text))
1849 parentdictionary[ancestor].append(self.makeParameterName(paramname.text))
1977 ancestor = self.getHandleParent(parent[0])
1979 while ancestor is not None and ancestor not in parentdictionary:
1980 ancestor = self.getHandleParent(ancestor)
1982 if ancestor is not None:
1983 parentdictionary[ancestor] += parentdictionary.pop(parent[0])