Searched refs:m_type (Results 1 – 1 of 1) sorted by relevance
37 m_type(const_cast<VarType *>(vartype)), in Var()56 m_type = vartype; in init()71 const VarType * type() const { return m_type; } in type()72 bool isPointer() const { return m_type->isPointer(); } in isPointer()73 bool isVoid() const { return ((m_type->bytes() == 0) && (!m_type->isPointer())); } in isVoid()98 void printType(FILE *fp) { fprintf(fp, "%s", m_type->name().c_str()); } in printType()103 const VarType * m_type = nullptr; variable