Home
last modified time | relevance | path

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

/external/chromium-trace/catapult/third_party/vinn/vinn/
Dhtml_imports_loader.js103 var absPath = hrefToAbsolutePath(href);
104 loadHTMLFile.call(global, absPath, href);
108 var absPath = hrefToAbsolutePath(href);
109 loadFile.call(global, absPath, href);
112 function loadHTMLFile(absPath, opt_href) { argument
113 var href = opt_href || absPath;
114 if (loadedModulesByFilePath[absPath])
116 loadedModulesByFilePath[absPath] = true;
118 var html_content = readFileContents(absPath);
143 function loadFile(absPath, opt_href) { argument
[all …]
Dpath_utils.js41 return this.os_client_.exists(this.absPath(fileName));
67 absPath: function(a) { method in global.PathUtils
78 var a = this.absPath(a);
82 relTo = this.normPath(this.absPath(opt_relTo));
Dpath_utils_test.js35 assert.equal(path_utils.absPath('c'), '/a/b/c');
36 assert.equal(path_utils.absPath('./c'), '/a/b/c');
37 assert.equal(path_utils.absPath('./c/d'), '/a/b/c/d');
/external/mockftpserver/tags/2.x_Before_IDEA/src/test/groovy/org/mockftpserver/fake/filesystem/
DDefaultFileSystemTest.groovy144 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/skia/platform_tools/android/bin/utils/
Dsetup_toolchain.sh24 if [ $(type -t absPath) != 'function' ]; then