Home
last modified time | relevance | path

Searched refs:e2 (Results 1 - 24 of 24) sorted by relevance

/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
64 auto second = e2.GetImpl<SkiaPathEffect>(); in InitWithSum()
70 void SkiaPathEffect::InitWithCompose(const PathEffect& e1, const PathEffect& e2) in InitWithCompose() argument
73 auto inner = e2.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.h104 * @param e2 second 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/interstitialdialogaction/interfaces/
H A Dinterstitialdialogaction.js49 (function (e2) {
50 e2[e2["DARK"] = 0] = "DARK";
51 e2[e2["LIGHT"] = 1] = "LIGHT";
/foundation/arkui/advanced_ui_component/interstitialdialogaction/interfaces/
H A Dinterstitialdialogaction.js49 (function (e2) {
50 e2[e2["DARK"] = 0] = "DARK";
51 e2[e2["LIGHT"] = 1] = "LIGHT";
/foundation/graphic/graphic_utils_lite/interfaces/kits/gfx_utils/diagram/vertexprimitive/
H A Dgeometry_range_adapter.h70 auto e2 = &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/segmentbutton/interfaces/
H A Dsegmentbutton.js148 this.e2 = void 0;
161 this.e2 = this.length;
172 this.e2 = this.length - 1;
183 this.e2 = 0;
195 this.e2 = 0;
213 this.e2 = start;
1312 if (this.optionsArray.e2 === void 0 || this.optionsArray.deleteCount === void 0 ||
1320 if (this.selectedIndexes[0] < this.optionsArray.e2) {
1323 if (this.optionsArray.e2 + this.optionsArray.deleteCount > this.selectedIndexes[0]) {
1336 let g3 = d3.indexOf(this.optionsArray.e2);
[all...]
/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.cpp166 float e2 = GetData<float>(); in RSObjOcclusionFuzzTest() local
167 std::vector<Occlusion::Range> res = { Occlusion::Range(s2, e2) }; in RSObjOcclusionFuzzTest()
/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_base/unittest/common/
H A Drs_occlusion_region_test.cpp89 Event e2 = Event(1, Event::Type::CLOSE, 0, 100); in HWTEST_F() local
90 ASSERT_TRUE(EventSortByY(e1, e2)); in HWTEST_F()
/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/composetitlebar/interfaces/
H A Dcomposetitlebar.js1083 Row.onTouch((e2) => {
1087 if (e2.type === TouchType.Down) {
1090 if (e2.type === TouchType.Up || e2.type === TouchType.Cancel) {
/foundation/distributeddatamgr/relational_store/frameworks/js/napi/cloud_extension/
H A Dcloud_extension_stub.js234 let e2 = t.readInt();
235 if (e2 < 0 || e2 > MAX_SIZE) {
238 for (let f2 = 0; f2 < e2; f2++) {
/foundation/graphic/graphic_3d/lume/Lume_3D/src/util/
H A Dmesh_util.cpp398 const auto e2 = v3 - 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/distributeddatamgr/kv_store/frameworks/libs/distributeddb/gaussdb_rd/test/unittest/api/
H A Ddocumentdb_data_test.cpp303 R""({"field2":{"c_field":{"cc_field":{"ccc_field":{"ccc_field":[1, false, 1.234e2, ["hello world!"]]}}}}})""; in HWTEST_F()
/foundation/arkui/ace_engine/advanced_ui_component/subheader/interfaces/
H A Dsubheader.js1996 fontSizeValue(e2) {
1997 return e2.iconOptions?.symbolicIconOption?.fontSize ?
1998 Util.symbolFontSize(e2.iconOptions?.symbolicIconOption?.fontSize) : RIGHT_SINGLE_ICON_SIZE;
/foundation/arkui/ace_engine/advanced_ui_component/composelistitem/interfaces/
H A Dcomposelistitem.js1443 set touchDownColor(e2) {
1444 this.__touchDownColor.set(e2);
/foundation/arkui/ace_engine/advanced_ui_component/tabtitlebar/interfaces/
H A Dtabtitlebar.js1045 this.observeComponentCreation2((e2, f2) => {
/foundation/arkui/ace_engine/advanced_ui_component/chip/interfaces/
H A Dchip.js228 e2: {
/foundation/arkui/ace_engine/advanced_ui_component/treeview/interfaces/
H A Dtreeview.js65 const e2 = '128vp';
1748 y7: { minWidth: e2, maxWidth: f2 },

Completed in 22 milliseconds