Lines Matching refs:C2SupportedValueSet
257 bool C2SupportedValueSet<T>::contains(T value) const { in contains()
265 C2SupportedValueSet<T> C2SupportedValueSet<T>::limitedTo(const C2SupportedValueSet<T> &limit) const… in limitedTo()
269 return C2SupportedValueSet(std::move(values)); in limitedTo()
273 C2SupportedValueSet<T> C2SupportedValueSet<T>::limitedTo(const C2SupportedRange<T> &limit) const { in limitedTo()
277 return C2SupportedValueSet(std::move(values)); in limitedTo()
281 C2SupportedValueSet<T> C2SupportedValueSet<T>::limitedTo(const C2SupportedFlags<T> &limit) const { in limitedTo()
285 return C2SupportedValueSet(std::move(values)); in limitedTo()
289 const std::vector<T> C2SupportedValueSet<T>::values() const { in values()
297 template class C2SupportedValueSet<uint8_t>; variable
298 template class C2SupportedValueSet<char>; variable
299 template class C2SupportedValueSet<int32_t>; variable
300 template class C2SupportedValueSet<uint32_t>; variable
302 template class C2SupportedValueSet<int64_t>; variable
303 template class C2SupportedValueSet<uint64_t>; variable
305 template class C2SupportedValueSet<float>; variable
323 C2SupportedValueSet<ValueType> _mValues;
324 C2SupportedValueSet<ValueType> _mFlags;
372 _mValues(C2SupportedValueSet<T>::None()), in Impl()
411 return limitTo(C2SupportedValueSet<T>::OneOf({value})); in equalTo()
415 void limitTo(const C2SupportedValueSet<T> &limit) { in limitTo()
545 C2SupportedValueSet<T> _mValues;
578 C2ParamFieldValuesBuilder<T> &C2ParamFieldValuesBuilder<T>::limitTo(const C2SupportedValueSet<T> &l… in limitTo()