/foundation/multimedia/av_session/frameworks/js/napi/session/src/ |
D | napi_media_description.cpp | 126 std::string property; in GetMediaId() local 127 auto status = NapiUtils::GetNamedProperty(env, in, "mediaId", property); in GetMediaId() 129 status = NapiUtils::GetNamedProperty(env, in, "assetId", property); in GetMediaId() 132 out.SetMediaId(property); in GetMediaId() 138 napi_value property {}; in SetMediaId() local 139 auto status = NapiUtils::SetValue(env, in.GetMediaId(), property); in SetMediaId() 140 CHECK_RETURN((status == napi_ok) && (property != nullptr), "create property failed", status); in SetMediaId() 141 status = napi_set_named_property(env, out, "mediaId", property); in SetMediaId() 143 status = napi_set_named_property(env, out, "assetId", property); in SetMediaId() 151 std::string property; in GetAssetId() local [all …]
|
D | napi_meta_data.cpp | 173 std::string property; in GetAssetId() local 174 auto status = NapiUtils::GetNamedProperty(env, in, "assetId", property); in GetAssetId() 176 out.SetAssetId(property); in GetAssetId() 182 napi_value property {}; in SetAssetId() local 183 auto status = NapiUtils::SetValue(env, in.GetAssetId(), property); in SetAssetId() 184 CHECK_RETURN((status == napi_ok) && (property != nullptr), "create property failed", status); in SetAssetId() 185 status = napi_set_named_property(env, out, "assetId", property); in SetAssetId() 192 std::string property; in GetTitle() local 193 auto status = NapiUtils::GetNamedProperty(env, in, "title", property); in GetTitle() 195 out.SetTitle(property); in GetTitle() [all …]
|
D | napi_playback_state.cpp | 137 int32_t property; in GetState() local 138 auto status = NapiUtils::GetNamedProperty(env, in, "state", property); in GetState() 140 out.SetState(property); in GetState() 146 napi_value property {}; in SetState() local 147 auto status = NapiUtils::SetValue(env, in.GetState(), property); in SetState() 148 CHECK_RETURN((status == napi_ok) && (property != nullptr), "create property failed", status); in SetState() 149 status = napi_set_named_property(env, out, "state", property); in SetState() 156 double property; in GetSpeed() local 157 auto status = NapiUtils::GetNamedProperty(env, in, "speed", property); in GetSpeed() 159 out.SetSpeed(property); in GetSpeed() [all …]
|
D | napi_queue_item.cpp | 71 int32_t property; in GetItemId() local 72 auto status = NapiUtils::GetNamedProperty(env, in, "itemId", property); in GetItemId() 74 out.SetItemId(property); in GetItemId() 80 napi_value property {}; in SetItemId() local 81 auto status = NapiUtils::SetValue(env, in.GetItemId(), property); in SetItemId() 82 CHECK_RETURN((status == napi_ok) && (property != nullptr), "create property failed", status); in SetItemId() 83 status = napi_set_named_property(env, out, "itemId", property); in SetItemId() 90 AVMediaDescription property {}; in GetDescription() local 91 auto status = NapiUtils::GetNamedProperty(env, in, "description", property); in GetDescription() 93 out.SetDescription(std::make_shared<AVMediaDescription>(property)); in GetDescription() [all …]
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/swiper/ |
D | swiper_utils.h | 36 static bool IsStretch(const RefPtr<SwiperLayoutProperty>& property) in IsStretch() argument 39 CHECK_NULL_RETURN(property, true); in IsStretch() 40 if (property->HasDisplayCount() && !property->HasMinSize()) { in IsStretch() 44 …return property->GetDisplayMode().value_or(SwiperDisplayMode::STRETCH) == SwiperDisplayMode::STRET… in IsStretch() 47 static float GetItemSpace(const RefPtr<SwiperLayoutProperty>& property) in GetItemSpace() argument 49 auto scale = property->GetLayoutConstraint()->scaleProperty; in GetItemSpace() 50 return ConvertToPx(property->GetItemSpace().value_or(0.0_px), scale).value_or(0); in GetItemSpace() 54 … const RefPtr<SwiperLayoutProperty>& property, const OptionalSizeF& idealSize, bool getAutoFill) in CreateChildConstraint() argument 56 auto layoutConstraint = property->CreateChildConstraint(); in CreateChildConstraint() 58 auto displayCount = property->GetDisplayCount().value_or(1); in CreateChildConstraint() [all …]
|
/foundation/window/window_manager/window_scene/common/src/ |
D | window_session_property.cpp | 26 WindowSessionProperty::WindowSessionProperty(const sptr<WindowSessionProperty>& property) in WindowSessionProperty() argument 28 CopyFrom(property); in WindowSessionProperty() 281 void WindowSessionProperty::SetSystemBarProperty(WindowType type, const SystemBarProperty& property) in SetSystemBarProperty() argument 284 sysBarPropMap_[type] = property; in SetSystemBarProperty() 381 …d WindowSessionProperty::UnmarshallingWindowLimits(Parcel& parcel, WindowSessionProperty* property) in UnmarshallingWindowLimits() argument 385 property->SetWindowLimits(windowLimits); in UnmarshallingWindowLimits() 406 …d WindowSessionProperty::UnMarshallingSystemBarMap(Parcel& parcel, WindowSessionProperty* property) in UnMarshallingSystemBarMap() argument 412 property->SetSystemBarProperty(type, prop); in UnMarshallingSystemBarMap() 434 … WindowSessionProperty::UnmarshallingTouchHotAreas(Parcel& parcel, WindowSessionProperty* property) in UnmarshallingTouchHotAreas() argument 441 property->touchHotAreas_.emplace_back( in UnmarshallingTouchHotAreas() [all …]
|
/foundation/ability/ability_runtime/test/moduletest/ability_delegator_test/ |
D | iability_monitor_module_test.cpp | 104 …std::shared_ptr<ADelegatorAbilityProperty> property = std::make_shared<ADelegatorAbilityProperty>(… variable 105 property->token_ = new MockAbilityDelegatorStub; 106 property->name_ = PROPERTY_ABILITY_NAME; 107 EXPECT_TRUE(iabilityMonitor.Match(property)); 121 …std::shared_ptr<DelegatorAbilityStageProperty> property = std::make_shared<DelegatorAbilityStagePr… variable 122 property->moduleName_ = PROPERTY_ABILITY_STAGE_MODULE_NAME; 123 property->srcEntrance_ = PROPERTY_ABILITY_STAGE_SOURCE_ENTRANCE; 124 EXPECT_TRUE(stageMonitor.Match(property)); 127 property->moduleName_ = PROPERTY_ABILITY_STAGE_MODULE_NAME2; 128 property->srcEntrance_ = PROPERTY_ABILITY_STAGE_SOURCE_ENTRANCE; [all …]
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/render/adapter/ |
D | rosen_modifier_property.cpp | 22 bool CreateOrSetModifierValue(std::shared_ptr<Rosen::RSAnimatableProperty<T>>& property, const T& v… in CreateOrSetModifierValue() argument 24 if (property == nullptr) { in CreateOrSetModifierValue() 25 property = std::make_shared<Rosen::RSAnimatableProperty<T>>(value); in CreateOrSetModifierValue() 28 property->Set(value); in CreateOrSetModifierValue() 34 …std::shared_ptr<Rosen::RSAnimatableProperty<Rosen::Vector2f>>& property, const Rosen::Vector2f& va… in AddOrChangeScaleModifier() argument 36 bool isCreate = CreateOrSetModifierValue(property, value); in AddOrChangeScaleModifier() 39 modifier = std::make_shared<Rosen::RSScaleModifier>(property); in AddOrChangeScaleModifier() 46 std::shared_ptr<Rosen::RSAnimatableProperty<float>>& property, const float value) in AddOrChangeTranslateZModifier() argument 48 bool isCreate = CreateOrSetModifierValue(property, value); in AddOrChangeTranslateZModifier() 51 modifier = std::make_shared<Rosen::RSTranslateZModifier>(property); in AddOrChangeTranslateZModifier() [all …]
|
D | rosen_modifier_adapter.cpp | 100 inline std::shared_ptr<RSPropertyBase> ConvertToRSProperty(const RefPtr<PropertyBase>& property) in ConvertToRSProperty() argument 103 CONVERT_PROP(property, PropertyBool, bool); in ConvertToRSProperty() 104 CONVERT_PROP(property, PropertySizeF, SizeF); in ConvertToRSProperty() 105 CONVERT_PROP(property, PropertyOffsetF, OffsetF); in ConvertToRSProperty() 106 CONVERT_PROP(property, PropertyInt, int32_t); in ConvertToRSProperty() 107 CONVERT_PROP(property, PropertyFloat, float); in ConvertToRSProperty() 108 CONVERT_PROP(property, PropertyString, std::string); in ConvertToRSProperty() 109 CONVERT_PROP(property, PropertyColor, Color); in ConvertToRSProperty() 110 CONVERT_PROP(property, PropertyRectF, RectF); in ConvertToRSProperty() 111 CONVERT_ANIMATABLE_PROP(property, AnimatablePropertyOffsetF, OffsetF); in ConvertToRSProperty() [all …]
|
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/modifier/ |
D | rs_render_modifier.h | 80 RSGeometryTransRenderModifier(const std::shared_ptr<RSRenderProperty<SkMatrix>>& property) in RSGeometryTransRenderModifier() argument 81 : property_(property ? property : std::make_shared<RSRenderProperty<SkMatrix>>()) {} in RSGeometryTransRenderModifier() 83 … RSGeometryTransRenderModifier(const std::shared_ptr<RSRenderProperty<Drawing::Matrix>>& property) 84 : property_(property ? property : std::make_shared<RSRenderProperty<Drawing::Matrix>>()) {} 122 RSDrawCmdListRenderModifier(const std::shared_ptr<RSRenderProperty<DrawCmdListPtr>>& property) in RSDrawCmdListRenderModifier() argument 123 : property_(property ? property : std::make_shared<RSRenderProperty<DrawCmdListPtr>>()) in RSDrawCmdListRenderModifier() 126 …awCmdListRenderModifier(const std::shared_ptr<RSRenderProperty<Drawing::DrawCmdListPtr>>& property) 127 … : property_(property ? property : std::make_shared<RSRenderProperty<Drawing::DrawCmdListPtr>>()) 170 const std::shared_ptr<RSRenderProperty<RSRenderParticleVector>>& property) in RSParticleRenderModifier() argument 171 : property_(property ? property in RSParticleRenderModifier() [all …]
|
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/modifier/ |
D | rs_render_property.cpp | 43 auto property = std::static_pointer_cast<RSRenderAnimatableProperty<float>>(val); in Marshalling() local 44 if (property == nullptr) { in Marshalling() 47 …return parcel.WriteUint64(property->GetId()) && RSMarshallingHelper::Marshalling(parcel, property-… in Marshalling() 50 auto property = std::static_pointer_cast<RSRenderAnimatableProperty<Color>>(val); in Marshalling() local 51 if (property == nullptr) { in Marshalling() 54 …return parcel.WriteUint64(property->GetId()) && RSMarshallingHelper::Marshalling(parcel, property-… in Marshalling() 57 auto property = std::static_pointer_cast<RSRenderAnimatableProperty<Matrix3f>>(val); in Marshalling() local 58 if (property == nullptr) { in Marshalling() 61 …return parcel.WriteUint64(property->GetId()) && RSMarshallingHelper::Marshalling(parcel, property-… in Marshalling() 64 auto property = std::static_pointer_cast<RSRenderAnimatableProperty<Quaternion>>(val); in Marshalling() local [all …]
|
/foundation/graphic/graphic_2d/rosen/modules/render_service_client/core/modifier/ |
D | rs_modifier.h | 26 explicit RSModifier(const std::shared_ptr<RSPropertyBase>& property) in RSModifier() argument 27 : property_(property ? property : std::make_shared<RSPropertyBase>()) in RSModifier() 43 RSModifier(const std::shared_ptr<RSPropertyBase>& property, const RSModifierType type) in RSModifier() argument 44 : property_(property ? property : std::make_shared<RSPropertyBase>()) in RSModifier() 54 void AttachProperty(const std::shared_ptr<RSPropertyBase>& property); 99 RSGeometryModifier(const std::shared_ptr<RSPropertyBase>& property, const RSModifierType type) in RSGeometryModifier() argument 100 : RSModifier(property, type) in RSGeometryModifier() 108 RSBackgroundModifier(const std::shared_ptr<RSPropertyBase>& property, const RSModifierType type) in RSBackgroundModifier() argument 109 : RSModifier(property, type) in RSBackgroundModifier() 117 RSContentModifier(const std::shared_ptr<RSPropertyBase>& property, const RSModifierType type) in RSContentModifier() argument [all …]
|
D | rs_property_modifier.h | 25 explicit RSBoundsModifier(const std::shared_ptr<RSPropertyBase>& property); 34 explicit RSBoundsSizeModifier(const std::shared_ptr<RSPropertyBase>& property); 43 explicit RSBoundsPositionModifier(const std::shared_ptr<RSPropertyBase>& property); 52 explicit RSFrameModifier(const std::shared_ptr<RSPropertyBase>& property); 61 explicit RSPositionZModifier(const std::shared_ptr<RSPropertyBase>& property); 70 explicit RSSandBoxModifier(const std::shared_ptr<RSPropertyBase>& property); 79 explicit RSPivotModifier(const std::shared_ptr<RSPropertyBase>& property); 88 explicit RSPivotZModifier(const std::shared_ptr<RSPropertyBase>& property); 97 explicit RSQuaternionModifier(const std::shared_ptr<RSPropertyBase>& property); 106 explicit RSRotationModifier(const std::shared_ptr<RSPropertyBase>& property); [all …]
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/flex/ |
D | flex_layout_pattern.h | 61 auto property = GetLayoutProperty<FlexLayoutProperty>(); in GetScopeFocusAlgorithm() local 62 if (!property) { in GetScopeFocusAlgorithm() 66 if (property->GetFlexDirection().has_value()) { in GetScopeFocusAlgorithm() 67 isVertical = property->GetFlexDirection().value() == FlexDirection::COLUMN || in GetScopeFocusAlgorithm() 68 property->GetFlexDirection().value() == FlexDirection::COLUMN_REVERSE; in GetScopeFocusAlgorithm() 95 auto property = GetLayoutProperty<FlexLayoutProperty>(); in ToJsonValue() local 96 CHECK_NULL_VOID(property); in ToJsonValue() 98 auto direction = property->GetFlexDirection().value_or(FlexDirection::ROW); in ToJsonValue() 103 …V2::ConvertFlexAlignToStirng(property->GetMainAxisAlign().value_or(FlexAlign::FLEX_START)).c_str()… in ToJsonValue() 105 …V2::ConvertItemAlignToStirng(property->GetCrossAxisAlign().value_or(FlexAlign::FLEX_START)).c_str(… in ToJsonValue() [all …]
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/test/pattern/option/ |
D | option_test_ng.cpp | 291 OptionPaintProperty property; variable 292 EXPECT_FALSE(property.GetHover().has_value()); 293 EXPECT_FALSE(property.GetPress().has_value()); 294 EXPECT_FALSE(property.GetNeedDivider().has_value()); 295 EXPECT_FALSE(property.GetHasIcon().has_value()); 300 property.UpdateHover(true); 301 property.UpdatePress(true); 302 property.UpdateNeedDivider(true); 303 property.UpdateHasIcon(true); 304 EXPECT_TRUE(property.GetHover().value()); [all …]
|
/foundation/communication/bluetooth_service/services/bluetooth/service/src/util/ |
D | xml_parse.h | 79 …onst std::string §ion, const std::string &subSection, const std::string &property, int &value); 93 …const std::string §ion, const std::string &subSection, const std::string &property, std::strin… 106 …nst std::string §ion, const std::string &subSection, const std::string &property, bool &value); 120 …const std::string §ion, const std::string &subSection, const std::string &property, const int … 132 …ol SetValue(const std::string §ion, const std::string &subSection, const std::string &property, 146 …const std::string §ion, const std::string &subSection, const std::string &property, const bool… 176 …asProperty(const std::string §ion, const std::string &subSection, const std::string &property); 197 …veProperty(const std::string §ion, const std::string &subSection, const std::string &property); 209 bool GetValue(const std::string §ion, const std::string &property, int &value); 220 bool GetValue(const std::string §ion, const std::string &property, std::string &value); [all …]
|
/foundation/window/window_manager/utils/src/ |
D | window_property.cpp | 26 WindowProperty::WindowProperty(const sptr<WindowProperty>& property) in WindowProperty() argument 28 CopyFrom(property); in WindowProperty() 274 void WindowProperty::SetSystemBarProperty(WindowType type, const SystemBarProperty& property) in SetSystemBarProperty() argument 277 sysBarPropMap_[type] = property; in SetSystemBarProperty() 630 void WindowProperty::MapUnmarshalling(Parcel& parcel, WindowProperty* property) in MapUnmarshalling() argument 639 property->SetSystemBarProperty(type, prop); in MapUnmarshalling() 658 void WindowProperty::UnmarshallingTouchHotAreas(Parcel& parcel, WindowProperty* property) in UnmarshallingTouchHotAreas() argument 665 property->touchHotAreas_.emplace_back( in UnmarshallingTouchHotAreas() 679 void WindowProperty::UnmarshallingTransform(Parcel& parcel, WindowProperty* property) in UnmarshallingTransform() argument 692 property->SetTransform(trans); in UnmarshallingTransform() [all …]
|
/foundation/window/window_manager/wmserver/test/unittest/ |
D | window_node_test.cpp | 151 sptr<WindowProperty> property = new WindowProperty(); in CreateWindowProperty() local 152 property->SetWindowId(windowId); in CreateWindowProperty() 153 property->SetWindowName(windowName); in CreateWindowProperty() 154 return property; in CreateWindowProperty() 177 auto property = CreateWindowProperty(1, windowName); variable 178 ASSERT_NE(nullptr, property); 180 sptr<WindowNode> windowNode2 = new WindowNode(property); 192 auto property = CreateWindowProperty(2, windowName); variable 193 ASSERT_NE(nullptr, property); 201 sptr<WindowNode> windowNode = new WindowNode(property, iWindow, surfaceNode); [all …]
|
/foundation/window/window_manager/window_scene/test/unittest/ |
D | window_session_property_test.cpp | 47 WindowSessionProperty* property = new WindowSessionProperty(); variable 48 ASSERT_EQ(property->GetDragEnabled(), true); 49 property->SetDragEnabled(false); 50 ASSERT_EQ(property->GetDragEnabled(), false); 60 WindowSessionProperty* property = new WindowSessionProperty(); variable 61 ASSERT_EQ(property->GetRaiseEnabled(), true); 62 property->SetRaiseEnabled(false); 63 ASSERT_EQ(property->GetRaiseEnabled(), false);
|
/foundation/communication/bluetooth_service/services/bluetooth/service/src/common/ |
D | adapter_device_config.cpp | 82 bool AdapterDeviceConfig::SetValue(const std::string §ion, const std::string &property, const i… in SetValue() argument 85 return pimpl->parse_.SetValue(section, property, value); in SetValue() 88 bool AdapterDeviceConfig::SetValue(const std::string §ion, const std::string &property, const s… in SetValue() argument 91 return pimpl->parse_.SetValue(section, property, value); in SetValue() 94 bool AdapterDeviceConfig::GetValue(const std::string §ion, const std::string &property, int &va… in GetValue() argument 97 return pimpl->parse_.GetValue(section, property, value); in GetValue() 100 bool AdapterDeviceConfig::GetValue(const std::string §ion, const std::string &property, std::st… in GetValue() argument 104 return pimpl->parse_.GetValue(section, property, value); in GetValue() 107 bool AdapterDeviceConfig::GetValue(const std::string §ion, const std::string &property, bool &v… in GetValue() argument 110 return pimpl->parse_.GetValue(section, property, value); in GetValue() [all …]
|
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/operation/ |
D | database_oper.h | 37 int RekeyRecover(const KvDBProperties &property); 39 int ClearImportTempFile(const KvDBProperties &property) const; 41 int ClearExportedTempFiles(const KvDBProperties &property) const; 44 int ExecuteRekey(const CipherPassword &passwd, const KvDBProperties &property); 54 int GetCtrlFilePrefix(const KvDBProperties &property, std::string &filePrefix) const; 62 …t(const std::string &filePath, const CipherPassword &passwd, const KvDBProperties &property) const; 71 …t(const std::string &filePath, const CipherPassword &passwd, const KvDBProperties &property) const; 74 …int CreateStatusCtrlFile(const KvDBProperties &property, std::string &orgCtrlFile, std::string &ne… 82 static int GetWorkDir(const KvDBProperties &property, std::string &workDir); 86 static void InitImportFileInfo(ImportFileInfo &info, const KvDBProperties &property); [all …]
|
D | database_oper.cpp | 33 int DatabaseOper::ExecuteRekey(const CipherPassword &passwd, const KvDBProperties &property) in ExecuteRekey() argument 43 errCode = CreateStatusCtrlFile(property, ctrlFileName, newFileName); in ExecuteRekey() 52 (void)RekeyRecover(property); in ExecuteRekey() 58 (void)RekeyRecover(property); in ExecuteRekey() 76 int DatabaseOper::GetCtrlFilePrefix(const KvDBProperties &property, std::string &filePrefix) const in GetCtrlFilePrefix() argument 79 int errCode = GetWorkDir(property, baseDir); in GetCtrlFilePrefix() 84 int dbType = property.GetIntProp(KvDBProperties::DATABASE_TYPE, KvDBProperties::LOCAL_TYPE); in GetCtrlFilePrefix() 90 int DatabaseOper::RekeyRecover(const KvDBProperties &property) in RekeyRecover() argument 93 int errCode = GetWorkDir(property, workDir); in RekeyRecover() 98 int dbType = property.GetIntProp(KvDBProperties::DATABASE_TYPE, KvDBProperties::LOCAL_TYPE); in RekeyRecover() [all …]
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/state_mgmt/src/lib/common/ |
D | observed_object.ts | 123 public removeOwningProperty(property: IPropertySubscriber): void { 124 return this.removeOwningPropertyById(property.id__()); 173 public has(target: Object, property: PropertyKey) : boolean { 174 stateMgmtConsole.debug(`SubscribableHandler: has '${property.toString()}'.`); 175 … return (property === ObservedObject.__IS_OBSERVED_OBJECT) ? true : Reflect.has(target, property); 178 public get(target: Object, property: PropertyKey, receiver?: any): any { 179 stateMgmtConsole.debug(`SubscribableHandler: get '${property.toString()}'.`); 180 …return (property === ObservedObject.__OBSERVED_OBJECT_RAW_OBJECT) ? target : Reflect.get(target, p… 183 public set(target: Object, property: PropertyKey, newValue: any): boolean { 184 switch (property) { [all …]
|
/foundation/multimedia/media_library/frameworks/services/media_mtp/src/payload_data/ |
D | get_object_prop_desc_data.cpp | 58 context_->property = MtpPacketTool::GetUInt32(buffer, offset); in Parser() 104 switch (context_->property) { in GetPropInt() 106 …return std::make_shared<Property>(context_->property, MTP_TYPE_UINT16_CODE, false, context_->forma… in GetPropInt() 109 return std::make_shared<Property>(context_->property, MTP_TYPE_UINT16_CODE); in GetPropInt() 114 return std::make_shared<Property>(context_->property, MTP_TYPE_UINT32_CODE); in GetPropInt() 116 return std::make_shared<Property>(context_->property, MTP_TYPE_UINT64_CODE); in GetPropInt() 118 return std::make_shared<Property>(context_->property, MTP_TYPE_UINT128_CODE); in GetPropInt() 125 switch (context_->property) { in GetPropStr() 134 return std::make_shared<Property>(context_->property, MTP_TYPE_STRING_CODE); in GetPropStr() 138 …std::shared_ptr<Property> prop = std::make_shared<Property>(context_->property, MTP_TYPE_STRING_CO… in GetPropStr() [all …]
|
/foundation/graphic/graphic_2d/rosen/modules/render_service_client/test/unittest/animation/ |
D | rs_curve_animation_test.cpp | 41 auto property = std::make_shared<RSAnimatableProperty<Vector4f>>(ANIMATION_START_BOUNDS); variable 42 auto modifier = std::make_shared<RSBoundsModifier>(property); 47 auto curveAnimation = std::make_shared<RSCurveAnimation>(property, endProperty); 74 auto property = std::make_shared<RSAnimatableProperty<Vector4f>>(ANIMATION_START_BOUNDS); variable 75 auto modifier = std::make_shared<RSBoundsModifier>(property); 81 auto curveAnimation = std::make_shared<RSCurveAnimation>(property, startProperty, endProperty); 107 auto property = std::make_shared<RSAnimatableProperty<Vector4f>>(ANIMATION_START_BOUNDS); variable 108 auto modifier = std::make_shared<RSBoundsModifier>(property); 114 auto curveAnimation = std::make_shared<RSCurveAnimation>(property, startProperty, endProperty); 140 auto property = std::make_shared<RSAnimatableProperty<Vector4f>>(ANIMATION_START_BOUNDS); variable [all …]
|