Home
last modified time | relevance | path

Searched refs:nodePath (Results 1 – 6 of 6) sorted by relevance

/third_party/flutter/skia/third_party/externals/sdl/premake/patches/
D713.patch20 + local nodePath = node.path
21 + local _, matchEnd, variable = string.find(nodePath, "^%$%((.+)%)/")
25 + nodePath = string.sub(nodePath, matchEnd + 1)
27 + if string.find(nodePath,'/') then
28 + if string.find(nodePath,'^%.')then
32 + pth = nodePath
35 + pth = "/System/Library/Frameworks/" .. nodePath
/third_party/vk-gl-cts/framework/common/
DtcuTestHierarchyIterator.cpp153 string nodePath; in buildNodePath() local
158 nodePath += "."; in buildNodePath()
159 nodePath += iter.node->getName(); in buildNodePath()
161 return nodePath; in buildNodePath()
176 const std::string nodePath = buildNodePath(m_sessionStack); in next() local
179 …ter.checkRunnerType(node->getRunnerType()) && m_caseListFilter.checkTestCaseName(nodePath.c_str())) in next()
180 : m_caseListFilter.checkTestGroupName(nodePath.c_str()))) in next()
186 m_nodePath = nodePath; in next()
/third_party/node/test/parallel/
Dtest-pipe-head.js8 const nodePath = process.argv[0]; constant
11 const cmd = `"${nodePath}" "${script}" | head -2`;
Dtest-child-process-fork-exec-path.js35 const nodePath = process.execPath; constant
51 fs.copyFileSync(nodePath, copyPath, fs.constants.COPYFILE_FICLONE);
/third_party/node/tools/
Dtest-npm-package.js29 const nodePath = path.dirname(process.execPath); constant
66 npmOptions.env.Path = `${nodePath};${process.env.Path}`;
69 npmOptions.env.PATH = `${nodePath}:${process.env.PATH}`;
/third_party/node/lib/internal/modules/cjs/
Dloader.js1197 const nodePath = isWindows ? process.env.NODE_PATH : safeGetenv('NODE_PATH');
1212 if (nodePath) {
1214 StringPrototypeSplit(nodePath, path.delimiter),