/third_party/parse5/test/utils/ |
D | load-sax-parser-test-data.ts | 9 return testSetFileDirs.map((dirName) => { 10 const srcFilePath = path.join(dataDirPath.pathname, dirName, 'src.html'); 11 const expectedFilePath = path.join(dataDirPath.pathname, dirName, 'expected.html'); 16 name: dirName,
|
D | generate-parsing-tests.ts | 12 dirName: string; property 23 const dirName = path.basename(dataDirPath); constant 39 dirName, 151 …`${prefix}(${test.dirName}) - ${test.idx}.${test.setName} - \`${test.input}\` (line ${test.lineNum…
|
D | generate-location-info-parser-tests.ts | 105 return testSetFileDirs.map((dirName) => { 106 const dataFilePath = path.join(dataDirPath.pathname, dirName, 'data.html'); 110 name: dirName,
|
/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/charsetdet/mbcs/ |
D | BIG5Tool.java | 66 String dirName = null; in Main() local 81 if (dirName == null) { in Main() 82 dirName = args[i]; in Main() 84 System.err.println("Unrecognized option: " + dirName); in Main() 88 if (dirName == null) { in Main() 89 dirName = "."; in Main() 95 File dir = new File(dirName); in Main() 97 System.err.println("\"" + dirName + "\" is not a directory"); in Main()
|
D | EUCTool.java | 65 String dirName = "."; in Main() local 76 dirName = args[i]; in Main() 82 File dir = new File(dirName); in Main() 84 System.err.println("\"" + dirName + "\" is not a directory"); in Main()
|
/third_party/node/test/parallel/ |
D | test-process-chdir.js | 18 let dirName; variable 21 dirName = 'weird \uc3a4\uc3ab\uc3af characters \u00e1\u00e2\u00e3'; 24 dirName = 'weird \ud83d\udc04 characters \ud83d\udc05'; 26 const dir = path.resolve(tmpdir.path, dirName);
|
D | test-require-symlink.js | 21 const dirName = 'module-require-symlink'; constant 22 const fixtureSource = fixtures.path(dirName); 23 const tmpDirTarget = path.join(tmpdir.path, dirName); 49 const linkDir = path.join(dirName, 59 const linkScriptTarget = path.join(dirName, 'symlinked.js');
|
D | test-fs-watch.js | 14 constructor(shouldInclude, dirName, fileName, field) { argument 15 this.dirName = dirName; 20 get dirPath() { return join(tmpdir.path, this.dirName); }
|
D | test-fs-promises-watch.js | 15 constructor(shouldInclude, dirName, fileName, field) { argument 16 this.dirName = dirName; 21 get dirPath() { return join(tmpdir.path, this.dirName); }
|
D | test-require-long-path.js | 13 const dirName = path.join(tmpdir.path, 'x'.repeat(dirNameLen)); constant 14 const fullDirPath = path.resolve(dirName);
|
/third_party/vk-gl-cts/scripts/ |
D | build_caselists.py | 35 def __init__ (self, name, dirName, binName): argument 37 self.dirName = dirName 74 fullPath = os.path.join(modulesDir, module.dirName) 84 …return os.path.join(getModulesPath(buildCfg), module.dirName, getCaseListFileName(module, caseList… 87 workDir = os.path.join(getModulesPath(buildCfg), module.dirName)
|
D | make_release.py | 103 dirName = os.path.dirname(self.dstFile) 104 if not os.path.exists(dirName): 105 os.makedirs(dirName) 327 dirName = os.path.join(tempfile.gettempdir(), "dEQP-Releases") 328 if not os.path.exists(dirName): 329 os.makedirs(dirName) 330 return dirName
|
/third_party/flutter/flutter/packages/flutter_tools/test/general.shard/ |
D | forbidden_imports_test.dart | 18 for (String dirName in <String>['lib', 'bin']) { 19 final Iterable<File> files = fs.directory(fs.path.join(flutterTools, dirName)) 38 for (String dirName in <String>['lib', 'bin', 'test']) { 39 final Iterable<File> files = fs.directory(fs.path.join(flutterTools, dirName)) 62 for (String dirName in <String>['lib']) { 63 final Iterable<File> files = fs.directory(fs.path.join(flutterTools, dirName)) 88 for (String dirName in <String>['lib']) { 89 final Iterable<File> files = fs.directory(fs.path.join(flutterTools, dirName))
|
/third_party/lz4/programs/ |
D | util.h | 490 UTIL_STATIC int UTIL_prepareFileList(const char* dirName, char** bufStart, size_t* pos, char** bufE… in UTIL_prepareFileList() argument 497 dirLength = strlen(dirName); in UTIL_prepareFileList() 501 memcpy(path, dirName, dirLength); in UTIL_prepareFileList() 508 fprintf(stderr, "Cannot open directory '%s'\n", dirName); in UTIL_prepareFileList() 518 memcpy(path, dirName, dirLength); in UTIL_prepareFileList() 556 UTIL_STATIC int UTIL_prepareFileList(const char* dirName, char** bufStart, size_t* pos, char** bufE… in UTIL_prepareFileList() argument 563 if (!(dir = opendir(dirName))) { in UTIL_prepareFileList() 564 fprintf(stderr, "Cannot open directory '%s': %s\n", dirName, strerror(errno)); in UTIL_prepareFileList() 568 dirLength = strlen(dirName); in UTIL_prepareFileList() 578 memcpy(path, dirName, dirLength); in UTIL_prepareFileList() [all …]
|
/third_party/typescript/src/compiler/ |
D | sys.ts | 338 …function createDirectoryWatcher(dirName: string, dirPath: string, fallbackOptions: WatchOptions | … 340 dirName, 345 const fileName = getNormalizedAbsolutePath(relativeFileName, dirName); 477 dirName: string; 487 …const callbackCache = createMultiMap<Path, { dirName: string; callback: DirectoryWatcherCallback; … 488 …const cacheToUpdateChildWatches = new Map<Path, { dirName: string; options: WatchOptions | undefin… 494 return (dirName, callback, recursive, options) => recursive ? 495 createDirectoryWatcher(dirName, options, callback) : 496 watchDirectory(dirName, callback, recursive, options); 501 …function createDirectoryWatcher(dirName: string, options: WatchOptions | undefined, callback?: Dir… [all …]
|
/third_party/vk-gl-cts/external/vulkancts/scripts/ |
D | build_spirv_binaries.py | 38 def __init__ (self, name, dirName, binName): argument 40 self.dirName = dirName 64 workDir = os.path.join(buildCfg.getBuildDir(), "modules", module.dirName)
|
/third_party/skia/third_party/externals/angle2/src/common/ |
D | system_utils.h | 27 bool SetCWD(const char *dirName); 38 bool IsFullPath(std::string dirName);
|
D | system_utils.cpp | 104 bool IsFullPath(std::string dirName) in IsFullPath() argument 106 if (dirName.find(GetRootDirectory()) == 0) in IsFullPath()
|
D | system_utils_win.cpp | 65 bool SetCWD(const char *dirName) in SetCWD() argument 67 return (SetCurrentDirectoryA(dirName) == TRUE); in SetCWD()
|
D | system_utils_posix.cpp | 54 bool SetCWD(const char *dirName) in SetCWD() argument 56 return (chdir(dirName) == 0); in SetCWD()
|
/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/ |
D | LdmlConverterConfig.java | 40 private final String dirName = Ascii.toLowerCase(name()); field in LdmlConverterConfig.IcuLocaleDir 49 return dirName; in getOutputDir()
|
/third_party/node/deps/npm/node_modules/npm-packlist/ |
D | index.js | 75 const dirName = path.basename(opt.path) constant 78 dirName === 'node_modules' || 79 (parentName === 'node_modules' && /^@/.test(dirName))
|
/third_party/parse5/bench/perf/ |
D | index.js | 55 global.files = readdirSync(saxPath).map((dirName) => new URL(`${dirName}/src.html`, saxPath).pathna…
|
/third_party/flutter/skia/third_party/externals/angle2/src/common/ |
D | system_utils_posix.cpp | 82 bool SetCWD(const char *dirName) in SetCWD() argument 84 return (chdir(dirName) == 0); in SetCWD()
|
/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/ |
D | vkBinaryRegistry.cpp | 56 string getProgramPath (const std::string& dirName, deUint32 index) in getProgramPath() argument 58 return de::FilePath::join(dirName, getProgramFileName(index)).getPath(); in getProgramPath() 104 string getIndexPath (const std::string& dirName) in getIndexPath() argument 106 return de::FilePath::join(dirName, "index.bin").getPath(); in getIndexPath()
|