/ohos5.0/docs/en/contribute/template/ |
H A D | xxboard-template.md | 6 *[Writing Instructions]* 23 *[Writing Instructions] Provide the module and hardware specifications of the development board.* 33 *[Writing Instructions] List supported key features of OpenHarmony.* 36 *[Writing Instruction] Describe the definitions of I/O pins, and how to configure pins and connect … 46 *[Writing Instruction] Provide the paths for downloading the tools used to build and debug the deve… 50 *[Writing Instruction] Describe the procedure for setting up the environment step by step.* 60 *[Writing Instruction] Describe how to burn images step by step.* 64 *[Writing Instruction] Describe how to check whether the lighting, running, and output of the devel… 69 *[Writing Instruction] Describe how to debug common errors on the development board.* 77 *[Writing Instruction] Provide links to the reference documents, samples, and FAQs.* [all …]
|
H A D | advanced-ts-template.md | 3 ## General Writing Instructions 38 > *Writing Instructions* 52 > *Writing Instructions* 63 > *Writing Instructions* 72 > *Writing Instructions* 82 > *Writing Instructions* 92 > *Writing Instructions* 116 > *Writing Instructions* 124 > *Writing Instructions* 132 > *Writing Instructions* [all …]
|
H A D | guide-template.md | 1 # Development Guide Writing Template 42 _**[Key Writing Points]**_ 52 _**[Writing Requirements]**_ 72 _**[Key Writing Points]**_ 76 _**[Writing Requirements]**_ 97 _**[Key Writing Points]**_ 127 _**[Key Writing Points]**_ 170 _**[Key Writing Points]**_ 204 _**[Key Writing Points]**_ 242 _**[Key Writing Points]**_ [all …]
|
H A D | readme-template.md | 13 [Writing Instructions] **Mandatory**. The following contents must be included: 65 [Writing Instructions] **Mandatory**. Describe the code directory structure of the project reposito… 86 [Writing Instructions] **Optional**. Include the conditions for project running, for example, a spe… 97 [Writing Instructions] **Optional**. This section is not required for a subsystem Readme file. Incl… 105 [Writing Instructions] **Optional**. Describe the APIs related to the development guide so that dev… 115 [Writing Instructions] **Optional**. Provide a concept introduction for a subsystem Readme file and… 121 | **F.1** | **Writing a Development Procedure**| 130 | **F.2** | **Writing a Code Segment**| 139 [Writing Instructions] **Mandatory**. List the links of all related repositories of the subsystem w…
|
H A D | tools-template.md | 1 # Debugging Tool Writing Template 3 ## General Writing Instructions 11 > *Writing Instructions* 23 > *Writing Instructions* 36 > *Writing Instructions* 60 >*Writing requirements*
|
H A D | ts-template.md | 3 ## General Writing Instructions 38 > *Writing Instructions* 60 > *Writing Instructions* 73 > *Writing Instructions* 82 >*Writing Instructions* 119 > *Writing Instructions* 149 > *Writing Instructions* 173 > *Writing Instructions* 181 > *Writing Instructions* 189 > *Writing Instructions* [all …]
|
H A D | errorcodes-template.md | 9 | | Item | Writing Instruction … 25 > *Writing instructions*: 34 > *Writing instructions*: 51 > *Writing instructions*:
|
H A D | js-template.md | 3 ## General Writing Instructions 43 > *Writing Instructions* 87 > *Writing Instructions* 105 > *Writing Instructions* 124 > *Writing Instructions* 139 > *Writing Instructions* 220 > *Writing Instructions* 275 > *Writing Instructions* 288 > *Writing Instructions* 294 > *Writing Instructions* [all …]
|
H A D | faq-template.md | 1 # FAQ Writing Template 20 … | Purpose of Writing | Corresponding Document Module…
|
H A D | common-event-template.md | 3 ## Writing Requirements
|
/ohos5.0/foundation/distributeddatamgr/udmf/framework/common/ |
H A D | tlv_util.h | 36 template <typename T> bool API_EXPORT Writing(const T &input, TLVObject &data, TAG tag); 73 template <> bool API_EXPORT Writing(const UDType &input, TLVObject &data, TAG tag); 81 template <> bool API_EXPORT Writing(const Object &input, TLVObject &data, TAG tag); 97 template <> bool API_EXPORT Writing(const Runtime &input, TLVObject &data, TAG tag); 101 template <> bool API_EXPORT Writing(const Privilege &input, TLVObject &data, TAG tag); 144 template <typename T> bool Writing(const T &input, TLVObject &data, TAG tag) in Writing() function 169 return Writing(*input, data, tag); in Writing() 199 if (!Writing(item, data, TAG::TAG_VECTOR_ITEM)) { in Writing() 248 if (!TLVUtil::Writing(item.first, data, TAG::TAG_MAP_KEY)) { in Writing() 251 if (!TLVUtil::Writing(item.second, data, TAG::TAG_MAP_VALUE)) { in Writing() [all …]
|
H A D | tlv_util.cpp | 30 template <> bool Writing(const std::nullptr_t &input, TLVObject &data, TAG tag) in Writing() function 62 template <> bool Writing(const std::string &input, TLVObject &data, TAG tag) in Writing() function 95 template <> bool Writing(const UDType &input, TLVObject &data, TAG tag) in Writing() function 121 template <> bool Writing(const DataStatus &input, TLVObject &data, TAG tag) in Writing() function 146 template <> bool Writing(const Object &input, TLVObject &data, TAG tag) in Writing() function 151 if (!Writing(input.value_, data, TAG::TAG_OBJECT_VALUE)) { in Writing() 176 template <> bool Writing(const UnifiedKey &input, TLVObject &data, TAG tag) in Writing() function 358 template <> bool Writing(const Runtime &input, TLVObject &data, TAG tag) in Writing() function 364 if (!TLVUtil::Writing(version, data, TAG::TAG_VERSION)) { in Writing() 367 if (!TLVUtil::Writing(input.key, data, TAG::TAG_KEY)) { in Writing() [all …]
|
H A D | udmf_types_util.cpp | 30 if (!TLVUtil::Writing(input, recordTlv, TAG::TAG_UNIFIED_DATA)) { in Marshalling() 71 if (!TLVUtil::Writing(input, recordTlv, TAG::TAG_UNIFIED_DATA)) { in Marshalling()
|
/ohos5.0/docs/en/device-dev/quick-start/ |
H A D | Readme-EN.md | 11 - [Writing a Hello World Program](quickstart-ide-3861-helloworld.md) 16 - [Writing a Hello World Program](quickstart-ide-3516-helloworld.md) 21 - [Writing a Hello World Program](quickstart-ide-3568-helloworld.md) 33 - [Writing a Hello World Program](quickstart-pkg-3861-helloworld.md) 38 - [Writing a Hello World Program](quickstart-pkg-3516-helloworld.md) 43 - [Writing a Hello World Program](quickstart-pkg-3568-helloworld.md)
|
/ohos5.0/foundation/distributeddatamgr/udmf/framework/common/unittest/ |
H A D | tlv_util_test.cpp | 195 auto result = TLVUtil::Writing(num1, tlvObject, TAG::TAG_UINT16); 197 result = TLVUtil::Writing(num2, tlvObject, TAG::TAG_INT8) && result; 199 result = TLVUtil::Writing(num3, tlvObject, TAG::TAG_UINT32) && result; 201 result = TLVUtil::Writing(num4, tlvObject, TAG::TAG_INT16) && result; 205 result = TLVUtil::Writing(boolean, tlvObject, TAG::TAG_BOOL) && result; 206 result = TLVUtil::Writing(std::nullptr_t(), tlvObject, TAG::TAG_NULL); 210 result = TLVUtil::Writing(str, tlvObject, TAG::TAG_STRING) && result; 212 result = TLVUtil::Writing(type, tlvObject, TAG::TAG_UD_TYPE) && result; 303 EXPECT_TRUE(TLVUtil::Writing(runtime, tlvObject, TAG::TAG_RUNTIME)); 367 EXPECT_TRUE(TLVUtil::Writing(datas, tlvObject, TAG::TAG_UNIFIED_DATA)); [all …]
|
/ohos5.0/commonlibrary/rust/ylong_runtime/ylong_runtime/src/fs/ |
H A D | async_file.rs | 54 Writing(RWJoinHandle), enumerator 60 Writing, enumerator 71 FileState::Reading(x) | FileState::Writing(x) => { in poll() 92 FileState::Writing(_) => FileOp::Writing, in get_op() 409 FileOp::Writing => { in poll_seek() 471 FileState::Writing(ref mut x) => { in poll_read() 516 FileState::Writing(spawn_blocking(&TaskBuilder::new(), move || { in poll_write() 531 if let FileOp::Writing = op { in poll_write() 562 FileOp::Writing => Poll::Ready(res.map(|_| ())), in poll_flush()
|
/ohos5.0/docs/en/contribute/ |
H A D | contribution-guide.md | 9 - **[Writing Instructions](writing-instructions.md)**
|
H A D | writing-instructions.md | 1 # Writing Instructions 33 Writing requirements:
|
/ohos5.0/docs/en/design/ux-design/ |
H A D | multimodal-button.md | 18 ## Writing Instructions
|
H A D | multimodal-drop-down-menu.md | 17 ## Writing Instructions
|
H A D | multimodal-subtab.md | 21 ## Writing Instructions
|
H A D | multimodal-search-box.md | 19 ## Writing Instructions
|
H A D | multimodal-state-button.md | 23 ## Writing Instructions
|
H A D | multimodal-progress-bar.md | 21 ## Writing Instructions
|
/ohos5.0/docs/en/device-dev/kernel/ |
H A D | kernel-small-basic-trans-event.md | 22 - Writing the same event type to an event control block multiple times is equivalent to writing the… 52 **Writing an Event** 93 | Reading/Writing an event| - **LOS_EventRead**: reads an event, with a relative timeout period in …
|