/foundation/distributeddatamgr/pasteboard/framework/innerkits/src/ |
H A D | pasteboard_utils.cpp | 233 pbRecord->SetDetails(plainText->GetDetails()); in PlainText2PasteRecord() 249 if (record->GetDetails()) { in PasteRecord2PlaintText() 250 plainText->SetDetails(*record->GetDetails()); in PasteRecord2PlaintText() 306 pbRecord->SetDetails(html->GetDetails()); in Html2PasteRecord() 322 if (record->GetDetails()) { in PasteRecord2Html() 323 html->SetDetails(*record->GetDetails()); in PasteRecord2Html() 347 pbRecord->SetDetails(link->GetDetails()); in Link2PasteRecord() 363 if (record->GetDetails()) { in PasteRecord2Link() 364 link->SetDetails(*record->GetDetails()); in PasteRecord2Link() 377 uriRecord->SetDetails(file->GetDetails()); in File2PasteRecord() [all...] |
/foundation/distributeddatamgr/pasteboard/framework/test/src/ |
H A D | pasteboard_utils_test.cpp | 280 auto details1 = record->GetDetails(); in HWTEST_F() 289 auto newDetails = newPlainRecord->GetDetails(); in HWTEST_F() 324 auto newDetails = newPlainRecord->GetDetails(); in HWTEST_F() 363 auto newDetails = newPlainRecord->GetDetails(); in HWTEST_F() 400 auto newDetails = newPlainRecord->GetDetails(); in HWTEST_F() 458 auto details1 = record->GetDetails(); in HWTEST_F() 467 auto newDetails = newFileRecord->GetDetails(); in HWTEST_F() 492 auto details1 = record->GetDetails(); in HWTEST_F() 501 auto newDetails = newImageRecord->GetDetails(); in HWTEST_F() 526 auto details1 = record->GetDetails(); in HWTEST_F() [all...] |
H A D | pasteboard_unified_data_test.cpp | 277 auto newDetails = newPlainRecord->GetDetails(); in HWTEST_F() 288 auto details1 = record->GetDetails(); in HWTEST_F() 312 auto newDetails = newPlainRecord->GetDetails(); in HWTEST_F() 352 auto newDetails = newPlainRecord->GetDetails(); in HWTEST_F() 392 auto newDetails = newPlainRecord->GetDetails(); in HWTEST_F() 467 auto newDetails = newFileRecord->GetDetails(); in HWTEST_F() 482 auto details1 = record->GetDetails(); in HWTEST_F() 504 auto newDetails = newImageRecord->GetDetails(); in HWTEST_F() 519 auto details1 = record->GetDetails(); in HWTEST_F() 541 auto newDetails = newAudioRecord->GetDetails(); in HWTEST_F() [all...] |
H A D | pasteboard_client_udmf_delay_test.cpp | 362 CompareDetails(text->GetDetails());
in HWTEST_F() 390 CompareDetails(text->GetDetails());
in HWTEST_F() 425 CompareDetails(text->GetDetails());
in HWTEST_F() 460 CompareDetails(text->GetDetails());
in HWTEST_F() 496 CompareDetails(file->GetDetails());
in HWTEST_F() 527 CompareDetails(file->GetDetails());
in HWTEST_F() 561 CompareDetails(file->GetDetails());
in HWTEST_F() 595 CompareDetails(file->GetDetails());
in HWTEST_F() 629 CompareDetails(file->GetDetails());
in HWTEST_F() 663 CompareDetails(systemDefinedRecord->GetDetails());
in HWTEST_F() [all...] |
/foundation/distributeddatamgr/udmf/framework/jskitsimpl/data/ |
H A D | text_napi.cpp | 31 DECLARE_NAPI_GETTER_SETTER("details", GetDetails, SetDetails), in Constructor() 77 napi_value TextNapi::GetDetails(napi_env env, napi_callback_info info) in GetDetails() function in OHOS::UDMF::TextNapi 84 ctxt->status = NapiDataUtils::SetValue(env, text->value_->GetDetails(), ctxt->output); in GetDetails()
|
H A D | system_defined_record_napi.cpp | 31 DECLARE_NAPI_GETTER_SETTER("details", GetDetails, SetDetails), in Constructor() 78 napi_value SystemDefinedRecordNapi::GetDetails(napi_env env, napi_callback_info info) in GetDetails() function in OHOS::UDMF::SystemDefinedRecordNapi 85 ctxt->status = NapiDataUtils::SetValue(env, sdRecord->value_->GetDetails(), ctxt->output); in GetDetails()
|
H A D | file_napi.cpp | 31 DECLARE_NAPI_GETTER_SETTER("details", GetDetails, SetDetails), in Constructor() 78 napi_value FileNapi::GetDetails(napi_env env, napi_callback_info info) in GetDetails() function in OHOS::UDMF::FileNapi 85 ctxt->status = NapiDataUtils::SetValue(env, file->value_->GetDetails(), ctxt->output); in GetDetails()
|
H A D | video_napi.cpp | 32 DECLARE_NAPI_GETTER_SETTER("details", FileNapi::GetDetails, FileNapi::SetDetails), in Constructor()
|
H A D | system_defined_pixelmap_napi.cpp | 32 DECLARE_NAPI_GETTER_SETTER("details", SystemDefinedRecordNapi::GetDetails, SystemDefinedRecordNapi::SetDetails), in Constructor()
|
H A D | image_napi.cpp | 32 DECLARE_NAPI_GETTER_SETTER("details", FileNapi::GetDetails, FileNapi::SetDetails), in Constructor()
|
H A D | audio_napi.cpp | 32 DECLARE_NAPI_GETTER_SETTER("details", FileNapi::GetDetails, FileNapi::SetDetails), in Constructor()
|
H A D | folder_napi.cpp | 32 DECLARE_NAPI_GETTER_SETTER("details", FileNapi::GetDetails, FileNapi::SetDetails), in Constructor()
|
H A D | plain_text_napi.cpp | 32 DECLARE_NAPI_GETTER_SETTER("details", TextNapi::GetDetails, TextNapi::SetDetails), in Constructor()
|
H A D | html_napi.cpp | 32 DECLARE_NAPI_GETTER_SETTER("details", TextNapi::GetDetails, TextNapi::SetDetails), in Constructor()
|
/foundation/distributeddatamgr/udmf/interfaces/innerkits/data/ |
H A D | text.h | 33 UDDetails GetDetails() const;
|
H A D | file.h | 37 UDDetails GetDetails() const;
|
H A D | system_defined_record.h | 33 UDDetails GetDetails() const;
|
/foundation/distributeddatamgr/udmf/interfaces/jskits/data/ |
H A D | file_napi.h | 33 static napi_value GetDetails(napi_env env, napi_callback_info info);
|
H A D | system_defined_record_napi.h | 33 static napi_value GetDetails(napi_env env, napi_callback_info info);
|
H A D | text_napi.h | 33 static napi_value GetDetails(napi_env env, napi_callback_info info);
|
/foundation/distributeddatamgr/udmf/framework/innerkitsimpl/data/ |
H A D | text.cpp | 55 UDDetails Text::GetDetails() const in GetDetails() function in OHOS::UDMF::Text
|
H A D | system_defined_record.cpp | 72 UDDetails SystemDefinedRecord::GetDetails() const in GetDetails() function in OHOS::UDMF::SystemDefinedRecord
|
H A D | file.cpp | 88 UDDetails File::GetDetails() const in GetDetails() function in OHOS::UDMF::File
|
H A D | unified_data_helper.cpp | 74 auto details = file->GetDetails(); in IsTempUData()
|
/foundation/distributeddatamgr/udmf/framework/innerkitsimpl/test/unittest/ |
H A D | udmf_client_test.cpp | 294 CompareDetails(text2->GetDetails()); in HWTEST_F() 338 CompareDetails(text2->GetDetails()); in HWTEST_F() 387 CompareDetails(text2->GetDetails()); in HWTEST_F() 436 CompareDetails(text2->GetDetails()); in HWTEST_F() 485 CompareDetails(file2->GetDetails()); in HWTEST_F() 528 CompareDetails(file2->GetDetails()); in HWTEST_F() 575 CompareDetails(file2->GetDetails()); in HWTEST_F() 622 CompareDetails(file2->GetDetails()); in HWTEST_F() 669 CompareDetails(file2->GetDetails()); in HWTEST_F() 715 CompareDetails(systemDefinedRecord2->GetDetails()); in HWTEST_F() [all...] |