Home
last modified time | relevance | path

Searched refs:ScopeType (Results 1 – 25 of 30) sorted by relevance

12

/ohos5.0/commonlibrary/ets_utils/js_util_module/util/src/
H A Dutil_js.ts1482 public constructor(readonly lowerObj: ScopeType, readonly upperObj: ScopeType) {
1521 public clamp(value: ScopeType): ScopeType {
1533 public intersect(lowerObj: ScopeType, upperObj: ScopeType): Scope;
1537 let mLower: ScopeType;
1538 let mUpper: ScopeType;
1569 public expand(lowerObj: ScopeType, upperObj: ScopeType): Scope;
1570 public expand(x: ScopeType, y?: ScopeType): Scope {
1675 public clamp(value: ScopeType): ScopeType {
1692 public intersect(lowerObj: ScopeType, upperObj: ScopeType): ScopeHelper;
1736 public expand(lowerObj: ScopeType, upperObj: ScopeType): ScopeHelper;
[all …]
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/symbol/
H A Dsymbol_effect_options.h30 SymbolEffectOptions(SymbolEffectType effectType, ScopeType scopeType) in SymbolEffectOptions()
34 … SymbolEffectOptions(SymbolEffectType effectType, ScopeType scopeType, CommonSubType commonSubType) in SymbolEffectOptions()
50 void SetScopeType(ScopeType scopeType) in SetScopeType()
140 const std::optional<ScopeType>& GetScopeType() const in GetScopeType()
187 json->Put("scopeType", static_cast<int32_t>(scopeType_.value_or(ScopeType::LAYER))); in ToString()
205 std::optional<ScopeType> scopeType_;
H A Dconstants.h39 enum class ScopeType { enum
/ohos5.0/docs/zh-cn/application-dev/reference/apis-arkts/
H A Djs-apis-util.md2628 constructor(lowerObj: ScopeType, upperObj: ScopeType)
2779 intersect(lowerObj:ScopeType,upperObj:ScopeType):ScopeHelper
2839 getUpper(): ScopeType
2882 getLower(): ScopeType
2925 expand(lowerObj: ScopeType,upperObj: ScopeType): ScopeHelper
3221 clamp(value: ScopeType): ScopeType
5732 constructor(lowerObj: ScopeType, upperObj: ScopeType)
5875 intersect(lowerObj:ScopeType,upperObj:ScopeType):Scope
5929 getUpper(): ScopeType
6019 expand(lowerObj: ScopeType,upperObj: ScopeType): Scope
[all …]
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/
H A Djs_symbol.cpp170 if (scopeTypeNum >= static_cast<uint32_t>(ScopeType::LAYER) && in parseSymbolEffect()
171 scopeTypeNum <= static_cast<uint32_t>(ScopeType::WHOLE)) { in parseSymbolEffect()
172 symbolEffectOptions.SetScopeType(static_cast<ScopeType>(scopeTypeNum)); in parseSymbolEffect()
/ohos5.0/docs/zh-cn/release-notes/api-diff/v3.1-beta/
H A Djs-apidiff-v3.1-beta.md259 | 语言编译运行时-Scope | constructor(lowerObj: ScopeType, upperObj: ScopeType); | 新增 | |
262 | 语言编译运行时-Scope | intersect(lowerObj: ScopeType, upperObj: ScopeType): Scope; | 新增 | |
263 | 语言编译运行时-Scope | getUpper(): ScopeType; | 新增 | |
264 | 语言编译运行时-Scope | getLower(): ScopeType; | 新增 | |
265 | 语言编译运行时-Scope | expand(lowerObj: ScopeType, upperObj: ScopeType): Scope; | 新增 | |
267 | 语言编译运行时-Scope | expand(value: ScopeType): Scope; | 新增 | |
268 | 语言编译运行时-Scope | contains(value: ScopeType): boolean; | 新增 | |
270 | 语言编译运行时-Scope | clamp(value: ScopeType): ScopeType; | 新增 | |
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/flex/
H A Dflex_layout_pattern.h76 return { isVertical, true, isWrap_ ? ScopeType::PROJECT_AREA : ScopeType::FLEX }; in GetScopeFocusAlgorithm()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/event/
H A Dfocus_hub.h49 enum class ScopeType : int32_t { enum
307 ScopeFocusAlgorithm(bool isVertical, bool isLeftToRight, ScopeType scopeType) in ScopeFocusAlgorithm()
310 …ScopeFocusAlgorithm(bool isVertical, bool isLeftToRight, ScopeType scopeType, GetNextFocusNodeFunc… in ScopeFocusAlgorithm()
314 …sAlgorithm(ScopeFocusDirection direction, bool isVertical, bool isLeftToRight, ScopeType scopeType) in ScopeFocusAlgorithm()
317 …sAlgorithm(ScopeFocusDirection direction, bool isVertical, bool isLeftToRight, ScopeType scopeType, in ScopeFocusAlgorithm()
328 ScopeType scopeType { ScopeType::OTHERS };
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/stack/
H A Dstack_pattern.h60 ScopeType::OTHERS); in GetScopeFocusAlgorithm()
/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/pattern/symbol/
H A Dsymbol_test_ng.cpp56 …SymbolEffectOptions(OHOS::Ace::SymbolEffectType::BOUNCE, OHOS::Ace::ScopeType::WHOLE, OHOS::Ace::C…
366 EXPECT_EQ(symbolOptions.GetScopeType(), OHOS::Ace::ScopeType::WHOLE);
405 EXPECT_EQ(effectOptions.GetScopeType(), OHOS::Ace::ScopeType::WHOLE);
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/linear_layout/
H A Dlinear_layout_pattern.h61 return { isVertical_, true, ScopeType::FLEX }; in GetScopeFocusAlgorithm()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/relative_container/
H A Drelative_container_pattern.h60 return { true, true, ScopeType::PROJECT_AREA }; in GetScopeFocusAlgorithm()
/ohos5.0/docs/zh-cn/release-notes/api-diff/v3.2-Release/
H A Djs-apidiff-compiler-and-runtime.md39 |新增|NA|类名:ScopeHelper;<br>方法or属性:constructor(lowerObj: ScopeType, upperObj: ScopeType);|@ohos.util.…
40 |新增|NA|类名:ScopeHelper;<br>方法or属性:getUpper(): ScopeType;|@ohos.util.d.ts|
41 |新增|NA|类名:ScopeHelper;<br>方法or属性:getLower(): ScopeType;|@ohos.util.d.ts|
43 |新增|NA|类名:ScopeHelper;<br>方法or属性:clamp(value: ScopeType): ScopeType;|@ohos.util.d.ts|
189 |新增|NA|类名:ScopeHelper;<br>方法or属性:intersect(lowerObj: ScopeType, upperObj: ScopeType): ScopeHelper;|…
190 |新增|NA|类名:ScopeHelper;<br>方法or属性:expand(lowerObj: ScopeType, upperObj: ScopeType): ScopeHelper;|@oh…
271 …structor(lowerObj: ScopeType, upperObj: ScopeType);<br>旧版本信息:|类名:Scope;<br>方法or属性:constructor(lowe…
273 …rsect(lowerObj: ScopeType, upperObj: ScopeType): Scope;<br>旧版本信息:|类名:Scope;<br>方法or属性:intersect(lo…
274 |废弃版本有变化|类名:Scope;<br>方法or属性:getUpper(): ScopeType;<br>旧版本信息:|类名:Scope;<br>方法or属性:getUpper(): Scope…
276 …:expand(lowerObj: ScopeType, upperObj: ScopeType): Scope;<br>旧版本信息:|类名:Scope;<br>方法or属性:expand(low…
[all …]
/ohos5.0/docs/en/application-dev/reference/apis-arkts/
H A Djs-apis-util.md2629 constructor(lowerObj: ScopeType, upperObj: ScopeType)
2780 intersect(lowerObj:ScopeType,upperObj:ScopeType):ScopeHelper
2840 getUpper(): ScopeType
2883 getLower(): ScopeType
2926 expand(lowerObj: ScopeType,upperObj: ScopeType): ScopeHelper
3222 clamp(value: ScopeType): ScopeType
5733 constructor(lowerObj: ScopeType, upperObj: ScopeType)
5876 intersect(lowerObj:ScopeType,upperObj:ScopeType):Scope
5930 getUpper(): ScopeType
6020 expand(lowerObj: ScopeType,upperObj: ScopeType): Scope
[all …]
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/stepper/
H A Dstepper_pattern.h98 return ScopeFocusAlgorithm(true, true, ScopeType::OTHERS, in GetScopeFocusAlgorithm()
/ohos5.0/docs/en/release-notes/api-diff/v3.2-Release/
H A Djs-apidiff-compiler-and-runtime.md39 …peHelper;<br>Method or attribute name: constructor(lowerObj: ScopeType, upperObj: ScopeType);|@oho…
40 |Added|NA|Class name: ScopeHelper;<br>Method or attribute name: getUpper(): ScopeType;|@ohos.util.d…
41 |Added|NA|Class name: ScopeHelper;<br>Method or attribute name: getLower(): ScopeType;|@ohos.util.d…
42 |Added|NA|Class name: ScopeHelper;<br>Method or attribute name: contains(value: ScopeType): boolean…
43 |Added|NA|Class name: ScopeHelper;<br>Method or attribute name: clamp(value: ScopeType): ScopeType;…
189 …copeHelper;<br>Method or attribute name: intersect(lowerObj: ScopeType, upperObj: ScopeType): Scop…
190 …: ScopeHelper;<br>Method or attribute name: expand(lowerObj: ScopeType, upperObj: ScopeType): Scop…
271ScopeType, upperObj: ScopeType);<br>Old version: |Class name: Scope;<br>Method or attribute name:…
273ScopeType, upperObj: ScopeType): Scope;<br>Old version: |Class name: Scope;<br>Method or attribute…
276ScopeType, upperObj: ScopeType): Scope;<br>Old version: |Class name: Scope;<br>Method or attribute…
[all …]
/ohos5.0/docs/en/release-notes/api-diff/v3.1-beta/
H A Djs-apidiff-v3.1-beta.md259 | Multi-language Runtime - Scope| constructor(lowerObj: ScopeType, upperObj: ScopeType); | Added …
262 | Multi-language Runtime - Scope| intersect(lowerObj: ScopeType, upperObj: ScopeType): Scope; | Add…
263 | Multi-language Runtime - Scope| getUpper(): ScopeType; | Added | |
264 | Multi-language Runtime - Scope| getLower(): ScopeType; | Added | |
265 | Multi-language Runtime - Scope| expand(lowerObj: ScopeType, upperObj: ScopeType): Scope; | Added …
267 | Multi-language Runtime - Scope| expand(value: ScopeType): Scope; | Added | |
268 | Multi-language Runtime - Scope| contains(value: ScopeType): boolean; | Added | |
270 | Multi-language Runtime - Scope| clamp(value: ScopeType): ScopeType; | Added | |
/ohos5.0/docs/zh-cn/release-notes/api-diff/v4.0-Release to v3.2-Release/
H A Djs-apidiff-compiler-and-runtime.md274 |跨平台能力有变化|类名:util;<br>方法or属性:type ScopeType = ScopeComparable \| number;<br>旧版本信息:|类名:util;<br>方法or…
330 …uctor(lowerObj: ScopeType, upperObj: ScopeType);<br>旧版本信息:|类名:ScopeHelper;<br>方法or属性:constructor(l…
332 …lowerObj: ScopeType, upperObj: ScopeType): ScopeHelper;<br>旧版本信息:|类名:ScopeHelper;<br>方法or属性:inters…
333 …有变化|类名:ScopeHelper;<br>方法or属性:getUpper(): ScopeType;<br>旧版本信息:|类名:ScopeHelper;<br>方法or属性:getUpper(…
334 …有变化|类名:ScopeHelper;<br>方法or属性:getLower(): ScopeType;<br>旧版本信息:|类名:ScopeHelper;<br>方法or属性:getLower(…
336 …peHelper;<br>方法or属性:expand(value: ScopeType): ScopeHelper;<br>旧版本信息:|类名:ScopeHelper;<br>方法or属性:exp…
337 …eHelper;<br>方法or属性:contains(value: ScopeType): boolean;<br>旧版本信息:|类名:ScopeHelper;<br>方法or属性:contai…
339 …elper;<br>方法or属性:clamp(value: ScopeType): ScopeType;<br>旧版本信息:|类名:ScopeHelper;<br>方法or属性:clamp(val…
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/side_bar/
H A Dside_bar_container_pattern.h120 return { false, true, ScopeType::OTHERS }; in GetScopeFocusAlgorithm()
/ohos5.0/commonlibrary/ets_utils/
H A DREADME.en.md625 | constructor(lowerObj: ScopeType, upperObj : ScopeType) | A constructor used to create a **Scope**…
628 | intersect(lowerObj: ScopeType, upperObj: ScopeType): Scope | Obtains the intersection of this **S…
629 | getUpper(): ScopeType | Obtains the upper limit of this **Scope**.|
630 | getLower(): ScopeType | Obtains the lower limit of this **Scope**.|
631 | expand(lowerObj: ScopeType, upperObj: ScopeType): Scope | Obtains the union set of this **Scope*…
633 | expand(value: ScopeType): Scope | Obtains the union set of this **Scope** and the given value.|
634 | contains(value: ScopeType): boolean | Checks whether a value is within this **Scope**.|
636 | clamp(value: ScopeType): ScopeType | Limits a value to this **Scope**.|
H A DREADME.md1694 | constructor(lowerObj: ScopeType, upperObj : ScopeType) | 创建并返回一个Scope对象,用于创建指定下限和上限的作用域实例的构造函数。 |
1697 | intersect(lowerObj: ScopeType, upperObj: ScopeType): Scope | 获取当前范围与给定下限和上限范围的交集。 |
1698 | getUpper(): ScopeType | 获取当前范围的上限。 |
1699 | getLower(): ScopeType | 获取当前范围的下限。 |
1700 | expand(lowerObj: ScopeType, upperObj: ScopeType): Scope | 创建并返回包括当前范围和给定下限和上限的并集。 |
1702 | expand(value: ScopeType): Scope | 创建并返回包括当前范围和给定值的并集。 |
1703 | contains(value: ScopeType): boolean | 检查给定value是否包含在当前范围内。 |
1705 | clamp(value: ScopeType): ScopeType | 将给定value限定到当前范围内。 |
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/grid/
H A Dgrid_pattern.h103 return ScopeFocusAlgorithm(property->IsVertical(), true, ScopeType::OTHERS, in GetScopeFocusAlgorithm()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/list/
H A Dlist_pattern.h149 ScopeType::OTHERS, in GetScopeFocusAlgorithm()
/ohos5.0/docs/en/release-notes/api-diff/v4.0-Release-vs-v3.2-Release/
H A Djs-apidiff-compiler-and-runtime.md274 … name: type ScopeType = ScopeComparable \| number;<br>Old version information: |Class name: util;<…
330ScopeType, upperObj: ScopeType);<br>Old version information: |Class name: ScopeHelper;<br>Method o…
332ScopeType, upperObj: ScopeType): ScopeHelper;<br>Old version information: |Class name: ScopeHelper…
333 … name: getUpper(): ScopeType;<br>Old version information: |Class name: ScopeHelper;<br>Method or a…
334 … name: getLower(): ScopeType;<br>Old version information: |Class name: ScopeHelper;<br>Method or a…
336 …and(value: ScopeType): ScopeHelper;<br>Old version information: |Class name: ScopeHelper;<br>Metho…
337 …ains(value: ScopeType): boolean;<br>Old version information: |Class name: ScopeHelper;<br>Method o…
339 …alue: ScopeType): ScopeType;<br>Old version information: |Class name: ScopeHelper;<br>Method or at…
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/navigation/
H A Dnavigation_pattern.h86 return { false, true, ScopeType::FLEX }; in GetScopeFocusAlgorithm()

12