Home
last modified time | relevance | path

Searched refs:e1 (Results 1 - 25 of 30) sorted by relevance

12

/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/src/drawing/effect/
H A Dpath_effect.cpp50 PathEffect::PathEffect(PathEffectType t, PathEffect& e1, PathEffect& e2) noexcept : PathEffect() in PathEffect()
54 impl_->InitWithSum(e1, e2); in PathEffect()
56 impl_->InitWithCompose(e1, e2); in PathEffect()
94 std::shared_ptr<PathEffect> PathEffect::CreateSumPathEffect(PathEffect& e1, PathEffect& e2) in CreateSumPathEffect() argument
96 return std::make_shared<PathEffect>(PathEffect::PathEffectType::SUM, e1, e2); in CreateSumPathEffect()
99 std::shared_ptr<PathEffect> PathEffect::CreateComposePathEffect(PathEffect& e1, PathEffect& e2) in CreateComposePathEffect() argument
101 return std::make_shared<PathEffect>(PathEffect::PathEffectType::COMPOSE, e1, e2); in CreateComposePathEffect()
/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/src/drawing/engine_adapter/skia_adapter/
H A Dskia_path_effect.cpp61 void SkiaPathEffect::InitWithSum(const PathEffect& e1, const PathEffect& e2) in InitWithSum() argument
63 auto first = e1.GetImpl<SkiaPathEffect>(); in InitWithSum()
70 void SkiaPathEffect::InitWithCompose(const PathEffect& e1, const PathEffect& e2) in InitWithCompose() argument
72 auto outer = e1.GetImpl<SkiaPathEffect>(); in InitWithCompose()
H A Dskia_path_effect.h42 void InitWithSum(const PathEffect& e1, const PathEffect& e2) override;
43 void InitWithCompose(const PathEffect& e1, const PathEffect& e2) override;
/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/src/drawing/engine_adapter/impl_interface/
H A Dpath_effect_impl.h42 virtual void InitWithSum(const PathEffect& e1, const PathEffect& e2) = 0;
43 virtual void InitWithCompose(const PathEffect& e1, const PathEffect& e2) = 0;
/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/include/effect/
H A Dpath_effect.h103 * @param e1 first PathEffect
107 static std::shared_ptr<PathEffect> CreateSumPathEffect(PathEffect& e1, PathEffect& e2);
115 static std::shared_ptr<PathEffect> CreateComposePathEffect(PathEffect& e1, PathEffect& e2);
127 PathEffect(PathEffectType t, PathEffect& e1, PathEffect& e2) noexcept;
/foundation/arkui/ace_engine/advanced_ui_component/segmentbutton/interfaces/
H A Dsegmentbutton.js46 const e1 = {
245 this.fontColor = options.fontColor ?? e1.q1;
246 this.selectedFontColor = options.selectedFontColor ?? e1.s1;
247 this.fontSize = options.fontSize ?? e1.u1;
248 this.selectedFontSize = options.selectedFontSize ?? e1.v1;
251 this.backgroundColor = options.backgroundColor ?? e1.BACKGROUND_COLOR;
252 this.selectedBackgroundColor = options.selectedBackgroundColor ?? e1.w1;
257 this.backgroundBlurStyle = options.backgroundBlurStyle ?? e1.d2;
272 this.selectedFontColor = options.selectedFontColor ?? e1.t1;
274 e1
[all...]
/foundation/graphic/graphic_utils_lite/interfaces/kits/gfx_utils/diagram/vertexprimitive/
H A Dgeometry_range_adapter.h69 auto e1 = &arr[0]; in CompareLessThreshold() local
74 for (; less(*(e1 = &(arr[jIndex + 1])), *(e2 = &(arr[jIndex]))); jIndex--) { in CompareLessThreshold()
75 SwapElements(*e1, *e2); in CompareLessThreshold()
/foundation/arkui/ace_engine/advanced_ui_component/innerfullscreenlaunchcomponent/interfaces/
H A Dinnerfullscreenlaunchcomponent.js30 constructor(d1, e1, f1, g1 = -1, h1 = undefined, i1) {
48 this.setInitiallyProvidedValue(e1);
/foundation/arkui/advanced_ui_component/innerfullscreenlaunchcomponent/interfaces/
H A Dinnerfullscreenlaunchcomponent.js30 constructor(d1, e1, f1, g1 = -1, h1 = undefined, i1) {
48 this.setInitiallyProvidedValue(e1);
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/common/
H A Drs_occlusion_region.cpp33 bool EventSortByY(const Event& e1, const Event& e2) in EventSortByY() argument
35 if (e1.y_ == e2.y_) { in EventSortByY()
36 return e1.type_ < e2.type_; in EventSortByY()
38 return e1.y_ < e2.y_; in EventSortByY()
/foundation/window/window_manager/utils/src/
H A Dwm_occlusion_region.cpp59 bool EventSortByY(const Event& e1, const Event& e2) in EventSortByY() argument
61 if (e1.y_ == e2.y_) { in EventSortByY()
62 return e1.type_ < e2.type_; in EventSortByY()
64 return e1.y_ < e2.y_; in EventSortByY()
/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_base/fuzztest/rsbasecommon_fuzzer/
H A Drsbasecommon_fuzzer.cpp163 float e1 = GetData<float>(); in RSObjOcclusionFuzzTest() local
164 std::shared_ptr<Occlusion::Node> node = std::make_shared<Occlusion::Node>(s1, e1); in RSObjOcclusionFuzzTest()
/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_base/unittest/common/
H A Drs_occlusion_region_test.cpp88 Event e1 = Event(0, Event::Type::OPEN, 0, 100); in HWTEST_F() local
90 ASSERT_TRUE(EventSortByY(e1, e2)); in HWTEST_F()
93 ASSERT_FALSE(EventSortByY(e1, e3)); in HWTEST_F()
/foundation/distributeddatamgr/relational_store/frameworks/js/napi/cloud_extension/
H A Dcloud_extension_stub.js122 let e1 = this.unMarshallingUnSubInfo(t);
123 let f1 = await this.cloudService.unsubscribe(e1);
226 let e1 = {};
229 return e1;
233 e1[d2] = [];
239 e1[d2].push(t.readString());
242 return e1;
/foundation/window/window_manager/utils/include/
H A Dwm_occlusion_region.h71 bool EventSortByY(const Event& e1, const Event& e2);
/foundation/arkui/ace_engine/advanced_ui_component/subheader/interfaces/
H A Dsubheader.js2102 static numberToSize(e1) {
2103 if (typeof e1 === 'string') {
2104 const f1 = parseInt(e1);
2106 } else if (typeof e1 === 'number') {
2107 return e1;
2109 return getContext().resourceManager.getNumber(e1);
/foundation/arkui/ace_engine/advanced_ui_component/foldsplitcontainer/interfaces/
H A Dfoldsplitcontainer.js520 const e1 = withDefaultValue(
524 if (e1) {
/foundation/arkui/ace_engine/advanced_ui_component/interstitialdialogaction/interfaces/
H A Dinterstitialdialogaction.js179 (l ? l : this).observeComponentCreation2((d1, e1, f1 = m) => {
/foundation/arkui/advanced_ui_component/interstitialdialogaction/interfaces/
H A Dinterstitialdialogaction.js179 (l ? l : this).observeComponentCreation2((d1, e1, f1 = m) => {
/foundation/arkui/ace_engine/advanced_ui_component/chip/interfaces/
H A Dchip.js70 e1: {
989 .getNumberByName(this.theme.label.e1.params[0].split('.')[2]);
990 return this.theme.label.e1;
1565 let e1 = this.getUIContext();
1566 this.fontSizeScale = e1.getHostContext()?.config?.fontSizeScale ?? 1;
/foundation/graphic/graphic_3d/lume/Lume_3D/src/util/
H A Dmesh_util.cpp397 const auto e1 = v2 - v1; in CalculateTangentImpl() local
400 const Math::Vec3 sdir { (e1 * st2.y - e2 * st1.y) * r }; in CalculateTangentImpl()
405 const Math::Vec3 tdir { (e2 * st1.x - e1 * st2.x) * r }; in CalculateTangentImpl()
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/common/
H A Drs_occlusion_region.h172 bool EventSortByY(const Event& e1, const Event& e2);
/foundation/arkui/ace_engine/advanced_ui_component/composetitlebar/interfaces/
H A Dcomposetitlebar.js1236 setController(e1) {
1237 this.controller = e1;
/foundation/arkui/ace_engine/advanced_ui_component/atomicserviceweb/interfaces/
H A Datomicserviceweb.js1217 constructor(e1) {
1218 this.url = e1;
/foundation/arkui/advanced_ui_component/atomicserviceweb/interfaces/
H A Datomicserviceweb.js1217 constructor(e1) {
1218 this.url = e1;

Completed in 32 milliseconds

12