| /third_party/typescript/src/compiler/ |
| D | builderPublic.ts | 139 …agnosticsBuilderProgram(newProgram: Program, host: BuilderProgramHost, oldProgram?: SemanticDiagno… 140 … undefined, options: CompilerOptions | undefined, host?: CompilerHost, oldProgram?: SemanticDiagno… 149 …agnosticsBuilderProgram(newProgram: Program, host: BuilderProgramHost, oldProgram?: EmitAndSemanti… 150 … undefined, options: CompilerOptions | undefined, host?: CompilerHost, oldProgram?: EmitAndSemanti… 158 …export function createAbstractBuilder(newProgram: Program, host: BuilderProgramHost, oldProgram?: … 159 … undefined, options: CompilerOptions | undefined, host?: CompilerHost, oldProgram?: BuilderProgram…
|
| D | builder.ts | 849 oldProgram: BuilderProgram | undefined; property 856 let oldProgram: BuilderProgram; 860 oldProgram = configFileParsingDiagnosticsOrOldProgram as BuilderProgram; 861 Debug.assert(!!oldProgram); 862 newProgram = oldProgram.getProgram(); 865 oldProgram = configFileParsingDiagnosticsOrOldProgram as BuilderProgram; 870 oldProgram: oldProgram && oldProgram.getProgramOrUndefined(), 879 oldProgram = oldProgramOrHost as BuilderProgram; 882 …return { host, newProgram, oldProgram, configFileParsingDiagnostics: configFileParsingDiagnostics … 887 …export function createBuilderProgram(kind: BuilderProgramKind, { newProgram, host, oldProgram, con… [all …]
|
| D | program.ts | 762 …mes: readonly string[], options: CompilerOptions, host?: CompilerHost, oldProgram?: Program, confi… 767 oldProgram, 797 …mes: readonly string[], options: CompilerOptions, host?: CompilerHost, oldProgram?: Program, confi… 801 let { oldProgram } = createProgramOptions; 923 ….push(tracing.Phase.Program, "shouldProgramCreateNewSourceFiles", { hasOldProgram: !!oldProgram }); 924 const shouldCreateNewSourceFile = shouldProgramCreateNewSourceFiles(oldProgram, options); 1022 if (oldProgram && host.onReleaseOldSourceFile) { 1023 const oldSourceFiles = oldProgram.getSourceFiles(); 1029 …host.onReleaseOldSourceFile(oldSourceFile, oldProgram.getCompilerOptions(), !!getSourceFileByPath(… 1032 oldProgram.forEachResolvedProjectReference(resolvedProjectReference => { [all …]
|
| D | watchPublic.ts | 41 const oldProgram = readBuilderProgram(options, host) as any as T; constant 42 …return createProgram(rootNames, options, host, oldProgram, configFileParsingDiagnostics, projectRe… 47 … undefined, options: CompilerOptions | undefined, host?: CompilerHost, oldProgram?: T, configFileP…
|
| /third_party/typescript/tests/baselines/reference/ |
| D | APISample_WatchWithDefaults.js | 40 host.createProgram = (rootNames, options, host, oldProgram) => { argument 42 return origCreateProgram(rootNames, options, host, oldProgram); 85 host.createProgram = function (rootNames, options, host, oldProgram) { 87 return origCreateProgram(rootNames, options, host, oldProgram);
|
| D | APISample_Watch.js | 53 host.createProgram = (rootNames: ReadonlyArray<string>, options, host, oldProgram) => { argument 55 return origCreateProgram(rootNames, options, host, oldProgram); 118 host.createProgram = function (rootNames, options, host, oldProgram) { 120 return origCreateProgram(rootNames, options, host, oldProgram);
|
| D | APISample_WatchWithOwnWatchHost.js | 47 host.createProgram = (rootNames, options, host, oldProgram) => { argument 49 return origCreateProgram(rootNames, options, host, oldProgram); 97 host.createProgram = function (rootNames, options, host, oldProgram) { 99 return origCreateProgram(rootNames, options, host, oldProgram);
|
| /third_party/typescript/tests/cases/compiler/ |
| D | APISample_WatchWithDefaults.ts | 44 host.createProgram = (rootNames, options, host, oldProgram) => { 46 return origCreateProgram(rootNames, options, host, oldProgram);
|
| D | APISample_Watch.ts | 57 host.createProgram = (rootNames: ReadonlyArray<string>, options, host, oldProgram) => { 59 return origCreateProgram(rootNames, options, host, oldProgram);
|
| D | APISample_WatchWithOwnWatchHost.ts | 51 host.createProgram = (rootNames, options, host, oldProgram) => { 53 return origCreateProgram(rootNames, options, host, oldProgram);
|
| /third_party/typescript/src/server/ |
| D | project.ts | 1122 const oldProgram = this.program; constant 1132 Debug.assert(oldProgram === undefined || this.program !== undefined); 1137 …const hasNewProgram = this.program && (!oldProgram || (this.program !== oldProgram && !(this.progr… 1139 if (oldProgram) { 1140 for (const f of oldProgram.getSourceFiles()) { 1149 oldProgram.forEachResolvedProjectReference(resolvedProjectReference => { 1204 if (this.hasAddedorRemovedFiles || oldProgram && !this.program.structureIsReused) { 1207 else if (this.dirtyFilesForSuggestions && oldProgram && this.program) { 1209 const oldSourceFile = oldProgram.getSourceFile(fileName); 1244 else if (this.program !== oldProgram) {
|
| /third_party/typescript/src/testRunner/unittests/ |
| D | reuseProgramStructure.ts | 107 …tCompilerHost(texts: readonly NamedSourceText[], target: ScriptTarget, oldProgram?: ProgramWithSou… 109 if (oldProgram) { 110 let oldFile = <SourceFileWithText>oldProgram.getSourceFile(t.name); 155 …export function updateProgram(oldProgram: ProgramWithSourceTexts, rootNames: readonly string[], op… 157 newTexts = oldProgram.sourceTexts!.slice(0); 160 …const host = createTestCompilerHost(newTexts, options.target!, oldProgram, useGetSourceFileByPath); 161 const program = <ProgramWithSourceTexts>createProgram(rootNames, options, host, oldProgram);
|
| /third_party/typescript/src/testRunner/unittests/tscWatch/ |
| D | resolutionCache.ts | 403 timeouts: (sys, [[oldProgram, oldBuilderProgram]], watchorSolution) => { 407 … assert.strictEqual(newProgram.getProgram(), oldProgram, "No change so program should be same");
|
| /third_party/skia/third_party/externals/angle2/src/libANGLE/ |
| D | ProgramPipeline.cpp | 62 Program *oldProgram = mPrograms[shaderType]; in useProgramStage() local 63 if (oldProgram) in useProgramStage() 65 oldProgram->release(context); in useProgramStage()
|
| /third_party/typescript/src/executeCommandLine/ |
| D | executeCommandLine.ts | 587 …host.createProgram = (rootNames, options, host, oldProgram, configFileParsingDiagnostics, projectR… 588 Debug.assert(rootNames !== undefined || (options === undefined && !!oldProgram)); 592 …return compileUsingBuilder(rootNames, options, host, oldProgram, configFileParsingDiagnostics, pro…
|
| /third_party/typescript/lib/ |
| D | typescript.d.ts | 3023 oldProgram?: Program; property 4855 …mes: readonly string[], options: CompilerOptions, host?: CompilerHost, oldProgram?: Program, confi… 4993 …agnosticsBuilderProgram(newProgram: Program, host: BuilderProgramHost, oldProgram?: SemanticDiagno… 4994 … undefined, options: CompilerOptions | undefined, host?: CompilerHost, oldProgram?: SemanticDiagno… 4999 …agnosticsBuilderProgram(newProgram: Program, host: BuilderProgramHost, oldProgram?: EmitAndSemanti… 5000 … undefined, options: CompilerOptions | undefined, host?: CompilerHost, oldProgram?: EmitAndSemanti… 5004 …function createAbstractBuilder(newProgram: Program, host: BuilderProgramHost, oldProgram?: Builder… 5005 … undefined, options: CompilerOptions | undefined, host?: CompilerHost, oldProgram?: BuilderProgram… 5026 … undefined, options: CompilerOptions | undefined, host?: CompilerHost, oldProgram?: T, configFileP…
|
| D | typescriptServices.d.ts | 3023 oldProgram?: Program; property 4855 …mes: readonly string[], options: CompilerOptions, host?: CompilerHost, oldProgram?: Program, confi… 4993 …agnosticsBuilderProgram(newProgram: Program, host: BuilderProgramHost, oldProgram?: SemanticDiagno… 4994 … undefined, options: CompilerOptions | undefined, host?: CompilerHost, oldProgram?: SemanticDiagno… 4999 …agnosticsBuilderProgram(newProgram: Program, host: BuilderProgramHost, oldProgram?: EmitAndSemanti… 5000 … undefined, options: CompilerOptions | undefined, host?: CompilerHost, oldProgram?: EmitAndSemanti… 5004 …function createAbstractBuilder(newProgram: Program, host: BuilderProgramHost, oldProgram?: Builder… 5005 … undefined, options: CompilerOptions | undefined, host?: CompilerHost, oldProgram?: BuilderProgram… 5026 … undefined, options: CompilerOptions | undefined, host?: CompilerHost, oldProgram?: T, configFileP…
|
| D | tsserverlibrary.d.ts | 3023 oldProgram?: Program; property 4855 …mes: readonly string[], options: CompilerOptions, host?: CompilerHost, oldProgram?: Program, confi… 4993 …agnosticsBuilderProgram(newProgram: Program, host: BuilderProgramHost, oldProgram?: SemanticDiagno… 4994 … undefined, options: CompilerOptions | undefined, host?: CompilerHost, oldProgram?: SemanticDiagno… 4999 …agnosticsBuilderProgram(newProgram: Program, host: BuilderProgramHost, oldProgram?: EmitAndSemanti… 5000 … undefined, options: CompilerOptions | undefined, host?: CompilerHost, oldProgram?: EmitAndSemanti… 5004 …function createAbstractBuilder(newProgram: Program, host: BuilderProgramHost, oldProgram?: Builder… 5005 … undefined, options: CompilerOptions | undefined, host?: CompilerHost, oldProgram?: BuilderProgram… 5026 … undefined, options: CompilerOptions | undefined, host?: CompilerHost, oldProgram?: T, configFileP…
|
| D | tsc.js | 87638 …function createCreateProgramOptions(rootNames, options, host, oldProgram, configFileParsingDiagnos… argument 87643 oldProgram: oldProgram, 87651 var oldProgram = createProgramOptions.oldProgram; 87730 …: ts.tracing.push("program", "shouldProgramCreateNewSourceFiles", { hasOldProgram: !!oldProgram }); 87731 var shouldCreateNewSourceFile = shouldProgramCreateNewSourceFiles(oldProgram, options); 87814 if (oldProgram && host.onReleaseOldSourceFile) { 87815 var oldSourceFiles = oldProgram.getSourceFiles(); 87821 …host.onReleaseOldSourceFile(oldSourceFile, oldProgram.getCompilerOptions(), !!getSourceFileByPath(… 87824 oldProgram.forEachResolvedProjectReference(function (resolvedProjectReference) { 87826 …host.onReleaseOldSourceFile(resolvedProjectReference.sourceFile, oldProgram.getCompilerOptions(), … [all …]
|
| D | typingsInstaller.js | 106699 …function createCreateProgramOptions(rootNames, options, host, oldProgram, configFileParsingDiagnos… argument 106704 oldProgram: oldProgram, 106712 var oldProgram = createProgramOptions.oldProgram; 106817 …ush("program" /* Program */, "shouldProgramCreateNewSourceFiles", { hasOldProgram: !!oldProgram }); 106818 var shouldCreateNewSourceFile = shouldProgramCreateNewSourceFiles(oldProgram, options); 106913 if (oldProgram && host.onReleaseOldSourceFile) { 106914 var oldSourceFiles = oldProgram.getSourceFiles(); 106921 …host.onReleaseOldSourceFile(oldSourceFile, oldProgram.getCompilerOptions(), !!getSourceFileByPath(… 106924 oldProgram.forEachResolvedProjectReference(function (resolvedProjectReference) { 106926 …host.onReleaseOldSourceFile(resolvedProjectReference.sourceFile, oldProgram.getCompilerOptions(), … [all …]
|
| D | tsserverlibrary.js | 106904 …function createCreateProgramOptions(rootNames, options, host, oldProgram, configFileParsingDiagnos… argument 106909 oldProgram: oldProgram, 106917 var oldProgram = createProgramOptions.oldProgram; 107022 …ush("program" /* Program */, "shouldProgramCreateNewSourceFiles", { hasOldProgram: !!oldProgram }); 107023 var shouldCreateNewSourceFile = shouldProgramCreateNewSourceFiles(oldProgram, options); 107118 if (oldProgram && host.onReleaseOldSourceFile) { 107119 var oldSourceFiles = oldProgram.getSourceFiles(); 107126 …host.onReleaseOldSourceFile(oldSourceFile, oldProgram.getCompilerOptions(), !!getSourceFileByPath(… 107129 oldProgram.forEachResolvedProjectReference(function (resolvedProjectReference) { 107131 …host.onReleaseOldSourceFile(resolvedProjectReference.sourceFile, oldProgram.getCompilerOptions(), … [all …]
|
| /third_party/typescript/tests/baselines/reference/api/ |
| D | typescript.d.ts | 3080 oldProgram?: Program; property 5094 …mes: readonly string[], options: CompilerOptions, host?: CompilerHost, oldProgram?: Program, confi… 5234 …agnosticsBuilderProgram(newProgram: Program, host: BuilderProgramHost, oldProgram?: SemanticDiagno… 5235 … undefined, options: CompilerOptions | undefined, host?: CompilerHost, oldProgram?: SemanticDiagno… 5240 …agnosticsBuilderProgram(newProgram: Program, host: BuilderProgramHost, oldProgram?: EmitAndSemanti… 5241 … undefined, options: CompilerOptions | undefined, host?: CompilerHost, oldProgram?: EmitAndSemanti… 5245 …function createAbstractBuilder(newProgram: Program, host: BuilderProgramHost, oldProgram?: Builder… 5246 … undefined, options: CompilerOptions | undefined, host?: CompilerHost, oldProgram?: BuilderProgram… 5267 … undefined, options: CompilerOptions | undefined, host?: CompilerHost, oldProgram?: T, configFileP…
|
| D | tsserverlibrary.d.ts | 3080 oldProgram?: Program; property 5094 …mes: readonly string[], options: CompilerOptions, host?: CompilerHost, oldProgram?: Program, confi… 5234 …agnosticsBuilderProgram(newProgram: Program, host: BuilderProgramHost, oldProgram?: SemanticDiagno… 5235 … undefined, options: CompilerOptions | undefined, host?: CompilerHost, oldProgram?: SemanticDiagno… 5240 …agnosticsBuilderProgram(newProgram: Program, host: BuilderProgramHost, oldProgram?: EmitAndSemanti… 5241 … undefined, options: CompilerOptions | undefined, host?: CompilerHost, oldProgram?: EmitAndSemanti… 5245 …function createAbstractBuilder(newProgram: Program, host: BuilderProgramHost, oldProgram?: Builder… 5246 … undefined, options: CompilerOptions | undefined, host?: CompilerHost, oldProgram?: BuilderProgram… 5267 … undefined, options: CompilerOptions | undefined, host?: CompilerHost, oldProgram?: T, configFileP…
|
| /third_party/skia/third_party/externals/swiftshader/src/OpenGL/libGLESv2/ |
| D | Context.cpp | 1313 Program *oldProgram = mResourceManager->getProgram(priorProgram); in useProgram() local 1320 if(oldProgram) in useProgram() 1322 oldProgram->release(); in useProgram()
|
| /third_party/typescript/src/services/ |
| D | services.ts | 1387 oldProgram: program, constant
|