Home
last modified time | relevance | path

Searched refs:Detail (Results 1 – 25 of 41) sorted by relevance

12

/ohos5.0/foundation/graphic/graphic_3d/lume/LumeBase/api/base/util/
H A Dbase64_decode.h25 namespace Detail { in BASE_BEGIN_NAMESPACE()
53 uint32_t bits = static_cast<uint32_t>(Detail::FromBase64((uint8_t)(*src++))) << (3u * 6u); in BASE_BEGIN_NAMESPACE()
54 bits |= Detail::FromBase64((uint8_t)(*src++)) << (2u * 6u); in BASE_BEGIN_NAMESPACE()
55 bits |= Detail::FromBase64((uint8_t)(*src++)) << (1u * 6u); in BASE_BEGIN_NAMESPACE()
56 bits |= Detail::FromBase64((uint8_t)(*src++)) << (0u * 6u); in BASE_BEGIN_NAMESPACE()
91Detail::DecodeQuartets(decodedBinary.data(), encodedString.data(), static_cast<signed>(encodedStri… in Base64Decode()
93 …decodedBinary.cend() - static_cast<ptrdiff_t>(Detail::CountPadding(encodedString)), decodedBinary.… in Base64Decode()
H A Dbase64_encode.h25 namespace Detail { in BASE_BEGIN_NAMESPACE()
48 Detail::ToBase64(src, dst); in BASE_BEGIN_NAMESPACE()
70 Detail::ToBase64(rest, dst, left); in BASE_BEGIN_NAMESPACE()
89 left = Detail::EncodeTriplets(dst, src, left); in Base64Encode()
92 Detail::EncodeTail(dst, src, left); in Base64Encode()
/ohos5.0/foundation/distributedhardware/distributed_camera/services/cameraservice/base/test/unittest/common/base/
H A Ddcamera_channel_info_cmd_test.cpp37 …"Value": {"SourceDevId": "TestDevId", "Detail": [{"DataSessionFlag": "TestFlag", "StreamType": 1}]}
44 …"Value": {"SourceDevId": "TestDevId", "Detail": [{"DataSessionFlag": "TestFlag", "StreamType": 1}]}
50 …"Value": {"SourceDevId": "TestDevId", "Detail": [{"DataSessionFlag": "TestFlag", "StreamType": 1}]}
57 …"Value": {"SourceDevId": "TestDevId", "Detail": [{"DataSessionFlag": "TestFlag", "StreamType": 1}]}
63 …"Value": {"SourceDevId": "TestDevId", "Detail": [{"DataSessionFlag": "TestFlag", "StreamType": 1}]}
70 …"Value": {"SourceDevId": "TestDevId", "Detail": [{"DataSessionFlag": "TestFlag", "StreamType": 1}]}
/ohos5.0/base/update/updater/utils/json/
H A Djson_visitor.h27 namespace Detail {
68 template<typename T, std::enable_if_t<Detail::G_IS_BASE_TYPE<T>, bool> = true>
88 template<typename T, std::enable_if_t<Detail::G_IS_VECTOR<T>, bool> = true>
125 template<Action act, typename T, std::enable_if_t<Detail::G_IS_VECTOR<T>, bool> = true>
129 return Detail::MemberVisitor<act>::VisitMember(node, {}, obj, "");
132 template<Action act, typename T, std::enable_if_t<Detail::G_IS_NUM<decltype(Traits<T>::COUNT)>, boo…
137 return Detail::StructVisitor<act>::VisitStruct(node, defaultNode, obj,
141 template<Action act, typename T, std::enable_if_t<Detail::G_IS_NUM<decltype(Traits<T>::COUNT)>, boo…
146 return Detail::StructVisitor<act>::VisitStruct(node, {}, obj,
H A Djson_node.h63 if (auto optPtr = std::get_if<std::optional<Detail::StandardType<T>>>(&innerObj_); optPtr) { in As()
72 if (auto optPtr = std::get_if<std::optional<Detail::StandardType<T>>>(&innerObj_); optPtr) {
95 …static_assert(Detail::G_IS_BASE_TYPE<Detail::RemoveCvRef<T>>, "only allow change int, string, bool…
97 innerObj_ = Detail::OptStandardType<T>(rhs);
99 if (auto optPtr = std::get_if<Detail::OptStandardType<T>>(&innerObj_); optPtr) {
100 *optPtr = Detail::OptStandardType<T>(rhs);
H A Dtraits_util.h24 namespace Detail {
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service/core/pipeline/
H A Drs_egl_image_manager.cpp34 namespace Detail { namespace
179 Detail::GetEGLDestroyImageKHRFunc()(eglDisplay_, eglImage_); in ~ImageCacheSeq()
189 Detail::NativeWindowBufferObject nBufferDecRef( in ~ImageCacheSeq()
190 Detail::CastFromEGLClientBuffer(eglClientBuffer_)); in ~ImageCacheSeq()
209 Detail::GetGLEGLImageTargetTexture2DOESFunc()(GL_TEXTURE_EXTERNAL_OES, eglImage_); in BindToTexture()
218 auto nativeBuffer = Detail::CreateNativeWindowBuffer(buffer); in Create()
223 EGLImageKHR img = Detail::CreateEGLImage(eglDisplay, eglContext, nativeBuffer); in Create()
226 Detail::EGLErrorString(eglGetError())); in Create()
231 eglDisplay, img, Detail::CastToEGLClientBuffer(nativeBuffer.Release())); in Create()
H A Drs_base_render_util.cpp62 namespace Detail { namespace
1097 filter.SetColorFilter(Detail::ProtanomalyMat()); in SetColorFilterModeToPaint()
1100 filter.SetColorFilter(Detail::DeuteranomalyMat()); in SetColorFilterModeToPaint()
1103 filter.SetColorFilter(Detail::TritanomalyMat()); in SetColorFilterModeToPaint()
1427 if (!Detail::ConvertYUV420SPToRGBA(newBuffer, buffer)) { in CreateYuvToRGBABitMap()
1520 param.bitDepth = Detail::BITMAP_DEPTH; in WriteSurfaceRenderNodeToPng()
1558 param.bitDepth = Detail::BITMAP_DEPTH; in WriteCacheRenderNodeToPng()
1606 param.bitDepth = Detail::BITMAP_DEPTH; in WriteCacheImageRenderNodeToPng()
1650 param.bitDepth = Detail::BITMAP_DEPTH; in WriteCacheImageRenderNodeToPng()
1669 param.bitDepth = Detail::BITMAP_DEPTH; in WritePixelMapToPng()
[all …]
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeRender/src/loader/
H A Djson_util.h94 namespace Detail {
132Detail::Transform(view, std::begin(container), [](const JsonType& value) { return Detail::Convert<… in FromJson()
140 Detail::Transform(jsonData.array_, std::back_inserter(container), in FromJson()
141 [](const JsonType& value) { return Detail::Convert<T>(value); }); in FromJson()
180 … error += Detail::INVALID_DATATYPE + element + " (" + CORE_NS::json::to_string(*pos) + ")\n"; in SafeGetJsonEnum()
196 … if (const T value = Detail::Convert<T>(field); value != static_cast<T>(0x7FFFFFFF)) { in SafeGetJsonBitfield()
203 … error += Detail::INVALID_DATATYPE + element + " (" + CORE_NS::json::to_string(*pos) + ")\n"; in SafeGetJsonBitfield()
236 Detail::Transform(array->array_, std::back_inserter(out), [&res](const JsonType& value) { in ParseArray()
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeEngine/src/loader/
H A Djson_util.h57 namespace Detail {
79 Detail::Transform(view, container.begin(), Detail::Convert<T>); in from_json()
88 Detail::Transform(view, std::begin(container), Detail::Convert<T>); in from_json()
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeRender/src/util/
H A Djson_util.h90 namespace Detail {
113Detail::Transform(view, std::begin(container), [](const JsonType& value) { return Detail::Convert<… in FromJson()
121 Detail::Transform(jsonData.array_, std::back_inserter(container), in FromJson()
122 [](const JsonType& value) { return Detail::Convert<T>(value); }); in FromJson()
/ohos5.0/foundation/graphic/graphic_3d/lume/Lume_3D/src/util/
H A Djson_util.h92 namespace Detail {
115Detail::Transform(view, std::begin(container), [](const JsonType& value) { return Detail::Convert<… in FromJson()
123 Detail::Transform(jsonData.array_, std::back_inserter(container), in FromJson()
124 [](const JsonType& value) { return Detail::Convert<T>(value); }); in FromJson()
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/pipeline/
H A Drs_surface_buffer_callback_manager.h119 namespace Detail {
136 begin = Detail::FindIf(begin, end, unaryPred, std::make_index_sequence<sizeof...(Iters)>()); in RemoveIf()
167 return Detail::FindIf(begin, end, unaryPred, std::make_index_sequence<sizeof...(Iters)>()); in FindIf()
174 return Detail::RemoveIf(begin, end, unaryPred, std::make_index_sequence<sizeof...(Iters)>()); in RemoveIf()
182 return Detail::CopyIf(inputBegin, inputEnd, outputBegin, unaryPred, in CopyIf()
/ohos5.0/foundation/multimedia/av_codec/services/utils/include/
H A Dscope_guard.h27 namespace Detail {
58 auto onScopeExitGuard##id = Detail::ScopeExitGuardHelper{} + [ & ]
/ohos5.0/foundation/multimedia/media_foundation/src/buffer/avbuffer/include/
H A Dscope_guard.h27 namespace Detail {
57 #define ON_SCOPE_EXIT(id) auto onScopeExitGuard##id = Detail::ScopeExitGuardHelper{} + [&]
/ohos5.0/foundation/multimedia/player_framework/services/utils/include/
H A Dscope_guard.h27 namespace Detail {
58 auto onScopeExitGuard##id = Detail::ScopeExitGuardHelper{} + [ & ]
/ohos5.0/base/update/updater/utils/include/
H A Dscope_guard.h25 namespace Detail {
54 #define ON_SCOPE_EXIT(id) auto onScopeExitGuard##id = Detail::ScopeExitGuardHelper {} + [ & ]
/ohos5.0/base/update/updater/services/ui/view/component/
H A Dcomponent_factory.h73 namespace Detail {
79 inline constexpr bool IS_UPDATER_COMPONENT = Detail::CHECK_COMPONENT_LIST<T, COMPONENT_TYPE_LIST>;
/ohos5.0/docs/zh-cn/application-dev/reference/apis-arkui/arkui-ts/
H A Dts-container-navigator.md121 Navigator({ target: 'pages/container/navigator/Detail', type: NavigationType.Push }) {
124 }.params(new TextObject(this.name)) // 传参数到Detail页面
150 // Detail.ets
/ohos5.0/docs/en/application-dev/reference/apis-arkui/arkui-ts/
H A Dts-container-navigator.md122 Navigator({ target: 'pages/container/navigator/Detail', type: NavigationType.Push }) {
125 }.params(new TextObject(this.name)) // Pass parameters to the Detail page.
151 // Detail.ets
/ohos5.0/base/update/sys_installer/frameworks/actions/verify_action/src/
H A Dpkg_verify.cpp69 Detail::ScopeGuard guard([&] { in PerformAction()
/ohos5.0/docs/zh-cn/application-dev/ui/
H A Dui-js-building-ui-layout-external-container.md49 <text>Detail</text>
H A Darkts-routing.md44 - 场景一:有一个主页(Home)和一个详情页(Detail),希望从主页点击一个商品,跳转到详情页。同时,需要保留主页在页面栈中,以便返回时恢复状态。这种场景下,可以使用pushUrl方法,并且使…
52 url: 'pages/Detail' // 目标url
155 url: 'pages/Detail', // 目标url
/ohos5.0/base/update/sys_installer/services/ab_update/src/
H A Dab_update.cpp82 Detail::ScopeGuard guard([&] { in PerformAction()
/ohos5.0/docs/zh-cn/application-dev/reference/apis-arkui/arkui-js/
H A Djs-components-container-tabs.md50 <text class="tab-text">Detail</text>

12