Searched refs:ftype (Results 1 – 3 of 3) sorted by relevance
/frameworks/native/opengl/tools/glgen/src/ |
D | CFunc.java | 23 CType ftype; field in CFunc 49 public void setType(CType ftype) { in setType() argument 50 this.ftype = ftype; in setType() 54 return ftype; in getType() 108 String s = "Function " + fname + " returns " + ftype + ": "; in toString() 123 CType ftype = new CType(); in parseCFunc() local 126 ftype.setIsConst(true); in parseCFunc() 129 ftype.setBaseType(ftypeName); in parseCFunc() 133 ftype.setIsPointer(true); in parseCFunc() 138 cfunc.setType(ftype); in parseCFunc()
|
D | JFunc.java | 25 JType ftype; field in JFunc 52 public void setType(JType ftype) { in setType() argument 53 this.ftype = ftype; in setType() 57 return ftype; in getType() 159 String s = "Function " + fname + " returns " + ftype + ": "; in toString()
|
/frameworks/native/opengl/tools/glgen2/registry/ |
D | reg.py | 913 def generateFeature(self, fname, ftype, dictionary, genProc): argument 923 self.gen.logMsg('diag', '*** Skipping', ftype, fname, '(not required)') 926 self.gen.logMsg('diag', '*** Skipping', ftype, fname, '(already declared)') 934 if (ftype == 'type'): 941 elif (ftype == 'command'): 951 self.gen.logMsg('diag', '*** Emitting', ftype, 'decl for', fname) 954 self.gen.logMsg('diag', '*** Skipping', ftype, fname,
|