Home
last modified time | relevance | path

Searched refs:C2FieldSupportedValuesHelper (Results 1 – 6 of 6) sorted by relevance

/hardware/google/av/codec2/vndk/util/
DC2InterfaceUtils.cpp310 struct C2FieldSupportedValuesHelper<T>::Impl {
332 bool C2FieldSupportedValuesHelper<T>::Impl::supports(T value) const { in supports()
342 C2FieldSupportedValuesHelper<T>::C2FieldSupportedValuesHelper(const C2FieldSupportedValues &values) in C2FieldSupportedValuesHelper() function in C2FieldSupportedValuesHelper
343 : _mImpl(std::make_unique<C2FieldSupportedValuesHelper<T>::Impl>(values)) { } in C2FieldSupportedValuesHelper()
346 C2FieldSupportedValuesHelper<T>::~C2FieldSupportedValuesHelper() = default;
349 bool C2FieldSupportedValuesHelper<T>::supports(T value) const { in supports()
353 template class C2FieldSupportedValuesHelper<uint8_t>; variable
354 template class C2FieldSupportedValuesHelper<char>; variable
355 template class C2FieldSupportedValuesHelper<int32_t>; variable
356 template class C2FieldSupportedValuesHelper<uint32_t>; variable
[all …]
DC2Debug.cpp236 struct C2FieldSupportedValuesHelper<T>::Impl {
253 std::ostream& C2FieldSupportedValuesHelper<T>::Impl::streamOut(std::ostream& os) const { in streamOut()
267 std::ostream& operator<<(std::ostream& os, const C2FieldSupportedValuesHelper<T> &i) { in operator <<()
270 template std::ostream& operator<<(std::ostream& os, const C2FieldSupportedValuesHelper<char> &i);
271 template std::ostream& operator<<(std::ostream& os, const C2FieldSupportedValuesHelper<uint8_t> &i);
272 template std::ostream& operator<<(std::ostream& os, const C2FieldSupportedValuesHelper<int32_t> &i);
273 template std::ostream& operator<<(std::ostream& os, const C2FieldSupportedValuesHelper<uint32_t> &i…
275 template std::ostream& operator<<(std::ostream& os, const C2FieldSupportedValuesHelper<int64_t> &i);
276 template std::ostream& operator<<(std::ostream& os, const C2FieldSupportedValuesHelper<uint64_t> &i…
278 template std::ostream& operator<<(std::ostream& os, const C2FieldSupportedValuesHelper<float> &i);
DC2InterfaceHelper.cpp366 << C2FieldSupportedValuesHelper<uint32_t>(*mPossible); in FieldHelper()
/hardware/google/av/codec2/vndk/include/util/
DC2InterfaceUtils.h610 class C2FieldSupportedValuesHelper;
614 std::ostream& operator<<(std::ostream& os, const C2FieldSupportedValuesHelper<T> &i);
617 class C2FieldSupportedValuesHelper {
622 C2FieldSupportedValuesHelper(const C2FieldSupportedValues &values);
625 ~C2FieldSupportedValuesHelper();
628 C2FieldSupportedValuesHelper(const C2FieldSupportedValuesHelper &);
629 C2FieldSupportedValuesHelper& operator=(const C2FieldSupportedValuesHelper &);
638 friend std::ostream& operator<< <T>(std::ostream& os, const C2FieldSupportedValuesHelper<T> &i);
DC2Debug-interface.h32 std::ostream& operator<<(std::ostream& os, const C2FieldSupportedValuesHelper<T> &i);
DC2InterfaceHelper.h241 return C2FieldSupportedValuesHelper<T>(*_mHelper->getPossibleValues()).supports(value);
245 return C2FieldSupportedValuesHelper<T>(*_mHelper->getSupportedValues()).supports(value);