Lines Matching refs:C2SupportedValueSet

264 bool C2SupportedValueSet<T>::contains(T value) const {  in contains()
272 C2SupportedValueSet<T> C2SupportedValueSet<T>::limitedTo(const C2SupportedValueSet<T> &limit) const… in limitedTo()
279 return C2SupportedValueSet(std::move(values)); in limitedTo()
283 C2SupportedValueSet<T> C2SupportedValueSet<T>::limitedTo(const C2SupportedRange<T> &limit) const { in limitedTo()
290 return C2SupportedValueSet(std::move(values)); in limitedTo()
294 C2SupportedValueSet<T> C2SupportedValueSet<T>::limitedTo(const C2SupportedFlags<T> &limit) const { in limitedTo()
301 return C2SupportedValueSet(std::move(values)); in limitedTo()
305 const std::vector<T> C2SupportedValueSet<T>::values() const { in values()
313 template class C2SupportedValueSet<uint8_t>; variable
314 template class C2SupportedValueSet<char>; variable
315 template class C2SupportedValueSet<int32_t>; variable
316 template class C2SupportedValueSet<uint32_t>; variable
318 template class C2SupportedValueSet<int64_t>; variable
319 template class C2SupportedValueSet<uint64_t>; variable
321 template class C2SupportedValueSet<float>; variable
339 C2SupportedValueSet<ValueType> _mValues;
340 C2SupportedValueSet<ValueType> _mFlags;
388 _mValues(C2SupportedValueSet<T>::None()), in Impl()
427 return limitTo(C2SupportedValueSet<T>::OneOf({value})); in equalTo()
431 void limitTo(const C2SupportedValueSet<T> &limit) { in limitTo()
561 C2SupportedValueSet<T> _mValues;
594 C2ParamFieldValuesBuilder<T> &C2ParamFieldValuesBuilder<T>::limitTo(const C2SupportedValueSet<T> &l… in limitTo()