Home
last modified time | relevance | path

Searched refs:CType (Results 1 – 5 of 5) sorted by relevance

/frameworks/native/opengl/tools/glgen/src/
DJType.java26 static HashMap<CType,JType> typeMapping = new HashMap<CType,JType>();
27 static HashMap<CType,JType> arrayTypeMapping = new HashMap<CType,JType>();
31 typeMapping.put(new CType("GLbitfield"), new JType("int")); in typeMapping.put()
32 typeMapping.put(new CType("GLboolean"), new JType("boolean")); in typeMapping.put()
33 typeMapping.put(new CType("GLclampf"), new JType("float")); in typeMapping.put()
34 typeMapping.put(new CType("GLclampx"), new JType("int")); in typeMapping.put()
35 typeMapping.put(new CType("GLenum"), new JType("int")); in typeMapping.put()
36 typeMapping.put(new CType("GLfloat"), new JType("float")); in typeMapping.put()
37 typeMapping.put(new CType("GLfixed"), new JType("int")); in typeMapping.put()
38 typeMapping.put(new CType("GLint"), new JType("int")); in typeMapping.put()
[all …]
DCFunc.java23 CType ftype;
27 List<CType> argTypes = new ArrayList<CType>();
49 public void setType(CType ftype) { in setType()
53 public CType getType() { in getType()
57 public void addArgument(String argName, CType argType) { in addArgument()
90 public CType getArgType(int index) { in getArgType()
123 CType ftype = new CType(); in parseCFunc()
153 CType argType = new CType(); in parseCFunc()
DCType.java17 public class CType { class
23 public CType() { in CType() method in CType
26 public CType(String baseType) { in CType() method in CType
30 public CType(String baseType, boolean isConst, boolean isPointer) { in CType() method in CType
110 if (o != null && o instanceof CType) { in equals()
111 CType c = (CType)o; in equals()
DJFunc.java130 CType cArgType = cfunc.getArgType(i); in convert()
138 CType cArgType = cfunc.getArgType(i); in convert()
DJniCodeEmitter.java312 CType returnType = cfunc.getType(); in getErrorReturnValue()
931 CType returnType = cfunc.getType(); in emitJniCode()
1056 CType type = cfunc.getArgType(jfunc.getArgCIndex(idx)); in emitJniCode()
1093 CType type = cfunc.getArgType(jfunc.getArgCIndex(idx)); in emitJniCode()
1147 CType type = cfunc.getArgType(jfunc.getArgCIndex(idx)); in emitJniCode()