Searched refs:propertyStr (Results 1 - 3 of 3) sorted by relevance
/foundation/multimedia/media_library/frameworks/services/media_scanner/src/scanner/ |
H A D | metadata_extractor.cpp | 288 string propertyStr; in ExtractImageExif() local 295 err = imageSource->GetImagePropertyString(0, PHOTO_DATA_IMAGE_GPS_LONGITUDE, propertyStr); in ExtractImageExif() 296 exifJson[PHOTO_DATA_IMAGE_GPS_LONGITUDE] = (err == 0) ? GetLongitudeLatitude(propertyStr): 0; in ExtractImageExif() 298 err = imageSource->GetImagePropertyString(0, PHOTO_DATA_IMAGE_GPS_LATITUDE, propertyStr); in ExtractImageExif() 299 exifJson[PHOTO_DATA_IMAGE_GPS_LATITUDE] = (err == 0) ? GetLongitudeLatitude(propertyStr): 0; in ExtractImageExif() 301 err = imageSource->GetImagePropertyString(0, PHOTO_DATA_IMAGE_FRONT_CAMERA, propertyStr); in ExtractImageExif() 302 data->SetFrontCamera(err == 0 ? propertyStr : "0"); in ExtractImageExif() 305 err = imageSource->GetImagePropertyString(0, exifKey, propertyStr); in ExtractImageExif() 306 exifJson[exifKey] = (err == 0) ? propertyStr: ""; in ExtractImageExif() 312 err = imageSource->GetImagePropertyString(0, PHOTO_DATA_IMAGE_USER_COMMENT, propertyStr); in ExtractImageExif() 333 string propertyStr; ExtractLocationMetadata() local [all...] |
/foundation/multimedia/media_library/frameworks/innerkitsimpl/test/unittest/medialibrary_multistages_capture_test/src/ |
H A D | medialibrary_multistages_photo_capture_test.cpp | 787 string propertyStr;
in HWTEST_F() local 789 auto err = imageSource->GetImagePropertyString(0, PHOTO_DATA_IMAGE_GPS_LONGITUDE, propertyStr);
in HWTEST_F() 793 EXPECT_NE(propertyStr, "");
in HWTEST_F() 796 err = imageSource->GetImagePropertyString(0, PHOTO_DATA_IMAGE_GPS_LATITUDE, propertyStr);
in HWTEST_F() 800 EXPECT_NE(propertyStr, "");
in HWTEST_F() 821 string propertyStr;
in HWTEST_F() local 823 auto err = imageSource->GetImagePropertyString(0, PHOTO_DATA_IMAGE_GPS_LONGITUDE, propertyStr);
in HWTEST_F() 827 EXPECT_NE(propertyStr, "");
in HWTEST_F() 830 err = imageSource->GetImagePropertyString(0, PHOTO_DATA_IMAGE_GPS_LATITUDE, propertyStr);
in HWTEST_F() 834 EXPECT_NE(propertyStr, "");
in HWTEST_F() [all...] |
/foundation/graphic/graphic_2d/rosen/modules/render_service_profiler/ |
H A D | rs_profiler_dump.cpp | 249 auto propertyStr = drawCmdListPtr ? drawCmdListPtr->GetOpsWithDesc() : ""; in DumpNodeDrawCmdModifier() local 256 while ((pos = propertyStr.find('\n', oldpos)) != std::string::npos) { in DumpNodeDrawCmdModifier() 257 property.Append(propertyStr.substr(oldpos, pos - oldpos)); in DumpNodeDrawCmdModifier()
|
Completed in 3 milliseconds