Home
last modified time | relevance | path

Searched refs:strPath (Results 1 – 7 of 7) sorted by relevance

/foundation/bundlemanager/bundle_framework/interfaces/kits/zip/src/
Dzip_writer.cpp82 std::string strPath = path.Value(); in OpenNewFileEntry() local
85 strPath += SEPARATOR; in OpenNewFileEntry()
88 return ZipOpenNewFileInZip(zip_file, strPath, options, lastModified); in OpenNewFileEntry()
Dzip_internal.cpp272 …zipFile zipFile, const std::string &strPath, const OPTIONS &options, const struct tm *lastModified… in ZipOpenNewFileInZip() argument
279 strPath.c_str(), // filename in ZipOpenNewFileInZip()
/foundation/bundlemanager/bundle_framework/interfaces/kits/zip/include/
Dzip_internal.h65 …zipFile zipFile, const std::string &strPath, const OPTIONS &options, const struct tm *lastModified…
/foundation/multimodalinput/input/util/common/src/
Dutil.cpp276 std::string GetFileName(const std::string &strPath) in GetFileName() argument
278 size_t nPos = strPath.find_last_of('/'); in GetFileName()
279 if (strPath.npos == nPos) { in GetFileName()
280 nPos = strPath.find_last_of('\\'); in GetFileName()
282 if (strPath.npos == nPos) { in GetFileName()
283 return strPath; in GetFileName()
285 return strPath.substr(nPos + 1, strPath.npos); in GetFileName()
/foundation/graphic/ui/test/unittest/components/
Dui_image_unit_test.cpp148 const char* strPath = static_cast<const char*>(TIF_IMAGE_PATH); variable
149 imageView_->SetSrc(strPath);
150 EXPECT_STREQ(imageView_->GetPath(), strPath);
/foundation/multimodalinput/input/util/common/include/
Dutil.h52 std::string GetFileName(const std::string &strPath);
/foundation/communication/bluetooth/services/bluetooth/service/src/pbap_pce/
Dpbap_pce_state_machine.cpp806 std::string strPath = Replace(U16ToStr(vcardPath), "/", "_"); in GetDownloadFileName() local
808 std::string strRet = device + strPath + strVcardFileName; in GetDownloadFileName()