Home
last modified time | relevance | path

Searched refs:outPath (Results 1 - 17 of 17) sorted by relevance

/foundation/multimedia/media_library/frameworks/services/media_thumbnail/src/
H A Dthumbnail_uri_utils.cpp45 string &outPath, string &outTableName) in ParseThumbnailInfo()
71 outPath = queryKey[THUMBNAIL_PATH]; in ParseThumbnailInfo()
74 if (!CheckSize(outSize, outPath)) { in ParseThumbnailInfo()
82 int32_t &outType, string &outPath) in ParseKeyFrameThumbnailInfo()
107 outPath = queryKey[THUMBNAIL_PATH]; in ParseKeyFrameThumbnailInfo()
112 bool ThumbnailUriUtils::IsOriginalImg(const Size &outSize, const string &outPath) in IsOriginalImg() argument
117 bool ThumbnailUriUtils::CheckSize(Size &outSize, const string &outPath) in CheckSize() argument
119 if (IsOriginalImg(outSize, outPath)) { in CheckSize()
129 if ((outSize.width <= 0 || outSize.height <= 0) && !IsOriginalImg(outSize, outPath)) { in CheckSize()
44 ParseThumbnailInfo(const string &uriString, string &outFileId, Size &outSize, string &outPath, string &outTableName) ParseThumbnailInfo() argument
81 ParseKeyFrameThumbnailInfo(const string &uriString, string &outFileId, int32_t &outBeginStamp, int32_t &outType, string &outPath) ParseKeyFrameThumbnailInfo() argument
/foundation/multimedia/media_library/frameworks/services/media_thumbnail/include/
H A Dthumbnail_uri_utils.h34 int32_t &outBeginStamp, int32_t &outType, std::string &outPath);
39 static bool IsOriginalImg(const Size &outSize, const std::string &outPath);
40 static bool CheckSize(Size &outSize, const std::string &outPath);
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/fuzztest/parseckeck_fuzzer/
H A Dparseckeck_fuzzer.cpp75 FieldPath outPath; in ParseFieldPath() local
76 SchemaUtils::ParseAndCheckFieldPath(schemaAttrString, outPath); in ParseFieldPath()
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/src/
H A Dquery_expression.cpp47 FieldPath outPath; in AssemblyQueryInfo() local
49 if (SchemaUtils::ParseAndCheckFieldPath(field, outPath) != E_OK) { in AssemblyQueryInfo()
57 for (auto it = outPath.begin(); it < outPath.end(); ++it) { in AssemblyQueryInfo()
58 if (it != outPath.begin()) { in AssemblyQueryInfo()
H A Dschema_utils.cpp383 int SchemaUtils::ParseAndCheckFieldPath(const std::string &inPathString, FieldPath &outPath, bool permitPrefix) in ParseAndCheckFieldPath() argument
409 outPath.push_back(tempInPathString.substr(curPos + 1, nextPointPos - curPos - 1)); in ParseAndCheckFieldPath()
413 if (outPath.size() > SchemaConstant::SCHEMA_FEILD_PATH_DEPTH_MAX) { in ParseAndCheckFieldPath()
418 for (const auto &iter : outPath) { in ParseAndCheckFieldPath()
/foundation/ability/idl_tool/idl_tool_2/codegen/
H A Dcode_emitter.cpp62 std::string outPath = StringHelper::EndWith(outDir, SEPARATOR) ? outDir.substr(0, outDir.size() - 1) : outDir; in GetFileParentPath() local
66 return File::AdapterPath(StringHelper::Format("%s/", outPath.c_str(), subPath.c_str())); in GetFileParentPath()
68 return File::AdapterPath(StringHelper::Format("%s/%s/", outPath.c_str(), subPath.c_str())); in GetFileParentPath()
/foundation/arkui/ace_engine/frameworks/component_test/
H A Dtest_result_recorder.cpp62 std::vector<std::string> SplitString(const std::string& outPath) in SplitString() argument
66 std::sregex_token_iterator iter(outPath.begin(), outPath.end(), delimiter, -1); in SplitString()
/foundation/graphic/graphic_2d/rosen/modules/2d_engine/rosen_text/skia_txt/symbol_engine/
H A Dhm_symbol_node_build.cpp66 Drawing::Path outPath; in MergeMaskPath() local
67 bool isOk = outPath.Op(pathsColor[j].path, maskPath, Drawing::PathOp::DIFFERENCE); in MergeMaskPath()
68 pathsColor[j].path = isOk ? outPath : pathsColor[j].path; in MergeMaskPath()
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/common/include/
H A Dschema_utils.h37 static int ParseAndCheckFieldPath(const std::string &inPathString, FieldPath &outPath, bool permitPrefix = true);
/foundation/multimedia/media_library/frameworks/services/media_mtp/include/
H A Dmtp_medialibrary_manager.h43 int32_t GetPathById(const int32_t id, std::string &outPath);
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/sqlite/
H A Dsqlite_utils_extend.cpp141 FieldPath outPath; in JsonExtractByPath() local
142 int errCode = SchemaUtils::ParseAndCheckFieldPath(path, outPath); in JsonExtractByPath()
154 JsonExtractInnerFunc(ctx, *valueObj, outPath); in JsonExtractByPath()
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/multiver/
H A Dmulti_ver_natural_store.h187 int GetVersionFilePath(const KvDBProperties &kvDBProp, std::string &outPath) const;
H A Dmulti_ver_natural_store.cpp1175 int MultiVerNaturalStore::GetVersionFilePath(const KvDBProperties &kvDBProp, std::string &outPath) const in GetVersionFilePath()
1183 outPath = verFiledir + "/" + DBConstant::MULTI_SUB_DIR + "/version"; in GetVersionFilePath()
/foundation/arkui/ace_engine/adapter/ohos/osal/
H A Dresource_adapter_impl.cpp528 std::string outPath; in GetRawfile() local
539 auto state = manager->GetRawFilePathByName(newFileName, outPath); in GetRawfile()
544 return "file:///" + outPath + params; in GetRawfile()
H A Dresource_adapter_impl_v2.cpp643 std::string outPath; in GetRawfile() local
654 auto state = manager->GetRawFilePathByName(newFileName, outPath); in GetRawfile()
660 return "file:///" + outPath + params; in GetRawfile()
/foundation/multimedia/media_library/frameworks/services/media_mtp/src/
H A Dmtp_medialibrary_manager.cpp325 int32_t MtpMedialibraryManager::GetPathById(const int32_t id, string &outPath) in GetPathById() argument
330 outPath = fileAsset->GetPath(); in GetPathById()
/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/src/drawing/recording/
H A Ddraw_cmd.cpp1941 Drawing::Path outPath; in MergeDrawingPath() local
1942 auto isOk = outPath.Op(pathTemp, pathLayers[h], Drawing::PathOp::DIFFERENCE); in MergeDrawingPath()
1944 pathTemp = outPath; in MergeDrawingPath()

Completed in 18 milliseconds