Home | History | Annotate | Download | only in task

Lines Matching defs:mType

60         inline Value(): mType(ETypeDouble) {};
61 inline Value(Type type): mType(type) {};
62 inline Value(double val): mType(ETypeDouble) {
65 inline Value(int64_t val): mType(ETypeI64) {
69 return mType;
72 mType = type;
76 mType = ETypeDouble;
86 mType = ETypeI64;
98 return ((mValue[0] == b.mValue[0]) && (mType == b.mType));
103 Type mType;