/ohos5.0/foundation/distributeddatamgr/kv_store/kvstoremock/frameworks/innerkitsimpl/kvdb/src/ |
H A D | device_convertor.cpp | 34 std::vector<uint8_t> original = TrimKey(in); in ToLocal() local 35 if ((original.empty() && withLen) || original.size() > MAX_DEV_KEY_LEN) { in ToLocal() 43 dbKey.insert(dbKey.end(), original.begin(), original.end()); in ToLocal() 148 std::vector<uint8_t> original { in.Data().begin() + begin, in.Data().end() }; in ConvertNetwork() local 149 original = TrimKey(std::move(original)); in ConvertNetwork() 150 if ((original.empty() && withLen) || original.size() > MAX_DEV_KEY_LEN) { in ConvertNetwork() 156 out.insert(out.end(), original.begin(), original.end()); in ConvertNetwork()
|
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/innerkitsimpl/kvdb/src/ |
H A D | device_convertor.cpp | 35 std::vector<uint8_t> original = TrimKey(in); in ToLocal() local 36 if ((original.empty() && withLen) || original.size() > MAX_DEV_KEY_LEN) { in ToLocal() 44 dbKey.insert(dbKey.end(), original.begin(), original.end()); in ToLocal() 151 std::vector<uint8_t> original{ in.Data().begin() + begin, in.Data().end() }; in ConvertNetwork() local 152 original = TrimKey(std::move(original)); in ConvertNetwork() 153 if ((original.empty() && withLen) || original.size() > MAX_DEV_KEY_LEN) { in ConvertNetwork() 159 out.insert(out.end(), original.begin(), original.end()); in ConvertNetwork()
|
/ohos5.0/docs/en/application-dev/arkts-utils/ |
H A D | arkts-bytecode-function-name.md | 12 The following sections will describe the prefix and original function name in detail. 61 function foo() {} // The original function name is "foo". 62 () => { } // The original function name is "". 63 () => { } // The original function name is "^1". 67 1. If an anonymous function is stored in a variable when the function is defined, the original func… 69 let a = () => {} // The original function name is "a". 72 * If the attribute name does not contain a **slash (\)** or a **period (.)**, the original function… 75 b : () => {} // The original function name is "b". 78 * If the attribute name contains a **slash (\)** or a **period (.)**, the original function is name… 81 "a.b#c^2": () => {} // The original function name is "". [all …]
|
H A D | arraybuffer-object.md | 9 If the transfer mode is used, the original thread cannot use the ArrayBuffer object. In cross-threa… 13 …hese operations. The transfer mode has higher performance. However, the original thread cannot acc… 88 …r mode is used by default when the ArrayBuffer data is transferred. The original thread cannot use…
|
/ohos5.0/docs/en/release-notes/changelogs/v3.2-beta5/ |
H A D | changelogs-camera-sync.md | 236 …llback and asynchronous promise to the synchronous mode. Therefore, the original APIs **beginConfi… 276 …llback and asynchronous promise to the synchronous mode. Therefore, the original APIs **hasFlash(c… 292 …llback and asynchronous promise to the synchronous mode. Therefore, the original APIs **getFlashMo… 324 …llback and asynchronous promise to the synchronous mode. Therefore, the original APIs **getMeterin… 374 …llback and asynchronous promise to the synchronous mode. Therefore, the original APIs **getFocusMo… 399 …llback and asynchronous promise to the synchronous mode. Therefore, the original APIs **getFocusPo… 407 …llback and asynchronous promise to the synchronous mode. Therefore, the original APIs **getFocalLe… 423 …llback and asynchronous promise to the synchronous mode. Therefore, the original APIs **getZoomRat… 474 …eviewOutputError>** to **ErrorCallback<BusinessError>**. Therefore, the original API **on(type: 'e… 492 …PhotoOutputError>** to **ErrorCallback<BusinessError>**. Therefore, the original API **on(type: 'e… [all …]
|
/ohos5.0/docs/en/release-notes/changelogs/OpenHarmony_3.2.10.3/ |
H A D | changelogs-camera-sync.md | 238 …llback and asynchronous promise to the synchronous mode. Therefore, the original APIs **beginConfi… 278 …llback and asynchronous promise to the synchronous mode. Therefore, the original APIs **hasFlash(c… 294 …llback and asynchronous promise to the synchronous mode. Therefore, the original APIs **getFlashMo… 326 …llback and asynchronous promise to the synchronous mode. Therefore, the original APIs **getMeterin… 376 …llback and asynchronous promise to the synchronous mode. Therefore, the original APIs **getFocusMo… 401 …llback and asynchronous promise to the synchronous mode. Therefore, the original APIs **getFocusPo… 409 …llback and asynchronous promise to the synchronous mode. Therefore, the original APIs **getFocalLe… 425 …llback and asynchronous promise to the synchronous mode. Therefore, the original APIs **getZoomRat… 476 …eviewOutputError>** to **ErrorCallback<BusinessError>**. Therefore, the original API **on(type: 'e… 494 …PhotoOutputError>** to **ErrorCallback<BusinessError>**. Therefore, the original API **on(type: 'e… [all …]
|
/ohos5.0/docs/en/application-dev/reference/apis-image-kit/ |
H A D | _image___region.md | 20 …[x](#x) | X coordinate of the region. It cannot be greater than the width of the original image. | 21 …y](#y) | Y coordinate of the region. It cannot be greater than the height of the original image. | 56 X coordinate of the region. It cannot be greater than the width of the original image. 66 Y coordinate of the region. It cannot be greater than the height of the original image.
|
/ohos5.0/foundation/multimedia/image_framework/frameworks/innerkitsimpl/stream/src/ |
H A D | istream_source_stream.cpp | 32 …::IstreamSourceStream(unique_ptr<istream> inputStream, size_t size, size_t original, size_t offset) in IstreamSourceStream() argument 33 …: inputStream_(move(inputStream)), streamSize_(size), streamOriginalOffset_(original), streamOffse… in IstreamSourceStream() 57 size_t original = inputStream->tellg(); in CreateSourceStream() local 58 size_t offset = original; in CreateSourceStream() 59 return make_unique<IstreamSourceStream>(move(inputStream), streamSize, original, offset); in CreateSourceStream()
|
H A D | file_source_stream.cpp | 52 FileSourceStream::FileSourceStream(std::FILE *file, size_t size, size_t offset, size_t original, in FileSourceStream() argument 54 : filePtr_(file), fileSize_(size), fileOffset_(offset), fileOriginalOffset_(original), in FileSourceStream() 60 FileSourceStream::FileSourceStream(std::FILE *file, size_t size, size_t offset, size_t original, in FileSourceStream() argument 62 : filePtr_(file), fileSize_(size), fileOffset_(offset), fileOriginalOffset_(original), in FileSourceStream()
|
/ohos5.0/docs/en/release-notes/changelogs/OpenHarmony_4.0.2.1/ |
H A D | changelog-web.md | 11 …ions developed based on earlier versions can still use the API, and the original functions are not… 34 …ions developed based on earlier versions can still use the API, and the original functions are not… 42 …can still use the API. With the corresponding logic handling added, the original functions are not… 65 …can still use the API. With the corresponding logic handling added, the original functions are not…
|
/ohos5.0/foundation/arkui/ace_engine_lite/frameworks/common/log/ |
H A D | ace_log.cpp | 25 void ReplaceHiLogPrivacyKeyWords(string &original, const string &toBeReplaced, const string &target… in ReplaceHiLogPrivacyKeyWords() argument 29 string::size_type foundPos = original.find(toBeReplaced); in ReplaceHiLogPrivacyKeyWords() 35 original.replace(foundPos, toBeReplacedLen, targetStr); in ReplaceHiLogPrivacyKeyWords()
|
/ohos5.0/docs/en/release-notes/changelogs/OpenHarmony_3.2.8.1/ |
H A D | changelogs-testfwk_arkxtest.md | 5 The original APIs in API version 8 are deprecated, and substitute APIs that support exception handl… 13 …he APIs of the **On** class support exception handling and retain their original name, with the ex… 15 …sion 9. The APIs of the **Driver** class support exception handling and retain their original name. 16 …n 9. The APIs of the **Component** class support exception handling and retain their original name.
|
/ohos5.0/docs/en/release-notes/changelogs/OpenHarmony_3.2.8.3/ |
H A D | changelogs-notification.md | 9 …Is and their method for returning API error information. Otherwise, the original service logic wil… 13 …original APIs in the following table) and corresponding new APIs in the following table are added.… 23 The original APIs are only migrated to the new namespace. Therefore, you can modify **import** to s… 25 If the original API uses **@ohos.commonEvent**:
|
/ohos5.0/docs/en/application-dev/quick-start/ |
H A D | arkts-new-getTarget.md | 3 To obtain the original object before adding a proxy in the state management, you can use the [getTa… 13 …original objects of the Class, Date, Map, Set, and Array types to observe attribute changes and AP… 24 Use **getTarget** to obtain the original objects of these proxy objects. 41 - Changes to the content in the original object obtained by **getTarget** cannot be observed nor tr… 61 Button (`Change the attributes of the original object`) 73 ### Obtains the original object before adding a proxy in the state management V1. 122 Use **UIUtils.getTarget** to obtain the original objects before proxies are added. 168 ### Obtains the original object before adding a proxy in the state management V2. 200 Use **UIUtils.getTarget** to obtain the original objects before proxies are added. 239 … methods for the decorated variables and add prefix **\_\_ob\_** in the original variable names. T…
|
/ohos5.0/docs/en/release-notes/changelogs/OpenHarmony_4.0.10.2/ |
H A D | changelogs-netstack.md | 5 …he HTTP streaming request from **request2** to **requestInStream**. The original name **request2**… 11 …a receiving event from **dataProgress** to **dataReceiveProgress**. The original name **dataProgre… 43 Replace the API name **request2** and event name **dataProgress** in the original service code with…
|
/ohos5.0/docs/en/application-dev/media/image/ |
H A D | image-transformation.md | 28  45 // The width of the image after scaling is 0.5 of the original width. 46 // The height of the image after scaling is 0.5 of the original height.
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_profiler/ |
H A D | rs_profiler_beta_recorder.cpp | 152 const auto& original = g_records[i]; in SendBetaRecordPath() local 154 const auto message = "BetaRecord: Rename: " + original + " -> " + renamed; in SendBetaRecordPath() 155 if (std::rename(original.data(), renamed.data())) { in SendBetaRecordPath()
|
/ohos5.0/foundation/multimodalinput/input/service/key_event_normalize/src/ |
H A D | key_unicode_transformation.cpp | 32 uint32_t original { 0 }; member 138 return keyUnicode.original; in KeyCodeToUnicode()
|
/ohos5.0/docs/en/release-notes/changelogs/OpenHarmony_4.0.2.3/ |
H A D | changelogs-usb.md | 5 …ons, you need to change the name of the imported bundle. Otherwise, the original service logic wil… 19 …earlier versions, you need to modify the parameter type. Otherwise, the original service logic wil…
|
/ohos5.0/foundation/multimedia/image_framework/frameworks/innerkitsimpl/stream/include/ |
H A D | file_source_stream.h | 34 FileSourceStream(std::FILE *file, size_t size, size_t offset, size_t original, 36 FileSourceStream(std::FILE *file, size_t size, size_t offset, size_t original,
|
/ohos5.0/base/location/services/location_gnss/gnss/source/ |
H A D | agnss_ni_manager.cpp | 336 std::string AGnssNiManager::DecodeNiString(std::string original, int coding) in DecodeNiString() argument 339 return original; in DecodeNiString() 342 std::string tmp = StringUtils::HexToString(original); in DecodeNiString() 356 … LBSLOGE(GNSS, "unknow encoding %{public}d for NI text %{public}s", coding, original.c_str()); in DecodeNiString() 357 return original; in DecodeNiString()
|
/ohos5.0/docs/en/release-notes/changelogs/OpenHarmony_4.0.11.5/ |
H A D | changelogs-multimodalinput.md | 5 …r, **TouchEvent** of arkui-ts is used by default in IDE. Therefore, the original API becomes inval… 9 The field name is changed. The value of the original field is **undefined**.
|
/ohos5.0/base/update/update_app/feature/ota/src/main/ets/dialog/ |
H A D | DialogUtils.ts | 33 const original = descriptor.value; 49 original.call(this, ...args);
|
/ohos5.0/docs/en/application-dev/reference/apis-data-protection-kit/ |
H A D | _dlp_permission_api.md | 34 …ename) (const char \*fileName, char \*\*originalFileName) | Obtains the original file name of a DL… 132 Obtains the original file name of a DLP file. 140 | fileName | Pointer to the target file whose original file name is to be obtained.| 141 | originalFileName | Double pointer to the original file name obtained.|
|
/ohos5.0/docs/en/release-notes/changelogs/OpenHarmony_5.0.0.38/ |
H A D | changelogs-multimedia.md | 79 The original callback can pass only **extra** of the int32_t type. Some information, such as the wi… 99 Use **OH_AVPlayerOnInfoCallback** and **OH_AVPlayer_SetOnInfoCallback** to replace the original inf… 131 Use **OH_AVPlayerOnInfoCallback** and **OH_AVPlayer_SetOnInfoCallback** to replace the original inf… 143 The original callback can pass only **extra** of the int32_t type. Some information, such as the wi… 165 Use **OH_AVPlayerOnInfoCallback** and **OH_AVPlayer_SetOnInfoCallback** to replace the original inf…
|