Searched refs:absPath (Results 1 – 6 of 6) sorted by relevance
/external/perfetto/ui/ |
D | build.js | 361 walk(cfg.outDistDir, absPath => { 362 const contents = fs.readFileSync(absPath); 363 const relPath = path.relative(cfg.outDistDir, absPath); 400 const absPath = path.normalize(path.join(cfg.outDistRootDir, uri)); 401 fs.readFile(absPath, function(err, data) { 419 'Last-Modified': fs.statSync(absPath).mtime.toUTCString(), 487 function scanFile(absPath) { argument 488 console.assert(fs.existsSync(absPath)); 489 console.assert(path.isAbsolute(absPath)); 490 const normPath = path.relative(ROOT_DIR, absPath); [all …]
|
/external/mockftpserver/tags/2.x_Before_IDEA/src/test/groovy/org/mockftpserver/fake/filesystem/ |
D | DefaultFileSystemTest.groovy | 144 assertEquals("<empty>", absPath(""), fileSystem.normalize("")) 145 assertEquals("abc", absPath("abc"), fileSystem.normalize("abc")) 146 assertEquals("abc\\def", absPath("abc","def"), fileSystem.normalize("abc\\def")) 147 assertEquals("abc/def", absPath("abc","def"), fileSystem.normalize("abc/def")) 148 assertEquals("abc/def/..", absPath("abc"), fileSystem.normalize("abc/def/..")) 149 assertEquals("abc\\def\\.", absPath("abc","def"), fileSystem.normalize("abc\\def\\.")) 150 assertEquals("\\abc", absPath("\\abc"), fileSystem.normalize("\\abc")) 151 assertEquals("/abc", absPath("/abc"), fileSystem.normalize("/abc")) 184 def absPath = new File(".").absolutePath 185 assert fileSystem.isAbsolute(absPath) [all …]
|
/external/perfetto/infra/perfetto.dev/ |
D | build.js | 194 const absPath = path.normalize(path.join(cfg.outDir, uri)); 195 fs.readFile(absPath, function(err, data) { 252 const absPath = path.isAbsolute(file) ? file : pjoin(ROOT_DIR, file); 253 console.assert(fs.existsSync(absPath)); 254 const normPath = path.relative(ROOT_DIR, absPath); 259 rule.f(absPath, captureGroup); 268 const filterFn = regex ? absPath => regex.test(absPath) : () => true;
|
/external/dokka/core/src/main/kotlin/Model/ |
D | SourceLinks.kt | 15 val absPath = File(path).absolutePath in appendSourceLink() constant 16 val linkDef = sourceLinks.firstOrNull { absPath.startsWith(it.path) } in appendSourceLink()
|
/external/deqp/scripts/ |
D | gen_android_bp.py | 108 absPath = os.path.join(root, file) 109 nativeRelPath = os.path.relpath(absPath, DEQP_DIR)
|
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/ |
D | TestLocale.java | 126 String absPath = f.getAbsolutePath(); in shouldCheckForAliases() local 127 return absPath.endsWith("xml") && !absPath.contains("dtd") in shouldCheckForAliases() 128 && !absPath.contains("keyboard") in shouldCheckForAliases() 129 && !absPath.contains("Keyboard"); in shouldCheckForAliases()
|