Lines Matching refs:boolVal
40 bool boolVal;
45 Scalar (bool v) : boolVal (v) {}
70 template <> inline bool Scalar::as<bool> (void) const { return boolVal; }
71 template <> inline bool& Scalar::as<bool> (void) { return boolVal; }
103 bool asBool (void) const { DE_STATIC_ASSERT(Stride == 1); return m_value->boolVal; }
108 bool asBool (int ndx) const { DE_ASSERT(de::inBounds(ndx, 0, Stride)); return m_value[ndx].boolVal; }
136 bool& asBool (void) { DE_STATIC_ASSERT(Stride == 1); return this->m_value->boolVal; }
141 bool& asBool (int ndx) { DE_ASSERT(de::inBounds(ndx, 0, Stride)); return this->m_value[ndx].boolVal; }
155 StridedValueAccess& operator= (bool boolVal) { asBool() = boolVal; return *this; }