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;
73 return isConst && isPointer &&
92 if (isConst()) {
105 return baseType.hashCode() ^ (isPointer ? 2 : 0) ^ (isConst ? 1 : 0);
114 isConst() == c.isConst();