Home
last modified time | relevance | path

Searched refs:path (Results 3201 - 3225 of 10797) sorted by relevance

1...<<121122123124125126127128129130>>...432

/foundation/graphic/graphic_3d/lume/LumeEcsSerializer/EcsSerializer/include/ecs_serializer/
H A Decs_property_util.h35 const string& propertyPath, string& path, string& name) in ResolveContainerProperty()
37 // Extract property path. in ResolveContainerProperty()
43 path = propertyPath.substr(0, separatorPosition); in ResolveContainerProperty()
51 auto propertyData = PropertyData::FindProperty(handle.Owner()->MetaData(), path, offset); in ResolveContainerProperty()
34 ResolveContainerProperty(const IPropertyHandle& handle, const string& propertyPath, string& path, string& name) ResolveContainerProperty() argument
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/render/
H A Drs_path.h27 #include "draw/path.h"
35 static RSB_EXPORT std::shared_ptr<RSPath> CreateRSPath(const Drawing::Path& path);
36 static RSB_EXPORT std::shared_ptr<RSPath> CreateRSPath(const std::string& path);
46 void SetDrawingPath(const Drawing::Path& path);
/foundation/graphic/graphic_3d/lume/LumeEngine/src/io/
H A Dstd_file.h37 static IFile::Ptr Open(BASE_NS::string_view path, Mode mode);
40 static IFile::Ptr Create(BASE_NS::string_view path, Mode mode);
62 bool IsValidPath(const BASE_NS::string_view path);
/foundation/multimedia/media_library/frameworks/innerkitsimpl/medialibrary_data_extension/src/
H A Dmedialibrary_data_manager_utils.cpp55 string MediaLibraryDataManagerUtils::GetDisPlayNameFromPath(const std::string &path) in GetDisPlayNameFromPath() argument
58 size_t lastSlashPosition = path.rfind("/"); in GetDisPlayNameFromPath()
60 displayName = path.substr(lastSlashPosition + 1); in GetDisPlayNameFromPath()
/foundation/multimedia/player_framework/test/fuzztest/avmetadata_fuzztest/avmetadatafile_fuzzer/
H A Davmetadatafile_fuzzer.cpp46 const string path = "/data/test/media/fuzztest.mp4"; in FuzzAVMetadataFile() local
48 int32_t retWritefile = WriteDataToFile(path, data, size); in FuzzAVMetadataFile()
54 int32_t retMetadatasetsource = MetaDataSetSource(path, avmetadata); in FuzzAVMetadataFile()
/foundation/multimodalinput/input/tools/event_inject/test/
H A Dget_device_object_test.cpp43 const std::string path = "/data/json/Test_GetDeviceObjectTest.json"; in HWTEST_F() local
52 std::string jsonBuf = ReadJsonFile(path); in HWTEST_F()
54 ASSERT_TRUE(false) << "Open file failed" << path; in HWTEST_F()
/foundation/communication/ipc/services/dbinder/test/
H A Dtest_dbinder.py21 sys.path.insert(0, os.environ.get('PYTEST_PYTESTPATH'))
29 self.suits_dir = os.path.abspath(os.path.dirname(__file__))
/foundation/distributeddatamgr/relational_store/interfaces/inner_api/rdb/include/
H A Dasset_value.h42 std::string path; member
70 return path < ref.path; in operator <()
/foundation/filemanagement/file_api/interfaces/kits/cj/src/
H A Dlist_file.h66 std::string path = ""; member
75 path = ""; in Clear()
81 static RetDataCArrStringN ListFile(const std::string &path, CListFileOptions options);
/test/testfwk/developer_test/aw/python/distributed/
H A Dsample.py22 sys.path.insert(0, os.environ.get('PYTEST_PYTESTPATH'))
32 self.suits_dir = os.path.abspath(os.path.dirname(__file__))
/third_party/curl/lib/
H A Dcookie.h34 char *path; /* path = <this> which is in Set-Cookie: */ member
35 char *spath; /* sanitized cookie path */
105 * Add a cookie to the internal list of cookies. The domain and path arguments
112 const char *domain, const char *path,
117 const char *path, bool secure);
/third_party/icu/tools/unicode/c/genprops/
H A Dgenprops.h40 virtual void writeCSourceFile(const char *path, UErrorCode &errorCode);
41 virtual void writeJavaSourceFile(const char *path, UErrorCode &errorCode);
42 virtual void writeBinaryData(const char *path, UBool withCopyright, UErrorCode &errorCode);
/third_party/ltp/testcases/kernel/containers/userns/
H A Duserns05.c31 char path[BUFSIZ]; in getusernsidbypid() local
35 sprintf(path, "/proc/%d/ns/user", pid); in getusernsidbypid()
37 SAFE_READLINK(path, userid, BUFSIZ); in getusernsidbypid()
H A Duserns07.c66 char path[BUFSIZ]; in run() local
78 sprintf(path, "/proc/%d/setgroups", cpid); in run()
79 SAFE_FILE_PRINTF(path, "deny"); in run()
/third_party/ltp/testcases/kernel/device-drivers/v4l/user_space/
H A Ddev_video.c31 static int try_ASUS_camera(char *path, char *value) in try_ASUS_camera() argument
37 ASUS_camera = open(path, O_WRONLY); in try_ASUS_camera()
39 fprintf(stderr, "Cannot open %s: %s\n", path, strerror(errno)); in try_ASUS_camera()
/third_party/mesa3d/src/gallium/frontends/clover/llvm/
H A Dutil.hpp82 const std::string path = debug_get_option("CLOVER_DEBUG_FILE", in log() local
84 if (path == "stderr") in log()
87 std::ofstream(path + suffix, std::ios::app) << s; in log()
/third_party/node/deps/v8/tools/clusterfuzz/js_fuzzer/test/
H A Dtest_differential_fuzz_library.js13 const path = require('path');
15 const libPath = path.resolve(
16 path.join(__dirname, '..', 'resources', 'differential_fuzz_library.js'));
/third_party/node/deps/v8/tools/dev/
H A Dgen-tags.py81 for path in paths:
82 for root, dirs, files in os.walk(path):
85 fullpath = os.path.join(root, file)
/third_party/node/test/parallel/
H A Dtest-child-process-fork-exec-path.js30 const path = require('path');
36 const copyPath = path.join(tmpdir.path, 'node-copy.exe');
H A Dtest-debugger-clear-breakpoints.js10 const path = require('path');
14 const scriptFullPath = fixtures.path('debugger', 'break.js');
15 const script = path.relative(process.cwd(), scriptFullPath);
H A Dtest-fs-stream-construct-compat-error-write.js28 fs.open(that.path, that.flags, that.mode, (err, fd) => {
34 fs.open(`${tmpdir.path}/dummy`, 'wx+', common.mustCall((err, fd) => {
38 const w = new WriteStream(`${tmpdir.path}/dummy`,
H A Dtest-fs-watchfile-bigint.js10 const path = require('path');
14 const enoentFile = path.join(tmpdir.path, 'non-existent-file');
H A Dtest-http-agent-maxsockets.js20 function get(path, callback) {
25 path: path
H A Dtest-repl-history-perm.js16 const path = require('path');
20 // Invoking the REPL should create a repl history file at the specified path
36 const replHistoryPath = path.join(tmpdir.path, '.node_repl_history');
/third_party/node/test/pummel/
H A Dtest-fs-watch-file-slow.js25 const path = require('path');
31 const FILENAME = path.join(tmpdir.path, 'watch-me');

Completed in 9 milliseconds

1...<<121122123124125126127128129130>>...432