/ohos5.0/foundation/multimedia/media_library/frameworks/utils/src/ |
H A D | media_privacy_manager.cpp | 183 …FilterProxyRanges *ranges = (FilterProxyRanges *)malloc(sizeof(*ranges) + sizeof(ranges->range[0])… in SendRangesToIoctl() local 189 ranges->reserved = 0; in SendRangesToIoctl() 199 free(ranges); in SendRangesToIoctl() 282 sort(ranges.begin(), ranges.end(), CmpMode); in SortRangesAndCheck() 283 const auto u_idx = unique(ranges.begin(), ranges.end()); in SortRangesAndCheck() 284 ranges.erase(u_idx, ranges.end()); in SortRangesAndCheck() 287 if (ranges[0].first >= ranges[0].second) { in SortRangesAndCheck() 289 ranges[0].first, ranges[0].second); in SortRangesAndCheck() 294 if ((ranges[i].first >= ranges[i].second) || (ranges[i].first < ranges[i - 1].second)) { in SortRangesAndCheck() 296 … ranges[i].first, ranges[i].second, ranges[i - 1].first, ranges[i - 1].second); in SortRangesAndCheck() [all …]
|
/ohos5.0/foundation/window/window_manager/utils/src/ |
H A D | wm_occlusion_region.cpp | 143 node.GetAndRange(ranges); in getRange() 146 node.GetSubRange(ranges); in getRange() 149 node.GetOrRange(ranges); in getRange() 152 node.GetXOrRange(ranges); in getRange() 177 …if (r.preRects[i].left_ == indexAt[ranges[j].start_] && r.preRects[i].right_ == indexAt[ranges[j].… in UpdateRects() 185 …r.curRects.emplace_back(Rect { indexAt[ranges[j].start_], r.preY, indexAt[ranges[j].end_], r.curY … in UpdateRects() 190 for (; j < ranges.size(); j++) { in UpdateRects() 191 …r.curRects.emplace_back(Rect { indexAt[ranges[j].start_], r.preY, indexAt[ranges[j].end_], r.curY … in UpdateRects() 246 std::vector<Range> ranges; in RegionOpLocal() local 252 ranges.clear(); in RegionOpLocal() [all …]
|
/ohos5.0/foundation/multimedia/image_framework/frameworks/innerkitsimpl/test/unittest/exif_metadata_accessor_test/ |
H A D | exif_getfilterarea_test.cpp | 127 std::vector<std::pair<uint32_t, uint32_t>> ranges; variable 131 for (const auto& range : ranges) { 173 std::vector<std::pair<uint32_t, uint32_t>> ranges; variable 177 for (const auto& range : ranges) { 219 std::vector<std::pair<uint32_t, uint32_t>> ranges; variable 223 for (const auto& range : ranges) { 265 std::vector<std::pair<uint32_t, uint32_t>> ranges; variable 269 for (const auto& range : ranges) { 307 std::vector<std::pair<uint32_t, uint32_t>> ranges; variable 325 std::vector<std::pair<uint32_t, uint32_t>> ranges; variable [all …]
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/common/ |
H A D | rs_occlusion_region.cpp | 153 node.GetAndRange(ranges); in getRange() 156 node.GetOrRange(ranges); in getRange() 159 node.GetXOrRange(ranges); in getRange() 162 node.GetSubRange(ranges); in getRange() 175 …if (r.preRects[i].left_ == indexAt[ranges[j].start_] && r.preRects[i].right_ == indexAt[ranges[j].… in UpdateRects() 183 …r.curRects.emplace_back(Rect { indexAt[ranges[j].start_], r.preY, indexAt[ranges[j].end_], r.curY … in UpdateRects() 187 for (; j < ranges.size(); j++) { in UpdateRects() 188 …r.curRects.emplace_back(Rect { indexAt[ranges[j].start_], r.preY, indexAt[ranges[j].end_], r.curY … in UpdateRects() 264 std::vector<Range> ranges; in RegionOpLocal() local 270 ranges.clear(); in RegionOpLocal() [all …]
|
/ohos5.0/docs/en/application-dev/reference/apis-location-kit/ |
H A D | _location___basic_info.md | 20 …north latitude, and a negative value indicates south latitude. The value ranges from –90 to 90. On… 21 …east longitude, and a negative value indicates west longitude. The value ranges from -180 to 180. … 25 | double [direction](#direction) | Direction information. The value ranges from **0** to **360**, i… 30 | double [directionAccuracy](#directionaccuracy) | Direction accuracy. The value ranges from **0** … 71 Direction information. The value ranges from 0 to 360, in degrees. 80 Direction accuracy. The value ranges from 0 to 360, in degrees. 89 …north latitude, and a negative value indicates south latitude. The value ranges from –90 to 90. On… 107 …east longitude, and a negative value indicates west longitude. The value ranges from -180 to 180. …
|
/ohos5.0/foundation/multimedia/image_framework/frameworks/innerkitsimpl/accessor/src/ |
H A D | abstract_exif_metadata_accessor.cpp | 66 … std::vector<std::pair<uint32_t, uint32_t>> &ranges) in GetFilterArea() argument 73 exifMetadata_->GetFilterArea(exifKeys, ranges); in GetFilterArea() 74 if (ranges.empty()) { in GetFilterArea() 77 for (auto& range : ranges) { in GetFilterArea()
|
H A D | png_exif_metadata_accessor.cpp | 386 std::vector<std::pair<uint32_t, uint32_t>> &ranges) in GetFilterArea() argument 397 exifMetadata_->GetFilterArea(exifKeys, ranges); in GetFilterArea() 398 if (ranges.empty()) { in GetFilterArea() 401 for (auto& range : ranges) { in GetFilterArea()
|
/ohos5.0/base/startup/init/services/etc/passwd_appender/ |
H A D | passwd_appender.gni | 24 # ranges: uid/gid value range (Required) 32 # ranges = ["0-6999", "7000-8000", "8001-9000"] 39 assert(defined(invoker.ranges), "ranges must be defined.") 51 input_ranges = string_join(":", invoker.ranges) 67 "--input-ranges",
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/texgine/unittest/ |
H A D | font_parser_test.cpp | 267 Ranges ranges; variable 269 ranges.AddRange(range); 271 ranges.AddRange(range2); 272 EXPECT_EQ(ranges.GetGlyphId(3), Ranges::INVALID_GLYPH_ID); 273 EXPECT_EQ(ranges.GetGlyphId(0), 1); 274 EXPECT_EQ(ranges.GetGlyphId(4), 6); 275 ranges.Dump();
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_base/unittest/common/ |
H A D | rs_occlusion_region_test.cpp | 449 std::vector<Range> ranges; variable 451 region.getRange(ranges, node, Region::OP::AND); 452 region.getRange(ranges, node, Region::OP::OR); 453 region.getRange(ranges, node, Region::OP::XOR); 454 region.getRange(ranges, node, Region::OP::SUB); 467 std::vector<Range> ranges; variable 478 ranges.emplace_back(Range { 0, 1 }); 479 ranges.emplace_back(Range { 1, 2 }); 480 ranges.emplace_back(Range { 1, 2 }); 484 region.UpdateRects(rects, ranges, indexAt, resultRegion);
|
/ohos5.0/drivers/interface/input/v1_0/ |
H A D | IInputInterfaces.idl | 80 * @param devIndex Index of the input device. The value ranges from <b>0</b> to <b>31</b>. 94 * @param devIndex Index of the input device. The value ranges from <b>0</b> to <b>31</b>. 108 * @param devIndex Index of the input device. The value ranges from <b>0</b> to <b>31</b>. 142 * @param devIndex Index of the input device. The value ranges from <b>0</b> to <b>31</b>. 161 * @param devIndex Index of the input device. The value ranges from <b>0</b> to <b>31</b>. 177 * @param devIndex Index of the input device. The value ranges from <b>0</b> to <b>31</b>. 196 * @param devIndex Index of the input device. The value ranges from <b>0</b> to <b>31</b>. 211 * @param devIndex Index of the input device. The value ranges from <b>0</b> to <b>31</b>. 226 * @param devIndex Index of the input device. The value ranges from <b>0</b> to <b>31</b>. 244 * @param devIndex Index of the input device. The value ranges from <b>0</b> to <b>31</b>. [all …]
|
/ohos5.0/foundation/ability/idl_tool/test/hdi_unittest/input_v1_0/foo/input/v1_0/ |
H A D | IInputInterfaces.idl | 80 * @param devIndex Index of the input device. The value ranges from <b>0</b> to <b>31</b>. 94 * @param devIndex Index of the input device. The value ranges from <b>0</b> to <b>31</b>. 108 * @param devIndex Index of the input device. The value ranges from <b>0</b> to <b>31</b>. 142 * @param devIndex Index of the input device. The value ranges from <b>0</b> to <b>31</b>. 161 * @param devIndex Index of the input device. The value ranges from <b>0</b> to <b>31</b>. 177 * @param devIndex Index of the input device. The value ranges from <b>0</b> to <b>31</b>. 196 * @param devIndex Index of the input device. The value ranges from <b>0</b> to <b>31</b>. 211 * @param devIndex Index of the input device. The value ranges from <b>0</b> to <b>31</b>. 226 * @param devIndex Index of the input device. The value ranges from <b>0</b> to <b>31</b>. 244 * @param devIndex Index of the input device. The value ranges from <b>0</b> to <b>31</b>. [all …]
|
/ohos5.0/foundation/ability/idl_tool/test/hdi_unittest/ril_v1_1/foo/ril/v1_1/ |
H A D | Types.idl | 2085 * Bit error rate, which ranges from 0 to 7 2110 * Signal received strength, which ranges from 0 to 99 2125 * Bit error rate, which ranges from 0 to 7 2135 * Signal received strength, which ranges from 0 to 99 2422 * Location area code, which ranges from 0 to 0xFFFF 2472 * Primary scrambling code, which ranges from 0 to 511 2562 * Location area code, which ranges from 0 to 0xFFFF 2709 * Location area code, which ranges from 0 to 0xFFFF 2719 * Signal received quality, which ranges from 0 to 7 2724 * Timing advance, which ranges from 0 to 63 [all …]
|
/ohos5.0/foundation/ability/idl_tool/test/hdi_unittest/ril_v1_2/foo/ril/v1_1/ |
H A D | Types.idl | 2085 * Bit error rate, which ranges from 0 to 7 2110 * Signal received strength, which ranges from 0 to 99 2125 * Bit error rate, which ranges from 0 to 7 2135 * Signal received strength, which ranges from 0 to 99 2422 * Location area code, which ranges from 0 to 0xFFFF 2472 * Primary scrambling code, which ranges from 0 to 511 2562 * Location area code, which ranges from 0 to 0xFFFF 2709 * Location area code, which ranges from 0 to 0xFFFF 2719 * Signal received quality, which ranges from 0 to 7 2724 * Timing advance, which ranges from 0 to 63 [all …]
|
/ohos5.0/drivers/interface/ril/v1_1/ |
H A D | Types.idl | 2085 * Bit error rate, which ranges from 0 to 7 2110 * Signal received strength, which ranges from 0 to 99 2125 * Bit error rate, which ranges from 0 to 7 2135 * Signal received strength, which ranges from 0 to 99 2422 * Location area code, which ranges from 0 to 0xFFFF 2472 * Primary scrambling code, which ranges from 0 to 511 2562 * Location area code, which ranges from 0 to 0xFFFF 2709 * Location area code, which ranges from 0 to 0xFFFF 2719 * Signal received quality, which ranges from 0 to 7 2724 * Timing advance, which ranges from 0 to 63 [all …]
|
/ohos5.0/base/update/packaging_tools/ |
H A D | image_class.py | 330 def range_sha256(self, ranges): argument 337 for data in self.__get_blocks_set_data(ranges): 341 def write_range_data_2_fd(self, ranges, file_obj): argument 348 for data in self.__get_blocks_set_data(ranges): 351 def get_ranges(self, ranges): argument 357 return [each_data for each_data in self.__get_blocks_set_data(ranges)]
|
/ohos5.0/drivers/interface/ril/v1_0/ |
H A D | Types.idl | 2045 * Bit error rate, which ranges from 0 to 7 2070 * Signal received strength, which ranges from 0 to 99 2085 * Bit error rate, which ranges from 0 to 7 2095 * Signal received strength, which ranges from 0 to 99 2382 * Location area code, which ranges from 0 to 0xFFFF 2432 * Primary scrambling code, which ranges from 0 to 511 2522 * Location area code, which ranges from 0 to 0xFFFF 2669 * Location area code, which ranges from 0 to 0xFFFF 2679 * Signal received quality, which ranges from 0 to 7 2684 * Timing advance, which ranges from 0 to 63 [all …]
|
/ohos5.0/foundation/ability/idl_tool/test/hdi_unittest/ril_v1_0/foo/ril/v1_0/ |
H A D | Types.idl | 2045 * Bit error rate, which ranges from 0 to 7 2070 * Signal received strength, which ranges from 0 to 99 2085 * Bit error rate, which ranges from 0 to 7 2095 * Signal received strength, which ranges from 0 to 99 2382 * Location area code, which ranges from 0 to 0xFFFF 2432 * Primary scrambling code, which ranges from 0 to 511 2522 * Location area code, which ranges from 0 to 0xFFFF 2669 * Location area code, which ranges from 0 to 0xFFFF 2679 * Signal received quality, which ranges from 0 to 7 2684 * Timing advance, which ranges from 0 to 63 [all …]
|
/ohos5.0/docs/en/application-dev/reference/apis-arkui/js-service-widget-ui/ |
H A D | js-service-widget-basic-progress.md | 29 | percent | number | 0 | No| Current progress. The value ranges from 0 to 100.| 30 | secondarypercent(Rich) | number | 0 | No| Secondary progress. The value ranges from 0 to 100.| 40 | percent | number | 0 | No| Current progress. The value ranges from 0 to 100.| 80 …progress bar, which starts from the direction of zero o'clock. The value ranges from 0 to 360 degr… 81 | total-angle | <deg> | 240 | No| Total length of the arc progress bar. The value ranges from…
|
/ohos5.0/docs/en/application-dev/quick-start/ |
H A D | app-configuration-file.md | 61 …ranges from 0 to 99. A major version consists of major new features or large changes.<br>Part 2 (*… 62 … with a version on other devices in the cross-device scenario. The value ranges from 0 to 21474836… 63 | minAPIVersion | Minimum API version required for running the application. The value ranges from 0… 64 | targetAPIVersion | Target API version required for running the application. The value ranges from… 75 |targetPriority|Priority of the application. The value ranges from 1 to 100. This tag can be config… 79 …hild processes that can be created by the current application. The value ranges from 0 to 512. The… 153 …:<br>- In **multiInstance** mode, the value ranges from 1 to 10.<br>- In **appClone** mode, the va…
|
/ohos5.0/foundation/ability/idl_tool/test/hdi_unittest/ril_v1_2/foo/ril/v1_2/ |
H A D | Types.idl | 143 * Signal received power, which ranges from -140 to -44 148 * Signal received quality, which ranges from -19 to -3 250 * Signal received power, which ranges from -140 to -44 255 * Signal received quality, which ranges from -19 to -3
|
/ohos5.0/drivers/interface/ril/v1_2/ |
H A D | Types.idl | 143 * Signal received power, which ranges from -140 to -44 148 * Signal received quality, which ranges from -19 to -3 250 * Signal received power, which ranges from -140 to -44 255 * Signal received quality, which ranges from -19 to -3
|
/ohos5.0/base/print/print_fwk/frameworks/ohscan/src/ |
H A D | ohscan.cpp | 192 DELETE_AND_NULLIFY(scannerOptions->ranges[i]) in FreeScannerOptionsMemory() 194 DELETE_ARRAY_AND_NULLIFY(scannerOptions->ranges) in FreeScannerOptionsMemory() 213 scannerOptions->ranges = new (std::nothrow) char* [optionCount]; in CreateScannerOptions() 216 scannerOptions->ranges == nullptr) { in CreateScannerOptions() 223 memset_s(scannerOptions->ranges, stringMemSize, 0, stringMemSize) != 0) { in CreateScannerOptions() 280 scannerOptions->ranges[i] = rangesBuff; in MemSetScannerOptions()
|
/ohos5.0/docs/en/application-dev/reference/apis-arkui/arkui-js/ |
H A D | js-components-basic-progress.md | 32 | percent | number | 0 | No | Current progress. The value ranges from 0 to 100.| 33 | secondarypercent | number | 0 | No | Secondary progress. The value ranges from 0 to 100.| 43 | percent | number | 0 | No | Current progress. The value ranges from 0 to 100.| 83 …he arc progress bar, which starts from zero o'clock clockwise. The value ranges from 0 to 360 degr… 84 …| 240 | No | Total length of the arc progress bar. The value ranges from –360 to 360. …
|
H A D | js-components-svg-common-attributes.md | 11 | fill-opacity | number | 1 | No| Opacity of a fill color. The value ranges from **0** to **1**. Th… 13 | opacity | number | 1 | No| Opacity of an element. The value ranges from **0** to **1**. The value… 20 | stroke-opacity | number | 1 | No| Opacity of the stroke. The value ranges from **0** to **1**. Th…
|