Home
last modified time | relevance | path

Searched refs:e2 (Results 1 – 25 of 81) sorted by relevance

1234

/ohos5.0/base/update/updater/utils/include/
H A Dmacros_updater.h35 #define SIZE_IMPL(e1, e2, e3, e4, e5, e6, e7, e8, e9, e10, N, ...) N argument
40 #define GET_TYPE_2(e1, e2) e1 argument
41 #define GET_TYPE_3(e1, e2, e3) e1, e2 argument
42 #define GET_TYPE_4(e1, e2, e3, e4) e1, e2, e3 argument
44 #define GET_NAME_2(e1, e2) e2 argument
45 #define GET_NAME_3(e1, e2, e3) e3 argument
46 #define GET_NAME_4(e1, e2, e3, e4) e4 argument
/ohos5.0/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() argument
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()
/ohos5.0/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;
/ohos5.0/commonlibrary/ets_utils/js_util_module/container/list/
H A Djs_list.ts195 let e2: NodeObj<T> = obj.head;
196 if (e1 !== undefined && e2 !== undefined) {
197 while (e1.next !== undefined && e2.next !== undefined) {
199 e2 = e2.next;
200 if (e1.element !== e2.element) {
204 return !(e1.next !== undefined || e2.next !== undefined);
205 } else if (e1 !== undefined && e2 === undefined) {
207 } else if (e1 === undefined && e2 !== undefined) {
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/include/effect/
H A Dpath_effect.h107 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;
/ohos5.0/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;
/ohos5.0/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";
/ohos5.0/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()
/ohos5.0/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;
1343 let g3 = d3.indexOf(this.optionsArray.e2);
1368 if (this.focusIndex < this.optionsArray.e2) {
1387 this.optionsArray.e2 = void 0;
2196 this.onItemClicked(e2);
[all …]
/ohos5.0/foundation/window/window_manager/resources/abc/pip/interface/
H A DPiPContent.js44 constructor(b2, c2, d2, e2 = -1, f2 = undefined, g2) { argument
45 super(b2, d2, e2, g2);
/ohos5.0/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()
/ohos5.0/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()
/ohos5.0/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()
/ohos5.0/foundation/multimedia/av_session/avpicker/
H A Davpicker_mock.js59 this.observeComponentCreation2((e2, f2) => {
/ohos5.0/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++) {
/ohos5.0/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); variable
90 ASSERT_TRUE(EventSortByY(e1, e2));
/ohos5.0/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) {
/ohos5.0/foundation/window/window_manager/utils/include/
H A Dwm_occlusion_region.h71 bool EventSortByY(const Event& e1, const Event& e2);
/ohos5.0/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()
/ohos5.0/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);
/ohos5.0/foundation/arkui/ace_engine/advanced_ui_component/splitlayout/interfaces/
H A Dsplitlayout.js249 this.observeComponentCreation2((e2, f2) => {
/ohos5.0/docs/zh-cn/application-dev/quick-start/
H A Dtypescript-to-arkts-migration-guide.md1390 let e2 = (new Number(5.0)) instanceof Number; // true
1410 let e2 = (new Number(5.0)) instanceof Number; // true
3111 let e2: ESObject = 1; // 编译时错误:不能用非动态值初始化ESObject类型变量
/ohos5.0/foundation/arkui/ace_engine/advanced_ui_component/multinavigation/interfaces/
H A Dmultinavigation.js1265 popPlaceHolder(e2) {
1266 this.subStackList[e2].pop(false);
/ohos5.0/foundation/arkui/ace_engine/advanced_ui_component/tabtitlebar/interfaces/
H A Dtabtitlebar.js1284 Row.onHover((e2) => {
1288 this.isOnHover = e2;

1234