/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/src/drawing/effect/ |
H A D | path_effect.cpp | 50 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 D | skia_path_effect.cpp | 61 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 D | skia_path_effect.h | 42 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 D | path_effect_impl.h | 42 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 D | path_effect.h | 104 * @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 D | interstitialdialogaction.js | 49 (function (e2) { 50 e2[e2["DARK"] = 0] = "DARK"; 51 e2[e2["LIGHT"] = 1] = "LIGHT";
|
/foundation/arkui/advanced_ui_component/interstitialdialogaction/interfaces/ |
H A D | interstitialdialogaction.js | 49 (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 D | geometry_range_adapter.h | 70 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 D | segmentbutton.js | 148 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 D | rs_occlusion_region.cpp | 33 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 D | wm_occlusion_region.cpp | 59 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 D | rsbasecommon_fuzzer.cpp | 166 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 D | rs_occlusion_region_test.cpp | 89 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 D | wm_occlusion_region.h | 71 bool EventSortByY(const Event& e1, const Event& e2);
|
/foundation/arkui/ace_engine/advanced_ui_component/composetitlebar/interfaces/ |
H A D | composetitlebar.js | 1083 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 D | cloud_extension_stub.js | 234 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 D | mesh_util.cpp | 398 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 D | rs_occlusion_region.h | 172 bool EventSortByY(const Event& e1, const Event& e2);
|
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/gaussdb_rd/test/unittest/api/ |
H A D | documentdb_data_test.cpp | 303 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 D | subheader.js | 1996 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 D | composelistitem.js | 1443 set touchDownColor(e2) { 1444 this.__touchDownColor.set(e2);
|
/foundation/arkui/ace_engine/advanced_ui_component/tabtitlebar/interfaces/ |
H A D | tabtitlebar.js | 1045 this.observeComponentCreation2((e2, f2) => {
|
/foundation/arkui/ace_engine/advanced_ui_component/chip/interfaces/ |
H A D | chip.js | 228 e2: {
|
/foundation/arkui/ace_engine/advanced_ui_component/treeview/interfaces/ |
H A D | treeview.js | 65 const e2 = '128vp'; 1748 y7: { minWidth: e2, maxWidth: f2 },
|