Home
last modified time | relevance | path

Searched refs:Base (Results 1 – 25 of 26) sorted by relevance

12

/frameworks/av/media/module/foundation/include/media/stagefright/foundation/
DTypeTraits.h145 template<size_t Base, typename T, typename ...Us>
151 template<size_t Base, typename T>
152 struct HIDE _find_first_impl<Base, T> : std::integral_constant<size_t, 0> {};
157 template<size_t Base, typename T, typename ...Us>
158 struct HIDE _find_first_impl<Base, T, T, Us...> : std::integral_constant<size_t, Base> {};
163 template<size_t Base, typename T, typename U, typename ...Us>
164 struct HIDE _find_first_impl<Base, T, U, Us...>
165 : std::integral_constant<size_t, _find_first_impl<Base + 1, T, Us...>::value> {};
185 template<size_t Base, typename T, typename ...Us>
191 template<size_t Base, typename T, typename U, typename ...Us>
[all …]
/frameworks/base/tools/aapt2/
DValueTransformer_inline.h25 template <typename Derived, typename Base>
26 inline std::unique_ptr<Derived> TransformableValue<Derived, Base>::Transform( in Transform()
31 template <typename Derived, typename Base>
32 Value* TransformableValue<Derived, Base>::TransformValueImpl(ValueTransformer& transformer) const { in TransformValueImpl()
38 template <typename Derived, typename Base>
39 Item* TransformableItem<Derived, Base>::TransformItemImpl(ValueTransformer& transformer) const { in TransformItemImpl()
DValueTransformer.h110 template <typename Derived, typename Base>
111 struct TransformableValue : public Base {
119 template <typename Derived, typename Base>
120 struct TransformableItem : public TransformableValue<Derived, Base> {
/frameworks/native/include/ftl/
Dexpected.h110 using Base = base::expected<T, E>; member
111 using Base::expected;
113 using Base::error;
114 using Base::has_value;
115 using Base::value;
Dfuture.h35 using Base = details::BaseFuture<Future, T, FutureImpl>; variable
37 friend Base; // For BaseFuture<...>::self. variable
53 using Base::get;
54 using Base::wait_for;
Dmixins.h143 using Base = details::Mixin<Self, Addable>;
144 using Base::mut;
145 using Base::self;
Dconcat.h52 using Base = Concat<N + Str::N, Ts...>;
53 this->Base::append(args...);
/frameworks/native/include/ftl/details/
Dcast.h37 using Base = std::numeric_limits<T>; in max() local
45 constexpr int kShift = Base::digits - Float::digits; in max()
49 return static_cast<U>(Base::max()) & ~((kOne << kShift) - kOne); in max()
53 return Base::max(); in max()
/frameworks/compile/mclinker/include/mcld/Support/
DGCFactory.h64 typedef DataIteratorBase<ChunkType> Base; typedef
75 DataIterator() : Base(NULL, 0) {} in DataIterator()
77 DataIterator(ChunkType* pChunk, unsigned int pPos) : Base(pChunk, pPos) {} in DataIterator()
79 DataIterator(const DataIterator& pCopy) : Base(pCopy.m_pChunk, pCopy.m_Pos) {} in DataIterator()
87 return this->m_pChunk->data[Base::m_Pos];
91 this->Base::advance();
97 this->Base::advance();
/frameworks/av/media/utils/tests/
Dinplace_function_tests.cpp449 struct Base {}; struct
450 struct Derived : Base {};
464 static_assert(Convertible<ConvertCallable, InPlaceFunction<Base&()>, false>);
466 static_assert(Convertible<ConvertCallable, InPlaceFunction<Base()>, true>);
474 static_assert(Convertible<ConvertCallable, InPlaceFunction<Base&(Derived&)>, true>);
477 static_assert(Convertible<ConvertCallable, InPlaceFunction<Base && (Derived &&)>, true>);
480 static_assert(Convertible<ConvertCallable, InPlaceFunction<const Base&(const Derived&)>, true>);
484 static_assert(Convertible<ConvertCallable, InPlaceFunction<const Base && (const Derived&&)>, true>);
487 static_assert(Convertible<ConvertCallable, InPlaceFunction<const Base&(Derived&)>, true>);
490 static_assert(Convertible<ConvertCallable, InPlaceFunction<const Base && (Derived &&)>, true>);
[all …]
/frameworks/compile/mclinker/include/mcld/
DInputTree.h30 typedef PolicyIteratorBase<Input, Traits, IteratorType> Base; typedef
37 PolicyIterator() : Base() {} in PolicyIterator()
39 PolicyIterator(const iterator& X) : Base(X.m_pNode) {} in PolicyIterator()
41 explicit PolicyIterator(NodeBase* X) : Base(X) {} in PolicyIterator()
45 bool isGroup() const { return !Base::hasData() && !Base::isRoot(); } in isGroup()
/frameworks/av/media/codec2/hal/client/include/codec2/hidl/
Dclient.h552 typedef ::android::hardware::media::c2::V1_0::IInputSurface Base; typedef
563 sp<Base> getHalInterface() const;
566 InputSurface(const sp<Base>& base);
569 sp<Base> mBase;
579 typedef ::android::hardware::media::c2::V1_0::IInputSurfaceConnection Base; typedef
584 InputSurfaceConnection(const sp<Base>& base);
587 sp<Base> mBase;
/frameworks/native/services/surfaceflinger/tests/unittests/
DDisplayTransactionTestHelpers.h566 using Base = DisplayVariant<GpuVirtualDisplayIdType, width, height, Async::TRUE, secure,
578 .setId(Base::DISPLAY_ID::get())
579 .setPixels(Base::RESOLUTION)
580 .setIsSecure(static_cast<bool>(Base::SECURE))
600 Base::setupNativeWindowSurfaceCreationCallExpectations(test);
616 using Base = DisplayVariant<HalVirtualDisplayIdType<42>, width, height, Async::TRUE, secure,
625 const auto displayId = Base::DISPLAY_ID::get();
628 .setPixels(Base::RESOLUTION)
629 .setIsSecure(static_cast<bool>(Base::SECURE))
646 Base::setupNativeWindowSurfaceCreationCallExpectations(test);
[all …]
DCompositionTest.cpp670 using Base = BaseLayerProperties<SidebandLayerProperties>; typedef
705 using Base = BaseLayerProperties<LayerProperties>; typedef
756 using Base = BaseLayerProperties<CursorLayerProperties>; typedef
759 Base::setupLayerState(test, layer); in setupLayerState()
835 using Base = BaseLayerVariant<LayerProperties>; typedef
839 FlingerLayerType layer = Base::template createLayerWithFactory<Layer>(test, [test]() { in createLayer()
871 using Base = BaseLayerVariant<LayerProperties>; typedef
875 FlingerLayerType layer = Base::template createLayerWithFactory<Layer>(test, [test]() { in createLayer()
887 Base::cleanupInjectedLayers(test); in cleanupInjectedLayers()
919 using Base = BaseLayerVariant<LayerProperties>; typedef
[all …]
/frameworks/av/services/audiopolicy/engineconfigurable/src/
DCollection.h46 typedef std::map<Key, Element<Key> *> Base; typedef
131 Base::clear(); in clear()
/frameworks/compile/mclinker/include/mcld/ADT/
DHashIterator.h251 typedef IteratorBase Base; typedef
286 this->Base::advance();
292 this->Base::advance();
DBinTree.h139 typedef PolicyIteratorBase<DataType, Traits, IteratorType> Base; typedef
147 PolicyIterator() : Base() {} in PolicyIterator()
149 PolicyIterator(const iterator& X) : Base(X.m_pNode) {} in PolicyIterator()
151 explicit PolicyIterator(NodeBase* X) : Base(X) {} in PolicyIterator()
/frameworks/proto_logging/stats/atoms/display/
Ddisplay_extension_atoms.proto42 // Base mode value, -1 if not active
/frameworks/opt/setupwizard/library/
Drules.gradle2 * Base rules for building setup wizard library. This build file is not used directly but rather
/frameworks/libs/binary_translation/base/include/berberis/base/
Dbit_util.h323 template <typename Base>
326 using BaseType = Base;
394 template <typename Base>
397 using BaseType = Base;
565 template <typename Base>
568 using BaseType = Base;
/frameworks/av/media/codec2/hal/client/
Dclient.cpp304 typedef c2_hidl::IConfigurable Base; typedef
307 explicit HidlImpl(const sp<Base>& base);
333 sp<Base> mBase;
337 Codec2ConfigurableClient::HidlImpl::HidlImpl(const sp<Base>& base) in HidlImpl()
573 typedef c2_aidl::IConfigurable Base; typedef
576 explicit AidlImpl(const std::shared_ptr<Base>& base);
602 std::shared_ptr<Base> mBase;
606 Codec2ConfigurableClient::AidlImpl::AidlImpl(const std::shared_ptr<Base>& base) in AidlImpl()
/frameworks/compile/slang/
DRSCCOptions.td77 HelpText<"Base directory for output reflected Java files">;
/frameworks/base/services/core/java/com/android/server/am/
DEventLogTags.logtags131 30104 am_cpu (Pid|2|5),(UID|2|5),(Base Name|3),(Uptime|2|3),(Stime|2|3),(Utime|2|3)
/frameworks/rs/script_api/
Drs_math.spec1212 summary: Base two exponent
1355 summary: Base 10 logarithm
1401 summary: Base 2 logarithm
1424 summary: Base two exponent
2784 summary: Base raised to an exponent
2810 summary: Base raised to an integer exponent
/frameworks/rs/script_api/include/
Drs_math.rsh2197 * ilogb: Base two exponent
2423 * log10: Base 10 logarithm
2501 * log2: Base 2 logarithm
2540 * logb: Base two exponent
5509 * pow: Base raised to an exponent
5549 * pown: Base raised to an integer exponent

12