Home
last modified time | relevance | path

Searched refs:numbers (Results 1 – 25 of 240) sorted by relevance

12345678910

/ohos5.0/docs/zh-cn/third-party-cases/
H A Dgriditem-drag-and-drop.md36 ForEach(this.numbers, (day: string) => {
77 ForEach(this.numbers, (day: string) => {
96 if(insertIndex < this.numbers.length){
106 [this.numbers[index1], this.numbers[index2]] = [this.numbers[index2], this.numbers[index1]];
118 @State numbers: String[] = []
136 this.numbers.push(i + '')
142 [this.numbers[index1], this.numbers[index2]] = [this.numbers[index2], this.numbers[index1]];
148 ForEach(this.numbers, (day: string) => {
184 if(insertIndex < this.numbers.length){
/ohos5.0/foundation/window/window_manager/wmserver/src/
H A Dwindow_manager_service.cpp347 if (numbers.size() == 1 && in ConfigureWindowManagerService()
357 if (numbers.size() == 1 in ConfigureWindowManagerService()
370 if (numbers.size() == 1 && numbers[0] > 0) { in ConfigureWindowManagerService()
405 if (numbers.size() == 1 && numbers[0] > 0) { in ConfigureWindowManagerService()
416 if (numbers.size() == 1 && numbers[0] > 0) { in ConfigureWindowManagerService()
423 if (numbers.size() == 1 && numbers[0] > 0) { in ConfigureWindowManagerService()
430 if (numbers.size() == 1 && in ConfigureWindowManagerService()
535 numbers.size() == 1 ? (windowAnimationConfig.opacity_ = numbers[0]) : float(); in ConfigWindowAnimation()
577 numbers.size() == 1 ? (startWinAnimationConfig.opacityStart_ = numbers[0]) : float(); in ConfigStartingWindowAnimation()
582 numbers.size() == 1 ? (startWinAnimationConfig.opacityEnd_ = numbers[0]) : float(); in ConfigStartingWindowAnimation()
[all …]
H A Dwindow_manager_config.cpp224 auto numbers = SplitNodeContent(currNode); in ReadIntNumbersConfigInfo() local
225 for (auto& num : numbers) { in ReadIntNumbersConfigInfo()
243 auto numbers = SplitNodeContent(currNode); in ReadFloatNumbersConfigInfo() local
244 for (auto& num : numbers) { in ReadFloatNumbersConfigInfo()
/ohos5.0/docs/en/application-dev/internationalization/
H A Dl10n-singular-plural.md5 Singular and plural numbers are usually distinguished by the following categories:
7 - zero: 0 or numbers ending with 0
9 - one: 1 or numbers ending with 1
11 - two: numbers ending with 2
13 - few: numbers with a small value
15 - many: numbers with a large value
H A Di18n-numbers-weights-measures.md5numbers, currencies, and units of measurement are expressed in different ways, including what symb…
26 3. Format numbers based on the configuration of **numberFormat**.
38 …um number of integer digits, minimum and maximum numbers of fraction digits, minimum and maximum n…
107 // Display numbers in scientific notation.
111 // Display numbers in the compact format.
115 // Display the signs in numbers.
119 // Display numbers in the percentage format.
H A DReadme-EN.md14 - [Number and Unit of Measurement Formatting](i18n-numbers-weights-measures.md)
15 - [Phone Number Formatting](i18n-phone-numbers.md)
/ohos5.0/docs/zh-cn/release-notes/changelogs/OpenHarmony_5.0.0.32/
H A Dchangelogs-arkts.md29 let numbers = Array.from(treeMap.keys())
30 for (let item of numbers) {
38 numbers = Array.from(treeMap.keys())
39 for (let item of numbers) {
53 for (let item of numbers) {
62 for (let item of numbers) {
78 for (let item of numbers) {
86 numbers = Array.from(treeMap.keys())
87 for (let item of numbers) {
101 for (let item of numbers) {
[all …]
/ohos5.0/foundation/arkui/ace_engine_lite/frameworks/packages/runtime-core/src/__test__/
H A Dindex.test.js234 numbers: [
245 () => vm.numbers[0][0],
253 vm.numbers[0].splice(0, 1, 4);
259 numbers: [
270 () => vm.numbers[0][0],
278 vm.numbers.splice(0, 1, [4, 4, 4, 4]);
328 numbers: [4, 1, 9, 2]
332 () => vm.numbers[0],
339 vm.numbers.sort();
/ohos5.0/docs/en/design/ux-design/
H A Dmultimodal-badge.md44 | ![numbers-1](figures/numbers-1.png)|![numbers-2](figures/numbers-2.png) |
50 ![numbers-specifications](figures/numbers-specifications.png)
/ohos5.0/base/notification/distributed_notification_service/frameworks/ans/src/
H A Dnotification_media_content.cpp44 std::string numbers {}; in Dump() local
45 std::for_each(sequenceNumbers_.begin(), sequenceNumbers_.end(), [&numbers](int32_t num) { in Dump()
46 numbers += std::to_string(num) + ", "; in Dump()
51 ", sequenceNumbers = " + numbers + in Dump()
/ohos5.0/foundation/window/window_manager/dmserver/src/
H A Ddisplay_manager_config.cpp152 auto numbers = Split(numbersStr, " "); in ReadIntNumbersConfigInfo() local
153 for (auto& num : numbers) { in ReadIntNumbersConfigInfo()
218 for (auto& numbers : intNumbersConfig_) { in DumpConfig() local
219 …WLOGFI("[DmConfig] Numbers: %{public}s %{public}zu", numbers.first.c_str(), numbers.second.size()); in DumpConfig()
220 for (auto& num : numbers.second) { in DumpConfig()
/ohos5.0/docs/zh-cn/application-dev/reference/apis-arkui/arkui-ts/
H A Dts-container-grid.md859 ForEach(this.numbers, (day: string) => {
1015 @State numbers: number[] = []
1025 this.numbers.push(i)
1196 @State numbers: string[] = []
1213 this.numbers.push(i + '')
1219 temp = this.numbers[index1];
1220 this.numbers[index1] = this.numbers[index2];
1221 this.numbers[index2] = temp;
1246 this.text = this.numbers[itemIndex]
1284 @State numbers: string[] = []
[all …]
H A Dts-container-griditem.md223 …@State numbers: string[] = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "1…
237 ForEach(this.numbers, (item: string) => {
276 @State numbers: String[] = ['0', '1', '2']
281 ForEach(this.numbers, (day: string) => {
282 ForEach(this.numbers, (day: string) => {
305 ForEach(this.numbers, (day: string) => {
306 ForEach(this.numbers, (day: string) => {
/ohos5.0/docs/en/application-dev/reference/apis-arkui/arkui-ts/
H A Dts-container-griditem.md46 …t.<br>In situations where you need to designate the start row and column numbers as well as the nu…
98 > In situations where you need to designate the start row and column numbers as well as the number…
222 …@State numbers: string[] = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "1…
234 }.rowStart(1).rowEnd(2).columnStart(1).columnEnd(2) // Set valid row and column numbers.
236 ForEach(this.numbers, (item: string) => {
254 …}.columnStart(1).columnEnd(4) // Set only the column numbers. The layout does not start from the f…
275 @State numbers: String[] = ['0', '1', '2']
280 ForEach(this.numbers, (day: string) => {
281 ForEach(this.numbers, (day: string) => {
304 ForEach(this.numbers, (day: string) => {
[all …]
H A Dts-container-gridcol.md39 …onents of the grid are sorted in ascending order based on their sequence numbers.<br>Default value…
86 …ponent. Child components of the grid are sorted in ascending order based on their sequence numbers.
98 …onents of the grid are sorted in ascending order based on their sequence numbers.<br>Default value…
102 Describes the numbers of grid columns occupied by the **GridCol** component on devices with differe…
/ohos5.0/docs/en/release-notes/changelogs/OpenHarmony_5.0.0.32/
H A Dchangelogs-arkts.md31 for (let item of numbers) {
39 numbers = Array.from(treeMap.keys())
40 for (let item of numbers) {
54 for (let item of numbers) {
62 numbers = Array.from(treeSet.values())
63 for (let item of numbers) {
80 for (let item of numbers) {
88 numbers = Array.from(treeMap.keys())
89 for (let item of numbers) {
103 for (let item of numbers) {
[all …]
/ohos5.0/docs/zh-cn/contribute/
H A DOpenHarmony-Application-Typescript-JavaScript-coding-guide.md276 const numbers = [1, 2, 3, 4, 5];
279 for (const num in numbers) {
285 for (let i = 0; i < numbers.length; i++) {
286 increasedByOne.push(numbers[i] + 1);
293 const numbers = [1, 2, 3, 4, 5];
296 for (const num of numbers) {
301 numbers.forEach(num => sum += num);
303 const sum = numbers.reduce((total, num) => total + num, 0);
306 numbers.forEach(num => increasedByOne.push(num + 1));
308 const increasedByOne = numbers.map(num => num + 1);
/ohos5.0/docs/en/application-dev/security/CryptoArchitectureKit/
H A Dcrypto-generate-random-number.md5 > Since API version 12, wearable devices support operations related to obtaining random numbers.
7numbers are used to generate temporary session keys and asymmetric encryption algorithm keys. In e…
34 …tion algorithm uses the **RAND_priv_bytes** interface of OpenSSL to generate secure random numbers.
/ohos5.0/docs/zh-cn/application-dev/performance/
H A Dimprove-application-response.md586 export function MyBuilder(numbers: string[]) {
589 ForEach(numbers, (item: string) => {
616 const numbers: string[] = [];
618 numbers.push('' + i)
620 return numbers;
694 private numbers: string[] | null = null;
696 constructor(numbers: string[]) {
698 this.numbers = numbers;
718 this.rootNode.build(this.wrapBuilder, this.numbers)
736 * @param numbers
[all …]
/ohos5.0/docs/en/application-dev/reference/apis-arkui/js-service-widget-ui/
H A Djs-service-widget-basic-clock.md22numbers based on **clockconfig**.<br>If you set this attribute to **true**, ensure that **digitRad…
39numbers and the center of the clock face circle/Half of the side length of the clock face image.<b…
40numbers/Side length of the watch face<br>- The value range is (0, 0.142].<br>- This parameter is …
51 | font-family | &lt;string&gt; | sans-serif | No | Font family used for clock face numbers, in wh…
/ohos5.0/docs/zh-cn/application-dev/quick-start/
H A Darkts-coding-style-guide.md670 const numbers = [1, 2, 3, 4, 5];
673 for (let i = 0; i < numbers.length; i++) {
674 increasedByOne.push(numbers[i] + 1);
681 const numbers = [1, 2, 3, 4, 5];
683 const increasedByOne: number[] = numbers.map(num => num + 1);
/ohos5.0/docs/zh-cn/application-dev/internationalization/
H A DReadme-CN.md14 - [数字与度量衡国际化](i18n-numbers-weights-measures.md)
15 - [电话号码格式化](i18n-phone-numbers.md)
/ohos5.0/docs/en/application-dev/security/AssetStoreKit/
H A Dasset-scenario2.md5 …ytes in size, including passwords, app tokens, and other critical data (such as bank card numbers).
9 …ed to view their bank card numbers using a financial/banking application. To ensure security, you …
/ohos5.0/foundation/window/window_manager/window_scene/session_manager/src/
H A Dscreen_scene_config.cpp235 auto numbers = Split(numbersStr, " "); in ReadIntNumbersConfigInfo() local
236 for (auto& num : numbers) { in ReadIntNumbersConfigInfo()
388 for (auto& numbers : intNumbersConfig_) { in DumpConfig() local
390 numbers.first.c_str(), numbers.second.size()); in DumpConfig()
391 for (auto& num : numbers.second) { in DumpConfig()
H A Dwindow_scene_config.cpp245 auto numbers = SplitNodeContent(currNode); in ReadIntNumbersConfigInfo() local
246 for (auto& num : numbers) { in ReadIntNumbersConfigInfo()
264 auto numbers = SplitNodeContent(currNode); in ReadFloatNumbersConfigInfo() local
265 for (auto& num : numbers) { in ReadFloatNumbersConfigInfo()

12345678910