Home
last modified time | relevance | path

Searched refs:executableDir (Results 1 – 5 of 5) sorted by relevance

/third_party/skia/third_party/externals/angle2/src/common/
Dsystem_utils_unittest.cpp35 std::string executableDir = GetExecutableDirectory(); in TEST() local
36 EXPECT_NE("", executableDir); in TEST()
39 EXPECT_LT(executableDir.size(), executablePath.size()); in TEST()
40 EXPECT_EQ(0, strncmp(executableDir.c_str(), executablePath.c_str(), executableDir.size())); in TEST()
/third_party/node/test/fixtures/postject-copy/node_modules/commander/lib/
Dcommand.js972 let executableDir = this._executableDir || '';
980 executableDir = path.resolve(path.dirname(resolvedScriptPath), executableDir);
984 if (executableDir) {
985 let localFile = findFile(executableDir, executableFile);
991 localFile = findFile(executableDir, `${legacyName}-${subcommand._name}`);
1042 const executableDirMessage = executableDir
1043 ? `searched for local subcommand relative to directory '${executableDir}'`
1953 executableDir(path) { method in Command
/third_party/skia/third_party/externals/angle2/src/tests/perf_tests/
Dglmark2Benchmark.cpp134 std::string executableDir = GetExecutableDirectory(); in run() local
135 SetCWD(executableDir.c_str()); in run()
/third_party/node/test/fixtures/postject-copy/node_modules/commander/typings/
Dindex.d.ts820 executableDir(path: string): this;
824 executableDir(): string;
/third_party/node/test/fixtures/postject-copy/node_modules/commander/
DReadme.md686 You may specify a custom search directory for subcommands with `.executableDir()`.