/foundation/arkui/ace_engine/frameworks/core/components/declaration/text/ |
H A D | text_declaration.h | 31 CopyOptions copyOptions; member 93 return style.copyOptions; in GetCopyOption() 96 void SetCopyOption(const CopyOptions& copyOptions) in SetCopyOption() argument 99 CheckIsChanged(style.copyOptions, copyOptions); in SetCopyOption() 100 style.copyOptions = copyOptions; in SetCopyOption()
|
/foundation/filemanagement/dfs_service/services/cloudfiledaemon/src/ipc/ |
H A D | cloud_daemon.cpp | 122 const auto copyOptions = filesystem::copy_options::overwrite_existing | filesystem::copy_options::recursive; in HandleStartMove() local 132 filesystem::copy(srcPath, dstPath, copyOptions, errCode); in HandleStartMove()
|
/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/interfaces/cj_ffi/ |
H A D | cj_richeditor_ffi.h | 61 CJ_EXPORT void FfiOHOSAceFrameworkRichEditorCopyOptions(int32_t copyOptions);
|
H A D | cj_richeditor_ffi.cpp | 83 void FfiOHOSAceFrameworkRichEditorCopyOptions(int32_t copyOptions) in FfiOHOSAceFrameworkRichEditorCopyOptions() argument 85 if (!Utils::CheckParamsValid(copyOptions, COPYOPTIONS_TYPES.size())) { in FfiOHOSAceFrameworkRichEditorCopyOptions() 86 LOGE("CopyOptions error, invalid value for copyOptions"); in FfiOHOSAceFrameworkRichEditorCopyOptions() 89 RichEditorModel::GetInstance()->SetCopyOption(COPYOPTIONS_TYPES[copyOptions]); in FfiOHOSAceFrameworkRichEditorCopyOptions()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/rich_editor/ |
H A D | rich_editor_model_ng.h | 36 void SetCopyOption(CopyOptions& copyOptions) override; 67 static void SetCopyOption(FrameNode* frameNode, CopyOptions& copyOptions);
|
H A D | rich_editor_model_ng.cpp | 210 void RichEditorModelNG::SetCopyOption(CopyOptions& copyOptions) in SetCopyOption() argument 212 ACE_UPDATE_LAYOUT_PROPERTY(TextLayoutProperty, CopyOption, copyOptions); in SetCopyOption() 283 void RichEditorModelNG::SetCopyOption(FrameNode* frameNode, CopyOptions& copyOptions) in SetCopyOption() argument 285 ACE_UPDATE_NODE_LAYOUT_PROPERTY(TextLayoutProperty, CopyOption, copyOptions, frameNode); in SetCopyOption()
|
H A D | rich_editor_model.h | 346 virtual void SetCopyOption(CopyOptions& copyOptions) = 0;
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/models/ |
H A D | richeditor_model_impl.h | 33 void SetCopyOption(CopyOptions& copyOptions) override {}
|
H A D | search_model_impl.h | 56 void SetCopyOption(const CopyOptions& copyOptions) override;
|
H A D | search_model_impl.cpp | 173 void SearchModelImpl::SetCopyOption(const CopyOptions& copyOptions) in SetCopyOption() argument 175 JSViewSetProperty(&TextFieldComponent::SetCopyOption, copyOptions); in SetCopyOption()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/search/ |
H A D | search_pattern.h | 101 static std::string ConvertCopyOptionsToString(CopyOptions copyOptions) in ConvertCopyOptionsToString() argument 104 switch (copyOptions) { in ConvertCopyOptionsToString()
|
H A D | search_model_ng.h | 55 void SetCopyOption(const CopyOptions& copyOptions) override; 115 static void SetCopyOption(FrameNode* frameNode, const CopyOptions& copyOptions);
|
H A D | search_model.h | 58 virtual void SetCopyOption(const CopyOptions& copyOptions);
|
H A D | search_model_ng.cpp | 491 void SearchModelNG::SetCopyOption(const CopyOptions& copyOptions) in SetCopyOption() argument 499 textFieldLayoutProperty->UpdateCopyOptions(copyOptions); in SetCopyOption() 1236 void SearchModelNG::SetCopyOption(FrameNode* frameNode, const CopyOptions& copyOptions) in SetCopyOption() argument 1243 textFieldLayoutProperty->UpdateCopyOptions(copyOptions); in SetCopyOption()
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/ |
H A D | js_image.cpp | 900 auto copyOptions = CopyOptions::None; in SetCopyOption() local 903 copyOptions = static_cast<CopyOptions>(enumNumber); in SetCopyOption() 904 if (copyOptions < CopyOptions::None || copyOptions > CopyOptions::Distributed) { in SetCopyOption() 905 copyOptions = CopyOptions::None; in SetCopyOption() 908 ImageModel::GetInstance()->SetCopyOption(copyOptions); in SetCopyOption()
|
H A D | js_text.cpp | 806 auto copyOptions = CopyOptions::None; in SetCopyOption() local 810 copyOptions = static_cast<CopyOptions>(emunNumber); in SetCopyOption() 812 TextModel::GetInstance()->SetCopyOption(copyOptions); in SetCopyOption()
|
H A D | js_search.cpp | 1000 auto copyOptions = CopyOptions::Local; in SetCopyOption() local 1003 copyOptions = static_cast<CopyOptions>(emunNumber); in SetCopyOption() 1005 SearchModel::GetInstance()->SetCopyOption(copyOptions); in SetCopyOption()
|
H A D | js_textfield.cpp | 1180 auto copyOptions = CopyOptions::Local; in SetCopyOption() local 1183 copyOptions = static_cast<CopyOptions>(emunNumber); in SetCopyOption() 1185 TextFieldModel::GetInstance()->SetCopyOption(copyOptions); in SetCopyOption()
|
H A D | js_richeditor.cpp | 955 auto copyOptions = CopyOptions::Distributed; in SetCopyOptions() local 959 copyOptions = static_cast<CopyOptions>(emunNumber); in SetCopyOptions() 961 RichEditorModel::GetInstance()->SetCopyOption(copyOptions); in SetCopyOptions() 1327 JSClass<JSRichEditor>::StaticMethod("copyOptions", &JSRichEditor::SetCopyOptions); in JSBind()
|
/foundation/arkui/ace_engine/frameworks/core/interfaces/native/node/ |
H A D | search_modifier.cpp | 239 auto copyOptions = CopyOptions::Local; in SetSearchCopyOption() local 240 copyOptions = static_cast<CopyOptions>(value); in SetSearchCopyOption() 241 SearchModelNG::SetCopyOption(frameNode, copyOptions); in SetSearchCopyOption() 248 auto copyOptions = CopyOptions::Local; in ResetSearchCopyOption() local 249 SearchModelNG::SetCopyOption(frameNode, copyOptions); in ResetSearchCopyOption()
|
H A D | node_image_modifier.cpp | 191 auto copyOptions = static_cast<CopyOptions>(copyOption); in SetCopyOption() local 192 if (copyOptions < CopyOptions::None || copyOptions > CopyOptions::Distributed) { in SetCopyOption() 193 copyOptions = DEFAULT_IMAGE_COPYOPTION; in SetCopyOption() 195 ImageModelNG::SetCopyOption(frameNode, copyOptions); in SetCopyOption()
|
H A D | rich_editor_modifier.cpp | 90 CopyOptions copyOptions = static_cast<CopyOptions>(copyOptionsValue); in SetRichEditorCopyOptions() local 92 RichEditorModelNG::SetCopyOption(frameNode, copyOptions); in SetRichEditorCopyOptions()
|
/foundation/arkui/ace_engine/frameworks/core/components_v2/inspector/ |
H A D | utils.h | 492 inline std::string ConvertWrapCopyOptionToString(CopyOptions copyOptions) in ConvertWrapCopyOptionToString() argument 501 auto index = BinarySearchFindIndex(copyOptionsTable, ArraySize(copyOptionsTable), copyOptions); in ConvertWrapCopyOptionToString()
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/jsi/nativeModule/ |
H A D | arkts_native_search_bridge.cpp | 615 auto copyOptions = CopyOptions::Local; in SetCopyOption() local 616 uint32_t value = static_cast<uint32_t>(copyOptions); in SetCopyOption() 620 copyOptions = CopyOptions::Local; in SetCopyOption() 621 value = static_cast<uint32_t>(copyOptions); in SetCopyOption()
|
H A D | arkts_native_text_area_bridge.cpp | 148 int32_t copyOptions = static_cast<int32_t>(OHOS::Ace::CopyOptions::None); in SetCopyOption() local 150 if (secondArg->IsNumber() && secondArg->Int32Value(vm) >= copyOptions && in SetCopyOption() 152 copyOptions = secondArg->Int32Value(vm); in SetCopyOption() 153 GetArkUINodeModifiers()->getTextAreaModifier()->setTextAreaCopyOption(nativeNode, copyOptions); in SetCopyOption()
|