/foundation/arkui/ace_engine/advanced_ui_component/atomicserviceweb/interfaces/ |
H A D | atomicserviceweb.js | 904 popPath(p4) { 905 if (!this.checkNavPathStack('navPathStack.pop', p4)) { 908 if (p4.name) { 909 let r4 = this.navPathStack?.popToName(p4.name, p4.result, p4.animated); 911 this.errorWithCodeAndMsg(POP_PATH_NAME_NOT_EXIST_ERROR, p4); 914 } else if (p4.index || p4.index === 0) { 915 if (p4 [all...] |
/foundation/arkui/advanced_ui_component/atomicserviceweb/interfaces/ |
H A D | atomicserviceweb.js | 904 popPath(p4) { 905 if (!this.checkNavPathStack('navPathStack.pop', p4)) { 908 if (p4.name) { 909 let r4 = this.navPathStack?.popToName(p4.name, p4.result, p4.animated); 911 this.errorWithCodeAndMsg(POP_PATH_NAME_NOT_EXIST_ERROR, p4); 914 } else if (p4.index || p4.index === 0) { 915 if (p4 [all...] |
/foundation/arkui/ui_lite/frameworks/components/ |
H A D | ui_chart.cpp | 709 const Point& p4, in GetLineCrossPoint() 713 if ((MATH_MIN(p1.x, p2.x) <= MATH_MAX(p3.x, p4.x)) && (MATH_MIN(p3.x, p4.x) <= MATH_MAX(p1.x, p2.x)) && in GetLineCrossPoint() 714 (MATH_MIN(p1.y, p2.y) <= MATH_MAX(p3.y, p4.y)) && (MATH_MIN(p3.y, p4.y) <= MATH_MAX(p1.y, p2.y))) { in GetLineCrossPoint() 716 if ((p4.y - p3.y) * (p2.x - p1.x) - (p4.x - p3.x) * (p2.y - p1.y) != 0) { in GetLineCrossPoint() 724 int64_t d = p3.y - p4.y; in GetLineCrossPoint() 725 int64_t e = p4.x - p3.x; in GetLineCrossPoint() 726 int64_t f = p4 in GetLineCrossPoint() 706 GetLineCrossPoint(const Point& p1, const Point& p2, const Point& p3, const Point& p4, Point& cross) GetLineCrossPoint() argument [all...] |
/foundation/arkui/ace_engine/advanced_ui_component/chipgroup/interfaces/ |
H A D | chipgroup.js | 267 const p4 = _item; 276 Button.accessibilityText(this.getAccessibilityText(p4)); 277 Button.accessibilityDescription(this.getAccessibilityDescription(p4)); 278 Button.accessibilityLevel(this.getAccessibilityLevel(p4)); 280 if (!(p4 instanceof SymbolGlyphModifier)) { 281 p4.action(); 288 if (p4 instanceof SymbolGlyphModifier) { 294 SymbolGlyph.attributeModifier.bind(this)(p4); 301 } else if (this.isSymbolItem(p4)) { 303 this.SymbolItemBuilder.bind(this)(p4); [all...] |
/foundation/graphic/graphic_3d/lume/metaobject/include/meta/base/ |
H A D | macros.h | 29 #define META_GET_MACRO5_IMPL(p0, p1, p2, p3, p4, macro, ...) macro
|
/foundation/arkui/ui_lite/frameworks/draw/ |
H A D | draw_utils.cpp | 756 OpacityType p4 = GetPxAlphaForAlphaImg(in.info, {intUPlus1, intVPlus1}); local 780 const int64_t outA = __SMUAD(p1, w1) + __SMUAD(p2, w2) + __SMUAD(p3, w3) + __SMUAD(p4, w4); 782 const int64_t outA = p1 * w1 + p2 * w2 + p3 * w3 + p4 * w4; 862 const Color16 p4 = *(reinterpret_cast<Color16*>(&imgHead[px1 + in.srcLineWidth + in.pixelSize])); local 886 __SMUAD(p1.red, w1) + __SMUAD(p2.red, w2) + __SMUAD(p3.red, w3) + __SMUAD(p4.red, w4); 888 __SMUAD(p1.green, w1) + __SMUAD(p2.green, w2) + __SMUAD(p3.green, w3) + __SMUAD(p4.green, w4); 890 __SMUAD(p1.blue, w1) + __SMUAD(p2.blue, w2) + __SMUAD(p3.blue, w3) + __SMUAD(p4.blue, w4); 892 const int64_t outR = p1.red * w1 + p2.red * w2 + p3.red * w3 + p4.red * w4; 893 const int64_t outG = p1.green * w1 + p2.green * w2 + p3.green * w3 + p4.green * w4; 894 const int64_t outB = p1.blue * w1 + p2.blue * w2 + p3.blue * w3 + p4 981 const Color24 p4 = *(reinterpret_cast<Color24*>(&imgHead[px1 + in.srcLineWidth + in.pixelSize])); global() local 1073 const ColorType p4 = *(reinterpret_cast<ColorType*>(&imgHead[px1 + in.srcLineWidth + in.pixelSize])); global() local 1141 const ColorType p4 = *(reinterpret_cast<ColorType*>(&imgHead[px1 + in.srcLineWidth + in.pixelSize])); global() local 1387 const ColorType p4 = *(reinterpret_cast<ColorType*>(&imgHead[px1 + in.srcLineWidth + in.pixelSize])); global() local [all...] |
/foundation/arkui/ace_engine/advanced_ui_component/toolbar/interfaces/ |
H A D | toolbar.js | 16 let __decorate = (this && this.__decorate) || function (m4, n4, o4, p4) { 18 let r4 = q4 < 3 ? n4 : p4 === null ? p4 = Object.getOwnPropertyDescriptor(n4, o4) : p4; 21 r4 = Reflect.decorate(m4, n4, o4, p4); 732 getIconColor(p4) { 733 if (this.activateIndex === p4 && (this.toolBarList[p4]?.state === ItemState.ACTIVATE)) { 734 return this.toolBarList[p4]?.activatedIconColor ?? this.iconActivePrimaryColor; 736 return this.toolBarList[p4] [all...] |
/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_base/unittest/render/ |
H A D | rs_attraction_effect_filter_test.cpp | 174 Drawing::Point p4 = { 30.0f, 30.0f }; in HWTEST_F() local 176 Drawing::Point point = firstEffectFilter.CubicBezier(p1, p2, p3, p4, t); in HWTEST_F()
|
/foundation/arkui/ui_lite/interfaces/kits/components/ |
H A D | ui_chart.h | 920 bool GetLineCrossPoint(const Point& p1, const Point& p2, const Point& p3, const Point& p4, Point& cross);
|
/foundation/distributeddatamgr/relational_store/frameworks/js/napi/cloud_extension/ |
H A D | cloud_extension_stub.js | 722 let p4 = await this.shareCenter.changePrivilege(l4, m4, n4, o4); 723 this.marshallingResults(u, p4);
|
/foundation/arkui/ace_engine/advanced_ui_component/subheader/interfaces/ |
H A D | subheader.js | 1547 this.observeComponentCreation2((n4, p4) => { 1548 if (p4) {
|
/foundation/arkui/ace_engine/advanced_ui_component/editabletitlebar/interfaces/ |
H A D | editabletitlebar.js | 1029 this.observeComponentCreation2((p4, z4) => {
|
/foundation/arkui/ace_engine/advanced_ui_component/treeview/interfaces/ |
H A D | treeview.js | 4384 constructor(m4, n4, itemWidth, itemHeight, o4, p4) { 4400 if (p4 !== undefined) { 4401 this.s15 = p4;
|
/foundation/arkui/ace_engine/advanced_ui_component/tabtitlebar/interfaces/ |
H A D | tabtitlebar.js | 615 this.observeComponentCreation2((o4, p4) => {
|