Home
last modified time | relevance | path

Searched refs:lastFile (Results 1 – 25 of 1787) sorted by relevance

12345678910>>...72

/dports/games/holotz-castle/holotz-castle-1.3.14-src/src/
H A DHCUtil.cpp36 char HCUtil::lastFile[4096]; member in HCUtil
55 lastFile[0] = 0; in FindFile()
61 snprintf(lastFile, sizeof(lastFile), "%s%s", homeDir, filename); in FindFile()
63 if (JFile::Exists(lastFile)) in FindFile()
74 strncpy(lastFile, filename, sizeof(lastFile)); in FindFile()
80 snprintf(lastFile, sizeof(lastFile), "%s%s", installHCDir, filename); in FindFile()
82 if (JFile::Exists(lastFile)) in FindFile()
89 snprintf(lastFile, sizeof(lastFile), "%s%s", installHCedDir, filename); in FindFile()
91 if (JFile::Exists(lastFile)) in FindFile()
97 lastFile[0] = 0; in FindFile()
[all …]
/dports/audio/polyphone/polyphone-75a5e88/sources/context/
H A Drecentfilemanager.cpp123 QString lastFile;
127 lastFile = _recordFile;
130 lastFile = _sampleFile;
134 lastFile = _listFiles.at(num);
137 lastFile = _exportFile;
140 lastFile = _pngFile;
143 lastFile = _executableFile;
146 lastFile = _uploadFile;
150 return lastFile;
/dports/editors/nedit/nedit-5.7/source/
H A Dserver.c345 WindowInfo *window, *lastFile = NULL; in processServerCommandString() local
479 if (lastFile && window->shell != lastFile->shell) { in processServerCommandString()
480 CleanUpTabBarExposeQueue(lastFile); in processServerCommandString()
481 RaiseDocument(lastFile); in processServerCommandString()
515 if (lastFile && !IsValidWindow(lastFile)) in processServerCommandString()
516 lastFile = NULL; in processServerCommandString()
522 lastFile = window; in processServerCommandString()
532 if (lastFile) { in processServerCommandString()
533 CleanUpTabBarExposeQueue(lastFile); in processServerCommandString()
535 RaiseDocument(lastFile); in processServerCommandString()
[all …]
H A Dnedit.c701 if (lastFile && window->shell != lastFile->shell) { in main()
703 RaiseDocument(lastFile); in main()
717 if (lastFile && !IsValidWindow(lastFile)) in main()
724 lastFile = window; in main()
758 if (lastFile && window->shell != lastFile->shell) { in main()
760 RaiseDocument(lastFile); in main()
774 if (lastFile && !IsValidWindow(lastFile)) in main()
781 lastFile = window; in main()
796 if (lastFile) { in main()
797 CleanUpTabBarExposeQueue(lastFile); in main()
[all …]
/dports/devel/omniORB/omniORB-4.2.4/src/tool/omniidl/cxx/
H A Didlerr.cc71 static char* lastFile = idl_strdup(""); in IdlSyntaxError() local
75 if (line != lastLine || strcmp(file, lastFile) || strcmp(mesg, lastMesg)) { in IdlSyntaxError()
77 if (strcmp(file, lastFile)) { in IdlSyntaxError()
78 delete [] lastFile; in IdlSyntaxError()
79 lastFile = idl_strdup(file); in IdlSyntaxError()
/dports/games/scummvm-tools/scummvm-tools-2.5.0/engines/cge/
H A Dpack_cge.cpp159 int lastFile = (pageNum + 1) * _leaSize - 1; in pack() local
160 if (lastFile >= _fileCount) in pack()
161 lastFile = _fileCount - 1; in pack()
165 btPage._hea._count = lastFile - startFile + 1; in pack()
230 int lastFile = (pageNum + 1) * _leaSize - 1; in pack2() local
231 if (lastFile >= _fileCount) in pack2()
232 lastFile = _fileCount - 1; in pack2()
236 btPage2._hea._count = lastFile - startFile + 1; in pack2()
/dports/java/berkeley-db/je-6.2.31/test/com/sleepycat/je/cleaner/
H A DFileSelectionTest.java673 forceClean(lastFile); in testProtectedFileRange()
676 assertEquals(lastFile, in testProtectedFileRange()
684 forceClean(lastFile); in testProtectedFileRange()
687 assertEquals(lastFile, in testProtectedFileRange()
692 forceClean(lastFile); in testProtectedFileRange()
703 forceClean(lastFile); in testProtectedFileRange()
711 forceClean(lastFile); in testProtectedFileRange()
768 forceClean(lastFile); in testRepCleanerBarrier()
776 forceClean(lastFile); in testRepCleanerBarrier()
785 forceClean(lastFile); in testRepCleanerBarrier()
[all …]
/dports/games/lwjgl/lwjgl-2df01dd/src/java/org/lwjgl/util/generator/
H A DGeneratorProcessor.java79 Element lastFile = null; in process() local
84 lastFile = it.next(); in process()
85lastFile.accept(new GeneratorVisitor(processingEnv, type_map, generate_error_checks, context_speci… in process()
90 if ( lastFile == null ) { in process()
93 …throw new RuntimeException("\n-- Failed to process template: " + lastFile.asType().toString() + " … in process()
/dports/editors/ghostwriter/ghostwriter-1.8.1/src/
H A DDocumentHistory.cpp68 RecentFile lastFile; in add() local
70 lastFile.filePath = sanitizedPath; in add()
71 lastFile.position = cursorPosition; in add()
72 recentFiles.removeAll(lastFile); in add()
73 recentFiles.prepend(lastFile); in add()
/dports/games/gogui/gogui-1.4.10/src/net/sf/gogui/gui/
H A DFileDialogs.java124 File lastFile, boolean setSgfFilter, in showFileChooser() argument
134 return showFileChooserSwing(parent, type, lastFile, setSgfFilter, in showFileChooser()
139 File lastFile, in showFileChooserSave() argument
144 File file = showFileChooser(parent, Type.FILE_SAVE, lastFile, in showFileChooserSave()
161 file = showFileChooser(parent, Type.FILE_SAVE, lastFile, in showFileChooserSave()
213 File lastFile, in showFileChooserSwing() argument
247 if (lastFile != null && lastFile.isFile() && lastFile.exists()) in showFileChooserSwing()
248 chooser.setSelectedFile(lastFile); in showFileChooserSwing()
/dports/games/openrct2/OpenRCT2-0.3.5.1/scripts/stats/
H A Dcount-rct-globals.php8 $lastFile = null; variable
13 $fileName = $lastFile;
18 $lastFile = $fileName; variable
/dports/www/elgg/elgg-3.3.23/vendor/zendframework/zend-mail/src/Transport/
H A DFile.php29 protected $lastFile; variable in Zend\\Mail\\Transport\\File
83 $this->lastFile = $file;
93 return $this->lastFile;
/dports/www/zend-framework/ZendFramework-2.4.13/library/Zend/Mail/Transport/
H A DFile.php31 protected $lastFile; variable in Zend\\Mail\\Transport\\File
85 $this->lastFile = $file;
95 return $this->lastFile;
/dports/www/tikiwiki/tiki-21.2/vendor_bundled/vendor/laminas/laminas-mail/src/Transport/
H A DFile.php30 protected $lastFile; variable in Laminas\\Mail\\Transport\\File
84 $this->lastFile = $file;
94 return $this->lastFile;
/dports/devel/kde-dev-scripts/kde-dev-scripts-21.12.3/
H A Dcmake-dependencies.py68 lastFile = "" variable
83 if lastFile != currentFile:
84 callingFile = lastFile
85 lastFile = currentFile variable
/dports/cad/sumo/sumo-1.2.0/tools/contributed/lisum-gui/src/main/java/de/dlr/ts/lisum/gui/toolbars/
H A DSimulationToolBar.java45 private String lastFile = null; field in SimulationToolBar
57 if(lastFile != null) in split.setOnAction() argument
58 editTextFile(lastFile); in split.setOnAction()
164 if(!split.getItems().isEmpty() && lastFile == null) in setEnabled()
167 lastFile = split.getItems().get(0).getText(); in setEnabled()
242 lastFile = dd.getAbsolutePath(); in editTextFile()
/dports/java/berkeley-db/je-6.2.31/test/com/sleepycat/je/log/
H A DLastFileReaderTest.java214 String lastFile = in testBadFileHeader() local
219 new RandomAccessFile(lastFile, FileManager.FileMode. in testBadFileHeader()
244 file = new RandomAccessFile(lastFile, "rw"); in testBadFileHeader()
256 file = new RandomAccessFile(lastFile, "rw"); in testBadFileHeader()
342 String lastFile = in testJunk() local
347 new RandomAccessFile(lastFile, FileManager.FileMode. in testJunk()
400 String lastFile = in testExtraEmpty() local
404 new RandomAccessFile(lastFile, FileManager.FileMode. in testExtraEmpty()
424 lastFile = fileManager.getFullFileName(lastFileNum, in testExtraEmpty()
426 file = new RandomAccessFile(lastFile, FileManager.FileMode. in testExtraEmpty()
/dports/audio/rhvoice/RHVoice-1.2.4/src/third-party/cldr/tools/java/org/unicode/cldr/tool/
H A DCompareFilesBetweenReleases2.java25 final File lastFile = new File(RELEASE_DIRECTORY); in main() local
26 …System.out.println("Comparing " + lastFile.getAbsolutePath() + " vs " + stagingFile.getAbsolutePat… in main()
28 Set<String> lastRelease = getFiles(lastFile, SKIP); in main()
33 … Set<String> lastCommon = getFiles(new File(lastFile, "common"), Collections.emptySet()); in main()
34 … Set<String> lastSeed = getFiles(new File(lastFile, "seed"), Collections.emptySet()); in main()
/dports/games/libretro-scummvm/scummvm-7b1e929/engines/sludge/
H A Dspeech.cpp50 _speech->lastFile = -1; in init()
58 if (_speech->lastFile != -1) { in kill()
59 _vm->_soundMan->huntKillSound(_speech->lastFile); in kill()
60 _speech->lastFile = -1; in kill()
108 return _vm->_soundMan->findInSoundCache(_speech->lastFile); in getLastSpeechSound()
127 _speech->lastFile = sampleFile; in wrapSpeechXY()
277 _speech->lastFile = -1; in load()
/dports/games/scummvm/scummvm-2.5.1/engines/sludge/
H A Dspeech.cpp48 _speech->lastFile = -1; in init()
56 if (_speech->lastFile != -1) { in kill()
57 _vm->_soundMan->huntKillSound(_speech->lastFile); in kill()
58 _speech->lastFile = -1; in kill()
106 return _vm->_soundMan->findInSoundCache(_speech->lastFile); in getLastSpeechSound()
125 _speech->lastFile = sampleFile; in wrapSpeechXY()
275 _speech->lastFile = -1; in load()
/dports/lang/gcc48/gcc-4.8.5/libgo/go/runtime/debug/
H A Dstack.go44 var lastFile string
52 if file != lastFile {
58 lastFile = file
/dports/devel/arm-none-eabi-gcc492/gcc-4.9.2/libgo/go/runtime/debug/
H A Dstack.go44 var lastFile string
52 if file != lastFile {
58 lastFile = file
/dports/devel/mingw32-gcc/gcc-4.8.1/libgo/go/runtime/debug/
H A Dstack.go44 var lastFile string
52 if file != lastFile {
58 lastFile = file
/dports/games/cdogs-sdl/cdogs-sdl-1.0.1/src/cdogsed/
H A Dcdogsed.c97 static char lastFile[CDOGS_PATH_MAX]; variable
383 PathGetBasename(lastFile)); in Autosave()
423 PathGetDirname(dirname, lastFile); in Open()
461 strcpy(lastFile, filename); in TryOpen()
480 PathGetDirname(dirname, lastFile); in Save()
496 strcpy(lastFile, filename); in Save()
1258 ResetLastFile(lastFile); in main()
1315 RealPath(argv[i], lastFile); in main()
1317 sizeof lastFile - strlen(lastFile) > 3) in main()
1319 strcat(lastFile, ".cdogscpn"); in main()
[all …]
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/llgo/third_party/gofrontend/libgo/go/runtime/debug/
H A Dstack.go45 var lastFile string
53 if file != lastFile {
59 lastFile = file

12345678910>>...72