Searched refs:tempFileName (Results 1 – 6 of 6) sorted by relevance
124 public reloadWithFileText(tempFileName?: string) {125 const { text: newText, fileSize } = this.getFileTextAndSize(tempFileName);128 this.ownFileText = !tempFileName || tempFileName === this.info.fileName;207 private getFileTextAndSize(tempFileName?: string): { text: string, fileSize?: number } {209 const fileName = tempFileName || this.info.fileName;589 reloadFromFile(tempFileName?: NormalizedPath) {596 if (this.textStorage.reloadWithFileText(tempFileName)) {
2280 … const tempFileName = args.tmpfile === undefined ? undefined : toNormalizedPath(args.tmpfile); constant2285 if (info.reloadFromFile(tempFileName)) {2291 private saveToTmp(fileName: string, tempFileName: string) {2294 scriptInfo.saveTo(tempFileName);
198 std::string tempFileName = tempFNameStream.str(); in TEST() local202 FILE *fp = fopen(tempFileName.c_str(), "r"); in TEST()212 angle::DeleteSystemFile(tempFileName.c_str()); in TEST()218 FILE *fp = fopen(tempFileName.c_str(), "w"); in TEST()
61 const tempFileName = path.resolve(tmpdir.path, 'mkdtemp-'); constant62 fs.mkdtempSync(tempFileName, options);63 fs.mkdtemp(tempFileName, options, common.mustSucceed());
10448 reloadFromFile(tempFileName?: NormalizedPath): boolean;