Home | History | Annotate | Download | only in src

Lines Matching refs:baseType

19     String baseType;
26 public CType(String baseType) {
27 setBaseType(baseType);
30 public CType(String baseType, boolean isConst, boolean isPointer) {
31 setBaseType(baseType);
37 return baseType + (isPointer ? " *" : "");
57 if(baseType.equals("EGLContext")
58 || baseType.equals("EGLConfig")
59 || baseType.equals("EGLSurface")
60 || baseType.equals("EGLDisplay")) {
67 String baseType = getBaseType();
68 return baseType.equals("GLvoid") ||
69 baseType.equals("void");
74 (baseType.equals("char") || baseType.equals("GLchar"));
81 public void setBaseType(String baseType) {
82 this.baseType = baseType;
86 return baseType;
95 s += baseType;
105 return baseType.hashCode() ^ (isPointer ? 2 : 0) ^ (isConst ? 1 : 0);
112 return baseType.equals(c.baseType) &&