/third_party/node/deps/v8/tools/clusterfuzz/js_fuzzer/ |
H A D | corpus.js | 55 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...] |
H A D | source_helpers.js | 200 constructor(baseDir, relPath, flags, dependentPaths) { 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) { 269 super(baseDir, relPath, flags, dependentPaths); 295 super(source.baseDir, source.relPath, source.flags, source.dependentPaths); 316 function loadSource(baseDir, relPath, parseStrict=false) { 317 const absPath = fsPath.resolve(fsPath.join(baseDir, relPath)); [all...] |
H A D | exceptions.js | 193 function isTestSkippedRel(relPath) { 194 return generatedSkipped.has(normalize(relPath)); 223 function isTestSoftSkippedRel(relPath) { 224 return this.getGeneratedSoftSkipped().has(normalize(relPath)); 227 function isTestSloppyRel(relPath) { 228 return this.getGeneratedSloppy().has(normalize(relPath));
|
H A D | gen_exceptions.js | 30 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]);
|
H A D | db.js | 411 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);
|
H A D | differential_script_mutator.js | 74 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));
|
H A D | build_db.js | 41 for (const relPath of curCorpus.relFiles()) { 44 source = sourceHelpers.loadSource(inputDir, relPath);
|
H A D | script_mutator.js | 152 '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);
|
H A D | run.js | 210 const paths = inputs.map(input => input.relPath);
|
/third_party/libevdev/doc/html/ |
H A D | menu.js | 25 function initMenu(relPath,searchEnabled,serverSide,searchPage,search) { 26 function makeTree(data,relPath) { 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 $('#main-menu').append('<li style="float:right"><div id="MSearchBox" class="MSearchBoxInactive"><div class="left"><form id="FSearchBox" action="'+relPath+searchPage+'" method="get"><img id="MSearchSelect" src="'+relPath+'search/mag.svg" alt=""/><input type="text" id="MSearchField" name="query" value="'+search+'" size="20" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)"></form></div><div class="right"></div></div></li>'); 46 $('#main-menu').append('<li style="float:right"><div id="MSearchBox" class="MSearchBoxInactive"><span class="left"><img id="MSearchSelect" src="'+relPath+'search/mag_sel.svg" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" alt=""/><input type="text" id="MSearchField" value="'+search+'" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)" onkeyup="searchBox.OnSearchFieldChange(event)"/></span><span class="right"><a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="'+relPath+'search/close.svg" alt=""/></a></span></div></li>');
|
/third_party/skia/third_party/externals/oboe/docs/reference/ |
H A D | menu.js | 24 function initMenu(relPath,searchEnabled,serverSide,searchPage,search) { 25 function makeTree(data,relPath) { 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 $('#main-menu').append('<li style="float:right"><div id="MSearchBox" class="MSearchBoxInactive"><div class="left"><form id="FSearchBox" action="'+relPath+searchPage+'" method="get"><img id="MSearchSelect" src="'+relPath+'search/mag.png" alt=""/><input type="text" id="MSearchField" name="query" value="'+search+'" size="20" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)"></form></div><div class="right"></div></div></li>'); 45 $('#main-menu').append('<li style="float:right"><div id="MSearchBox" class="MSearchBoxInactive"><span class="left"><img id="MSearchSelect" src="'+relPath+'search/mag_sel.png" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" alt=""/><input type="text" id="MSearchField" value="'+search+'" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)" onkeyup="searchBox.OnSearchFieldChange(event)"/></span><span class="right"><a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="'+relPath+'search/close.png" alt=""/></a></span></div></li>');
|
/third_party/node/lib/ |
H A D | url.js | 789 const relPath = (relative.pathname || '').split('/'); 790 while (relPath.length && !(relative.host = relPath.shift())); 793 if (relPath[0] !== '') relPath.unshift(''); 794 if (relPath.length < 2) relPath.unshift(''); 795 result.pathname = relPath.join('/'); 824 const relPath = (relative.pathname && relative.pathname.split('/')) || []; 846 if (relPath[ [all...] |
/third_party/skia/third_party/externals/tint/tools/src/glob/ |
H A D | glob.go | 191 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/ |
H A D | helpers.js | 51 function loadTestData(relPath) { 52 return sourceHelpers.loadSource(BASE_DIR, relPath);
|
/third_party/skia/third_party/externals/spirv-tools/utils/vscode/src/tools/ |
H A D | gen-grammar.go | 119 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/ |
H A D | gen-grammar.go | 119 relPath := func(path string) string { 130 "--template=" + escape(relPath(*templatePath)), 131 "--out=" + escape(relPath(*outputPath)),
|
/third_party/spirv-tools/utils/vscode/src/tools/ |
H A D | gen-grammar.go | 119 relPath := func(path string) string { 130 "--template=" + escape(relPath(*templatePath)), 131 "--out=" + escape(relPath(*outputPath)),
|
/third_party/node/lib/internal/test_runner/reporter/ |
H A D | spec.js | 148 const relPath = relative(this.#cwd, test.file); 150 const location = `test at ${relPath}:${test.line}:${test.column}`;
|
/third_party/skia/third_party/externals/swiftshader/tests/regres/testlist/ |
H A D | testlist.go | 169 relPath, err := filepath.Rel(root, group.File) 173 group.File = relPath
|
/third_party/skia/third_party/externals/swiftshader/tests/regres/cmd/regres/ |
H A D | main.go | 1582 // The file is first searched at {t.srcDir}/{relPath} 1584 // {CWD}/{relPath} 1587 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/ |
H A D | make_release.py | 67 relPath = removeLeadingPath(os.path.normpath(os.path.join(root, file)), basePath) 68 allFiles.append(relPath)
|
/third_party/NuttX/fs/tmpfs/ |
H A D | fs_tmpfs.c | 1783 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()
|