Home
last modified time | relevance | path

Searched refs:conditional_t (Results 1 – 13 of 13) sorted by relevance

/ohos5.0/foundation/graphic/graphic_3d/lume/metaobject/include/meta/interface/detail/
H A Dany_pointer_compatibility.h39 using IIType = BASE_NS::conditional_t<IsConst, const CORE_NS::IInterface, CORE_NS::IInterface>;
40 … using IIPtrType = BASE_NS::conditional_t<IsConst, SharedPtrConstIInterface, SharedPtrIInterface>;
128 using IIType = BASE_NS::conditional_t<IsConst, const CORE_NS::IInterface, CORE_NS::IInterface>;
129 … using IIPtrType = BASE_NS::conditional_t<IsConst, SharedPtrConstIInterface, SharedPtrIInterface>;
H A Darray_property.h97 using ArrayPropertyBaseType = BASE_NS::conditional_t<BASE_NS::is_const_v<Type>, ConstTypelessArrayP…
204 using InterfaceType = BASE_NS::conditional_t<BASE_NS::is_const_v<Type>, const IT*, IT*>;
H A Dproperty.h254 …BASE_NS::conditional_t<BASE_NS::is_const_v<Type>, ConstTypelessPropertyInterface, TypelessProperty…
305 using InterfaceType = BASE_NS::conditional_t<BASE_NS::is_const_v<Type>, const IT*, IT*>;
/ohos5.0/base/update/updater/utils/json/
H A Dtraits_util.h59 …using type = std::conditional_t<G_IS_NUM<T>, int, std::conditional_t<G_IS_STR<T>, std::string, boo…
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeEngine/api/core/property/
H A Dscoped_handle.h112 BASE_NS::conditional_t<readOnly_, const IPropertyHandle*, IPropertyHandle*> handle_ { nullptr };
/ohos5.0/foundation/graphic/graphic_3d/lume/metaobject/include/meta/interface/property/
H A Darray_property.h28 …using PropertyInterfaceType = BASE_NS::conditional_t<BASE_NS::is_const_v<Type>, const IProperty, I… in META_BEGIN_NAMESPACE()
H A Dproperty.h28 …using PropertyInterfaceType = BASE_NS::conditional_t<BASE_NS::is_const_v<Type>, const IProperty, I… in META_BEGIN_NAMESPACE()
/ohos5.0/foundation/multimedia/media_foundation/interface/inner_api/meta/
H A Dany.h63 using conditional_t = typename std::conditional<B, T, F>::type; variable
73 using std::conditional_t;
669 conditional_t<IsTrivialStackStorable<DecayedValueType>::value, in GetFunctionTable()
671 conditional_t<IsStackStorable<DecayedValueType>::value, in GetFunctionTable()
/ohos5.0/foundation/multimedia/media_foundation/engine/include/plugin/common/
H A Dany.h42 using conditional_t = typename std::conditional<B, T, F>::type; variable
463 conditional_t<IsTrivialStackStorable<DecayedValueType>::value, in GetFunctionTable()
465 conditional_t<IsStackStorable<DecayedValueType>::value, in GetFunctionTable()
/ohos5.0/foundation/graphic/graphic_3d/lume/metaobject/include/meta/base/
H A Dinterface_traits.h156 using ToggleConst = BASE_NS::conditional_t<BASE_NS::is_const_v<Type>, BASE_NS::remove_const_t<Type>…
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeBase/api/base/containers/
H A Dtype_traits.h251 using conditional_t = typename conditional<Condition, TrueType, FalseType>::type;
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeEngine/api/core/json/
H A Djson.h92 …typename BASE_NS::conditional_t<BASE_NS::is_same_v<Tag, writable_tag>, writable_string_t, readonly… in CORE_BEGIN_NAMESPACE()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/event/
H A Dfocus_hub.cpp52 …using IterType = std::conditional_t<isReverse, decltype(children.crbegin()), decltype(children.cbe… in AnyOfUINode()