/foundation/multimedia/av_session/frameworks/common/src/ |
H A D | avplayback_state.cpp | 26 return parcel.WriteString(mask_.to_string()) && in Marshalling() 52 result->mask_ = PlaybackStateMaskType(mask); in Unmarshalling() 95 mask_.set(PLAYBACK_KEY_STATE); in SetState() 101 mask_.set(PLAYBACK_KEY_SPEED); in SetSpeed() 107 mask_.set(PLAYBACK_KEY_POSITION); in SetPosition() 113 mask_.set(PLAYBACK_KEY_BUFFERED_TIME); in SetBufferedTime() 119 mask_.set(PLAYBACK_KEY_LOOP_MODE); in SetLoopMode() 125 mask_.set(PLAYBACK_KEY_IS_FAVORITE); in SetFavorite() 131 mask_.set(PLAYBACK_KEY_ACTIVE_ITEM_ID); in SetActiveItemId() 137 mask_ in SetVolume() [all...] |
H A D | avcall_state.cpp | 26 return parcel.WriteString(mask_.to_string()) && in Marshalling() 41 result->mask_ = AVCallStateMaskType(mask); in Unmarshalling() 60 mask_.set(AVCALL_STATE_KEY_STATE); in SetAVCallState() 73 mask_.set(AVCALL_STATE_KEY_IS_MUTED); in SetAVCallMuted() 85 return mask_; in GetMask() 91 auto intersection = mask_ & mask; in CopyToByMask() 95 out.mask_.set(i); in CopyToByMask() 107 if (in.mask_.test(i)) { in CopyFrom() 109 mask_.set(i); in CopyFrom()
|
/foundation/arkui/ace_engine/frameworks/core/components/box/ |
H A D | box_base_component.h | 271 return mask_; in GetMask() 277 if (!mask_) { in SetMask() 278 mask_ = Mask::Create(); in SetMask() 280 if (mask_) { in SetMask() 281 mask_->SetMaskImage(image); in SetMask() 282 mask_->SetMaskSize(size); in SetMask() 283 mask_->SetMaskPosition(position); in SetMask() 290 if (!mask_) { in SetMask() 291 mask_ = Mask::Create(); in SetMask() 293 if (mask_) { in SetMask() 393 RefPtr<Mask> mask_; global() member in OHOS::Ace::BoxBaseComponent [all...] |
H A D | rosen_render_box.cpp | 110 if (mask_) { in Update() 111 mask_->LoadMask(GetContext(), AceType::Claim(this)); in Update() 233 if ((overflow_ != Overflow::CLIP || !childOverflow) && mask_ == nullptr && !boxClipFlag_ && in PerformLayout() 249 if (mask_ && mask_->IsValid() && mask_->IsPath()) { in PerformLayout() 252 CreateSkPath(mask_->GetMaskPath()->GetBasicShape(), mask_->GetMaskPath()->GetGeometryBoxType(), &skPath); in PerformLayout() 267 if (mask_ && mask_ in PerformLayout() [all...] |
H A D | render_box_base.h | 264 return mask_; in GetMask() 343 RefPtr<Mask> mask_; member in OHOS::Ace::RenderBoxBase
|
H A D | render_box_base.cpp | 757 mask_ = box->GetMask();
|
/foundation/arkui/ace_engine/interfaces/inner_api/drawable_descriptor/ |
H A D | drawable_descriptor.cpp | 293 mask_ = std::shared_ptr<Media::PixelMap>(pixelMapPtr.release()); in GetDefaultMask() 295 if (errorCode != 0 || !mask_) { in GetDefaultMask() 339 mask_ = std::shared_ptr<Media::PixelMap>(pixelMapPtr.release()); in GetMaskByPath() 341 if (errorCode != 0 || !mask_) { in GetMaskByPath() 362 mask_ = std::shared_ptr<Media::PixelMap>(pixelMapPtr.release()); in GetMaskByName() 364 if (errorCode != 0 || !mask_) { in GetMaskByName() 400 if (mask_.has_value()) { in GetMask() 401 return std::make_unique<DrawableDescriptor>(mask_.value()); in GetMask() 405 return std::make_unique<DrawableDescriptor>(mask_.value()); in GetMask() 409 return std::make_unique<DrawableDescriptor>(mask_ in GetMask() [all...] |
H A D | drawable_descriptor.h | 145 mask_ = mask; in SetMask() 205 OptionalPixelMap mask_; member in OHOS::Ace::Napi::LayeredDrawableDescriptor
|
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/property/ |
H A D | rs_property_drawable_bounds_geometry.cpp | 296 RSMaskDrawable::RSMaskDrawable(std::shared_ptr<RSMask> mask) : mask_(std::move(mask)) in RSMaskDrawable() 319 canvas.Translate(bounds.GetLeft() + mask_->GetSvgX(), bounds.GetTop() + mask_->GetSvgY()); in Draw() 320 canvas.Scale(mask_->GetScaleX(), mask_->GetScaleY()); in Draw() 321 canvas.DrawSVGDOM(mask_->GetSvgDom()); in Draw() 343 canvas.Translate(bounds.GetLeft() + mask_->GetSvgX(), bounds.GetTop() + mask_->GetSvgY()); in Draw() 344 canvas.Scale(mask_->GetScaleX(), mask_ in Draw() [all...] |
H A D | rs_properties.cpp | 2363 mask_ = mask; in SetMask() 2364 if (mask_) { in SetMask() 2373 return mask_; in GetMask()
|
/foundation/multimedia/av_session/interfaces/inner_api/native/session/include/ |
H A D | avcall_state.h | 70 AVCallStateMaskType mask_; member in OHOS::AVSession::AVCallState
|
H A D | avplayback_state.h | 148 PlaybackStateMaskType mask_; member in OHOS::AVSession::AVPlaybackState
|
/foundation/communication/netmanager_base/services/netmanagernative/include/netsys/ |
H A D | netlink_socket_diag.h | 80 uint32_t mask_; member
|
/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_base/unittest/property/ |
H A D | rs_properties_painter_test.cpp | 1489 EXPECT_TRUE(properties.mask_ == nullptr); in HWTEST_F() 1491 properties.mask_ = std::make_shared<RSMask>(); in HWTEST_F() 1492 properties.mask_->type_ = MaskType::PIXEL_MAP; in HWTEST_F() 1493 properties.mask_->image_ = std::make_shared<Drawing::Image>(); in HWTEST_F() 1495 EXPECT_TRUE(properties.mask_ != nullptr); in HWTEST_F() 1497 properties.mask_->type_ = MaskType::PATH; in HWTEST_F() 1499 EXPECT_TRUE(properties.mask_ != nullptr); in HWTEST_F() 1501 properties.mask_->type_ = MaskType::GRADIENT; in HWTEST_F() 1503 EXPECT_TRUE(properties.mask_ != nullptr); in HWTEST_F() 1505 properties.mask_ in HWTEST_F() [all...] |
H A D | rs_property_drawable_bounds_geometry_test.cpp | 2027 EXPECT_EQ(drawable->mask_, nullptr); in HWTEST_F() 2031 EXPECT_NE(drawable->mask_, nullptr); in HWTEST_F() 2032 EXPECT_EQ(drawable->mask_->GetImage(), nullptr); in HWTEST_F() 2037 EXPECT_NE(drawable->mask_, nullptr); in HWTEST_F() 2038 EXPECT_NE(drawable->mask_->GetImage(), nullptr); in HWTEST_F()
|
/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_base/unittest/drawable/ |
H A D | rs_property_drawable_background_test.cpp | 127 node.renderContent_->GetMutableRenderProperties().mask_.reset(); in HWTEST_F() 131 node.renderContent_->GetMutableRenderProperties().mask_.reset(); in HWTEST_F() 135 node.renderContent_->GetMutableRenderProperties().mask_.reset(); in HWTEST_F() 145 node.renderContent_->GetMutableRenderProperties().mask_.reset(); in HWTEST_F()
|
/foundation/graphic/graphic_2d/rosen/test/render/render_base/unittest/draw/ |
H A D | rs_property_draw_background_test.cpp | 127 node.renderContent_->GetMutableRenderProperties().mask_.reset(); in HWTEST_F() 131 node.renderContent_->GetMutableRenderProperties().mask_.reset(); in HWTEST_F() 135 node.renderContent_->GetMutableRenderProperties().mask_.reset(); in HWTEST_F() 145 node.renderContent_->GetMutableRenderProperties().mask_.reset(); in HWTEST_F()
|
/foundation/communication/netmanager_base/interfaces/innerkits/netmanagernative/include/ |
H A D | netsys_net_diag_data.h | 83 std::string mask_; member
|
/foundation/communication/netmanager_base/frameworks/native/netmanagernative/ |
H A D | netsys_net_diag_data.cpp | 224 if (!parcel.WriteString(mask_)) { in Marshalling() 253 if (!parcel.ReadString(routeTable.mask_)) { in Unmarshalling()
|
/foundation/arkui/ace_engine/test/unittest/interfaces/ |
H A D | drawable_descriptor_test.cpp | 665 drawable.mask_ = pixelMap; in HWTEST_F() 720 drawable.mask_ = pixelMap; in HWTEST_F()
|
/foundation/communication/netmanager_base/test/netmanagernative/unittest/netsys_manager_test/ |
H A D | net_diag_wrapper_test.cpp | 336 "mask_:%{public}s iface_:%{public}s flags_: %{public}s metric_:%{public}d ref_:%{public}d use_:%{public}d ", in HWTEST_F() 337 rtable.destination_.c_str(), rtable.gateway_.c_str(), rtable.mask_.c_str(), rtable.iface_.c_str(), in HWTEST_F() 494 routeTable.mask_ = TEST_STRING_VALUE; in HWTEST_F()
|
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/property/ |
H A D | rs_property_drawable_bounds_geometry.h | 147 std::shared_ptr<RSMask> mask_; member in OHOS::Rosen::RSMaskDrawable
|
H A D | rs_properties.h | 658 std::shared_ptr<RSMask> mask_ = nullptr; member in OHOS::Rosen::final
|
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/test/ |
H A D | device_matrix_test.cpp | 46 uint16_t mask_ = DeviceMatrix::INVALID_LEVEL; member
|
/foundation/communication/netmanager_base/services/netmanagernative/src/netsys/ |
H A D | net_diag_wrapper.cpp | 477 routeTable.mask_ = match[maskPos].str(); in ExtractRouteTableInfo()
|