Home | History | Annotate | Download | only in src

Lines Matching refs:isConst

20     boolean isConst;
30 public CType(String baseType, boolean isConst, boolean isPointer) {
32 setIsConst(isConst);
40 public void setIsConst(boolean isConst) {
41 this.isConst = isConst;
44 public boolean isConst() {
45 return isConst;
63 return isConst && isPointer && baseType.equals("char");
81 if (isConst()) {
94 return baseType.hashCode() ^ (isPointer ? 2 : 0) ^ (isConst ? 1 : 0);
103 isConst() == c.isConst();