/third_party/typescript/src/testRunner/unittests/config/ |
D | matchFiles.ts | 104 assert.deepEqual(actual.fileNames, expected.fileNames); 153 fileNames: [ 176 fileNames: [ 194 fileNames: [ 215 fileNames: [ 236 fileNames: [ 257 fileNames: [], 275 fileNames: [], 293 fileNames: [ 319 fileNames: [ [all …]
|
D | commandLineParsing.ts | 27 const parsedFileNames = parsed.fileNames; 28 const expectedFileNames = expectedParsedCommandLine.fileNames; 42 fileNames: ["0.ts"], 70 fileNames: [], 81 fileNames: ["0.ts"], 100 fileNames: ["0.ts"], 127 fileNames: ["0.ts"], 153 fileNames: ["0.ts"], 179 fileNames: ["0.ts"], 205 fileNames: ["0.ts"], [all …]
|
/third_party/typescript/tests/cases/unittests/ |
D | matchFiles.ts | 80 assert.deepEqual(actual.fileNames, expected.fileNames); 125 fileNames: [ 143 fileNames: [ 164 fileNames: [ 185 fileNames: [ 203 fileNames: [], 218 fileNames: [], 236 fileNames: [ 262 fileNames: [ 287 fileNames: [ [all …]
|
/third_party/glslang/gtests/ |
D | Link.FromFile.cpp | 49 const auto& fileNames = GetParam(); in TEST_P() local 50 const size_t fileCount = fileNames.size(); in TEST_P() 59 tryLoadFile(GlobalTestSettings.testRoot + "/" + fileNames[i], in TEST_P() 62 new glslang::TShader(GetShaderStage(GetSuffix(fileNames[i])))); in TEST_P() 66 {fileNames[i], shader->getInfoLog(), shader->getInfoDebugLog()}); in TEST_P() 81 GlobalTestSettings.testRoot + "/baseResults/" + fileNames.front() + ".out"; in TEST_P()
|
D | Link.FromFile.Vk.cpp | 49 const auto& fileNames = GetParam(); in TEST_P() local 50 const size_t fileCount = fileNames.size(); in TEST_P() 60 tryLoadFile(GlobalTestSettings.testRoot + "/" + fileNames[i], in TEST_P() 63 new glslang::TShader(GetShaderStage(GetSuffix(fileNames[i])))); in TEST_P() 68 {fileNames[i], shader->getInfoLog(), shader->getInfoDebugLog()}); in TEST_P() 103 GlobalTestSettings.testRoot + "/baseResults/" + fileNames.front() + ".out"; in TEST_P()
|
D | VkRelaxed.FromFile.cpp | 50 std::vector<std::string> fileNames; member 194 const auto& fileNames = GetParam().fileNames; in TEST_P() local 197 const size_t fileCount = fileNames.size(); in TEST_P() 206 tryLoadFile(GlobalTestSettings.testRoot + "/" + fileNames[i], in TEST_P() 209 new glslang::TShader(GetShaderStage(GetSuffix(fileNames[i])))); in TEST_P() 225 { fileNames[i], shader->getInfoLog(), shader->getInfoDebugLog() }); in TEST_P() 236 assert(resourceSetBindings.size() == fileNames.size()); in TEST_P() 282 GlobalTestSettings.testRoot + "/baseResults/" + fileNames.front() + ".out"; in TEST_P()
|
D | GlslMapIO.FromFile.cpp | 50 std::vector<std::string> fileNames; member 239 const auto& fileNames = GetParam().fileNames; in TEST_P() local 241 const size_t fileCount = fileNames.size(); in TEST_P() 250 tryLoadFile(GlobalTestSettings.testRoot + "/" + fileNames[i], in TEST_P() 253 new glslang::TShader(GetShaderStage(GetSuffix(fileNames[i])))); in TEST_P() 278 { fileNames[i], shader->getInfoLog(), shader->getInfoDebugLog() }); in TEST_P() 329 GlobalTestSettings.testRoot + "/baseResults/" + fileNames.front() + ".out"; in TEST_P()
|
/third_party/vk-gl-cts/framework/delibs/decpp/ |
D | deDynamicLibrary.cpp | 40 DynamicLibrary::DynamicLibrary (const char* fileNames[]) in DynamicLibrary() argument 43 for (size_t i = 0u; fileNames[i] != nullptr; ++i) in DynamicLibrary() 45 m_library = deDynamicLibrary_open(fileNames[i]); in DynamicLibrary() 53 for (size_t i = 0u; fileNames[i] != nullptr; ++i) in DynamicLibrary() 54 nameList += (nameList.empty() ? "" : ", ") + std::string(fileNames[i]); in DynamicLibrary()
|
/third_party/typescript/src/testRunner/unittests/ |
D | builder.ts | 74 function makeAssertChanges(getProgram: () => Program): (fileNames: readonly string[]) => void { 77 return fileNames => { 84 assert.deepEqual(outputFileNames, fileNames); 88 …function makeAssertChangesWithCancellationToken(getProgram: () => Program): (fileNames: readonly s… 100 return (fileNames, cancelAfterEmitLength?: number) => { 120 assert.equal(operationWasCancelled, fileNames.length > cancelAfterEmitLength!); 121 assert.deepEqual(outputFileNames, fileNames.slice(0, cancelAfterEmitLength));
|
/third_party/typescript/src/jsTyping/ |
D | jsTyping.ts | 107 fileNames: string[], 124 fileNames = mapDefined(fileNames, fileName => { 137 const possibleSearchDirs = new Set(fileNames.map(getDirectoryPath)); 153 getTypingNamesFromSourceFileNames(fileNames); 221 function getTypingNamesFromSourceFileNames(fileNames: string[]) { 222 const fromFileNames = mapDefined(fileNames, j => { 233 const hasJsxFile = some(fileNames, f => fileExtensionIs(f, Extension.Jsx)); 253 …const fileNames = host.readDirectory(packagesFolderPath, [Extension.Json], /*excludes*/ undefined,… constant 254 …og(`Searching for typing names in ${packagesFolderPath}; all files: ${JSON.stringify(fileNames)}`); 256 for (const fileName of fileNames) {
|
/third_party/typescript/tests/baselines/reference/ |
D | APISample_compile.js | 21 export function compile(fileNames: string[], options: ts.CompilerOptions): void { 22 var program = ts.createProgram(fileNames, options); 58 function compile(fileNames, options) { argument 59 var program = ts.createProgram(fileNames, options);
|
D | APISample_linter.js | 64 const fileNames: string[] = process.argv.slice(2); constant 65 fileNames.forEach(fileName => { 121 var fileNames = process.argv.slice(2); variable 122 fileNames.forEach(function (fileName) {
|
/third_party/node/tools/doc/ |
D | addon-verify.mjs | 45 const fileNames = Object.keys(files); 48 if (!fileNames.some((name) => name.endsWith('.cc')) || 49 !fileNames.some((name) => name.endsWith('.js'))) { 59 files = fileNames.map((name) => {
|
/third_party/typescript/src/testRunner/ |
D | rwcRunner.ts | 65 let fileNames = opts.fileNames; 80 fileNames = configParseResult.fileNames; 87 for (const fileName of fileNames) {
|
/third_party/typescript/src/executeCommandLine/ |
D | executeCommandLine.ts | 225 writeConfigFile(sys, reportDiagnostic, commandLine.options, commandLine.fileNames); 246 if (commandLine.fileNames.length !== 0) { 267 else if (commandLine.fileNames.length === 0) { 272 if (commandLine.fileNames.length === 0 && !configFileName) { 354 commandLine.fileNames, 520 const { fileNames, options, projectReferences } = config; constant 528 rootNames: fileNames, 552 const { options, fileNames, projectReferences } = config; constant 558 rootNames: fileNames, 785 fileNames: string[] [all …]
|
/third_party/skia/third_party/externals/icu/source/tools/memcheck/ |
D | ICUMemCheck.pl | 42 $fileNames = `find common i18n io -name "*.o" -print`; 43 foreach $f (split('\n', $fileNames)) {
|
/third_party/flutter/skia/third_party/externals/icu/source/tools/memcheck/ |
D | ICUMemCheck.pl | 42 $fileNames = `find common i18n io -name "*.o" -print`; 43 foreach $f (split('\n', $fileNames)) {
|
/third_party/icu/icu4c/source/tools/memcheck/ |
D | ICUMemCheck.pl | 42 $fileNames = `find common i18n io -name "*.o" -print`; 43 foreach $f (split('\n', $fileNames)) {
|
/third_party/typescript/tests/cases/compiler/ |
D | APISample_compile.ts | 25 export function compile(fileNames: string[], options: ts.CompilerOptions): void { 26 var program = ts.createProgram(fileNames, options);
|
D | APISample_linter.ts | 68 const fileNames: string[] = process.argv.slice(2); constant 69 fileNames.forEach(fileName => {
|
/third_party/typescript/src/testRunner/unittests/tsserver/ |
D | watchEnvironment.ts | 25 const fileNames = files.map(file => file.path); constant 27 const expectedWatchedFiles = arrayToMap(fileNames.slice(1), s => s, () => 1); 56 fileNames.push(file2.path); 72 checkProjectActualFiles(project, fileNames); 159 const fileNames = [index, file1, configFile, libFile].map(file => file.path); constant 161 const expectedWatchedFiles = arrayToMap(fileNames.slice(1), identity, () => 1); 213 checkProjectActualFiles(project, fileNames);
|
D | compileOnSave.ts | 22 … const actualResultSingleProjectFileNameList = actualResultSingleProject.fileNames.sort(); 549 …((response as protocol.CompileOnSaveAffectedFileListSingleProject[])[0].fileNames.length, 2, "expe… 644 …al((<protocol.CompileOnSaveAffectedFileListSingleProject[]>response)[0].fileNames.length, 2, "expe… 843 … { fileNames: [file1.path, file2.path], projectFileName: config.path, projectUsesOutFile: false } 944 … { fileNames: files.map(f => f.path), projectFileName: config.path, projectUsesOutFile: false } 1001 …{ fileNames: [file.path, ...(returnsAllFilesAsAffected ? files.filter(f => f !== file).map(f => f.… 1082 … { projectFileName: app1Config.path, fileNames: [core.path, app1.path], projectUsesOutFile: true } 1097 … { projectFileName: app1Config.path, fileNames: [core.path, app1.path], projectUsesOutFile: true }, 1098 … { projectFileName: app2Config.path, fileNames: [core.path, app2.path], projectUsesOutFile: true }
|
D | projectReferenceCompileOnSave.ts | 223 …function expectedAffectedFiles(config: File, fileNames: File[]): protocol.CompileOnSaveAffectedFil… 226 fileNames: fileNames.map(f => f.path),
|
/third_party/typescript/src/compiler/ |
D | sys.ts | 488 …es = new Map<Path, { dirName: string; options: WatchOptions | undefined; fileNames: string[]; }>(); 553 …function invokeCallbacks(dirPath: Path, invokeMap: InvokeMap, fileNames: string[] | undefined): vo… 554 …function invokeCallbacks(dirPath: Path, fileNameOrInvokeMap: string | InvokeMap, fileNames?: strin… 568 if (fileNames) { 571 (existing as string[]).push(...fileNames); 574 invokeMap.set(rootDirName, fileNames.slice()); 605 existing.fileNames.push(fileName); 608 cacheToUpdateChildWatches.set(dirPath, { dirName, options, fileNames: [fileName] }); 626 const { value: [dirPath, { dirName, options, fileNames }] } = result; constant 631 invokeCallbacks(dirPath, invokeMap, hasChanges ? undefined : fileNames);
|
D | commandLineParser.ts | 1323 const fileNames: string[] = []; constant 1330 fileNames, 1359 fileNames.push(s); 1526 const { options, watchOptions, fileNames: projects, errors } = parseCommandLineWorker( constant 2057 configParseResult.fileNames, 2208 …export function generateTSConfig(options: CompilerOptions, fileNames: readonly string[], newLine: … 2292 if (fileNames.length) { 2295 for (let i = 0; i < fileNames.length; i++) { 2296 …result.push(`${tab}${tab}${JSON.stringify(fileNames[i])}${i === fileNames.length - 1 ? "" : ","}`); 2423 fileNames: getFileNames(basePathForFileNames), [all …]
|