Home
last modified time | relevance | path

Searched refs:relPath (Results 1 – 20 of 20) sorted by relevance

/third_party/node/deps/v8/tools/clusterfuzz/js_fuzzer/
Dcorpus.js55 const relPath = path.relative(this.inputDir, absPath);
56 if (exceptions.isTestSkippedRel(relPath)) {
57 this.skippedFiles.push(relPath);
59 exceptions.isTestSoftSkippedRel(relPath)) {
60 this.softSkippedFiles.push(relPath);
62 this.permittedFiles.push(relPath);
71 for (const relPath of this.permittedFiles) {
72 yield relPath;
74 for (const relPath of this.softSkippedFiles) {
75 yield relPath;
[all …]
Dsource_helpers.js200 constructor(baseDir, relPath, flags, dependentPaths) { argument
202 this.relPath = relPath;
205 this.sloppy = exceptions.isTestSloppyRel(relPath);
209 return fsPath.join(this.baseDir, this.relPath);
268 constructor(ast, baseDir, relPath, flags, dependentPaths) { argument
269 super(baseDir, relPath, flags, dependentPaths);
295 super(source.baseDir, source.relPath, source.flags, source.dependentPaths);
316 function loadSource(baseDir, relPath, parseStrict=false) { argument
317 const absPath = fsPath.resolve(fsPath.join(baseDir, relPath));
329 annotateWithOriginalPath(ast, relPath);
[all …]
Dgen_exceptions.js30 const relPath = match[1];
31 assert(relPath);
32 resultArray.push(relPath);
41 const relPath = match[1];
42 assert(relPath);
43 resultMap[relPath] = (resultMap[relPath] || 0) + parseInt(match[2]);
Ddb.js411 source.relPath,
438 let relPath = fsPath.relative(self.outputDir, filePath);
442 self.index.all.push(relPath);
445 self.index.superStatements.push(relPath);
447 self.index.statements.push(relPath);
Ddifferential_script_mutator.js74 return dependencies.some(dep => dep.relPath.endsWith('mjsunit.js'));
78 return dependencies.some(dep => dep.relPath.endsWith('jstest_stubs.js'));
127 inputs.forEach(input => common.setOriginalPath(input, input.relPath));
Dbuild_db.js41 for (const relPath of curCorpus.relFiles()) {
44 source = sourceHelpers.loadSource(inputDir, relPath);
Dscript_mutator.js152 'ERROR: Failed to resolve test harness for', input.relPath);
163 'ERROR: Failed to resolve dependencies for', input.relPath);
194 console.log('ERROR: Failed to normalize ', input.relPath);
Drun.js210 const paths = inputs.map(input => input.relPath);
/third_party/skia/third_party/externals/oboe/docs/reference/
Dmenu.js24 function initMenu(relPath,searchEnabled,serverSide,searchPage,search) { argument
25 function makeTree(data,relPath) { argument
30 result+='<li><a href="'+relPath+data.children[i].url+'">'+
32 makeTree(data.children[i],relPath)+'</li>';
39 $('#main-nav').append(makeTree(menudata,relPath));
43 …="left"><form id="FSearchBox" action="'+relPath+searchPage+'" method="get"><img id="MSearchSelect"…
45relPath+'search/mag_sel.png" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="retur…
/third_party/libevdev/doc/html/
Dmenu.js25 function initMenu(relPath,searchEnabled,serverSide,searchPage,search) { argument
26 function makeTree(data,relPath) { argument
31 result+='<li><a href="'+relPath+data.children[i].url+'">'+
33 makeTree(data.children[i],relPath)+'</li>';
40 $('#main-nav').append(makeTree(menudata,relPath));
44 …="left"><form id="FSearchBox" action="'+relPath+searchPage+'" method="get"><img id="MSearchSelect"…
46relPath+'search/mag_sel.svg" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="retur…
/third_party/node/lib/
Durl.js814 const relPath = (relative.pathname || '').split('/');
815 while (relPath.length && !(relative.host = relPath.shift()));
818 if (relPath[0] !== '') relPath.unshift('');
819 if (relPath.length < 2) relPath.unshift('');
820 result.pathname = relPath.join('/');
849 const relPath = (relative.pathname && relative.pathname.split('/')) || [];
871 if (relPath[0] === '') relPath[0] = relative.host;
872 else relPath.unshift(relative.host);
876 mustEndAbs = mustEndAbs && (relPath[0] === '' || srcPath[0] === '');
892 srcPath = relPath;
[all …]
/third_party/skia/third_party/externals/tint/tools/src/glob/
Dglob.go191 relPath, err := filepath.Rel(root, absPath)
195 relPath = filepath.ToSlash(relPath) // Canonicalize
199 res = rule(relPath, res)
/third_party/node/deps/v8/tools/clusterfuzz/js_fuzzer/test/
Dhelpers.js51 function loadTestData(relPath) { argument
52 return sourceHelpers.loadSource(BASE_DIR, relPath);
/third_party/skia/third_party/externals/spirv-tools/utils/vscode/src/tools/
Dgen-grammar.go119 relPath := func(path string) string {
130 "--template=" + escape(relPath(*templatePath)),
131 "--out=" + escape(relPath(*outputPath)),
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/utils/vscode/src/tools/
Dgen-grammar.go119 relPath := func(path string) string {
130 "--template=" + escape(relPath(*templatePath)),
131 "--out=" + escape(relPath(*outputPath)),
/third_party/spirv-tools/utils/vscode/src/tools/
Dgen-grammar.go119 relPath := func(path string) string {
130 "--template=" + escape(relPath(*templatePath)),
131 "--out=" + escape(relPath(*outputPath)),
/third_party/skia/third_party/externals/swiftshader/tests/regres/testlist/
Dtestlist.go169 relPath, err := filepath.Rel(root, group.File)
173 group.File = relPath
/third_party/skia/third_party/externals/swiftshader/tests/regres/cmd/regres/
Dmain.go1587 func (t *test) loadTestLists(relPath string) (testlist.Lists, error) {
1589 if path := filepath.Join(t.checkoutDir, relPath); util.IsFile(path) {
1590 log.Printf("Loading test list '%v' from commit\n", relPath)
1599 if path := filepath.Join(wd, relPath); util.IsFile(path) {
1600 log.Printf("Loading test list '%v' from regres\n", relPath)
1601 return testlist.Load(wd, relPath)
/third_party/vk-gl-cts/scripts/
Dmake_release.py67 relPath = removeLeadingPath(os.path.normpath(os.path.join(root, file)), basePath)
68 allFiles.append(relPath)
/third_party/NuttX/fs/tmpfs/
Dfs_tmpfs.c1783 int tmpfs_lookup(struct Vnode *parent, const char *relPath, int len, struct Vnode **vpp) in tmpfs_lookup() argument
1796 ret = memcpy_s(filename, (len + 1), relPath, len); in tmpfs_lookup()