Searched refs:printValueOfType (Results 1 – 1 of 1) sorted by relevance
/external/clang/utils/ABITest/ |
D | ABITestGen.py | 127 self.printValueOfType(' %s'%fnName, 'arg%d'%i, t) 160 … self.printValueOfType(' %s_RV'%fnName, 'RV', FT.returnType, output=self.outputTests, indent=4) 267 def printValueOfType(self, prefix, name, t, output=None, indent=2): member in TypePrinter 300 self.printValueOfType(prefix, fname, f, output=output, indent=indent) 302 … self.printValueOfType(prefix, '(__real %s)'%name, t.elementType, output=output,indent=indent) 303 … self.printValueOfType(prefix, '(__imag %s)'%name, t.elementType, output=output,indent=indent) 309 …self.printValueOfType(prefix, '((%s*) &%s)[%d]'%(t.elementType,name,i), t.elementType, output=outp… 311 …self.printValueOfType(prefix, '%s[%d]'%(name,i), t.elementType, output=output,indent=indent) …
|