Home
last modified time | relevance | path

Searched refs:apppath (Results 1 – 25 of 68) sorted by relevance

123

/dports/lang/fpc-source/fpc-3.2.2/tests/utils/macos/
H A DLinkRunDir14 Set apppath {�1}
19 If `Exists {apppath}.elg`
103 Echo Start compiling "{apppath}"
112 Execute {appname}_ppas > {apppath}.log
118 Echo Compiling of "{apppath}" failed
139 If Not `Exists {apppath}`
157 ( {apppath} ; Set actualresult "{Status}" ) | Tee {apppath}.elg
159 {apppath} > {apppath}.elg
165 Echo Running of "{apppath}" failed
173 Echo Failed test "{apppath}"
[all …]
/dports/astro/qmapshack/qmapshack-V_1.16.1/src/qmapshack/setup/
H A DCAppSetupWin.cpp27 QString apppath = QCoreApplication::applicationDirPath(); in initQMapShack() local
28 apppath = apppath.replace("/", "\\"); in initQMapShack()
29 QString gdalDir = QString("%1\\data").arg(apppath); in initQMapShack()
30 QString projDir = QString("%1\\share\\proj").arg(apppath); in initQMapShack()
35 QString appResourceDir = QString("%1\\translations").arg(apppath).toUtf8(); in initQMapShack()
40 path = apppath.toUtf8(); in initQMapShack()
52 QString apppath = QCoreApplication::applicationDirPath(); in routinoPath() local
53 apppath = apppath.replace("/", "\\"); in routinoPath()
54 QDir dirXml(QString("%1\\routino-xml").arg(apppath).toUtf8()); in routinoPath()
/dports/audio/lmms/lmms-1.2.2/src/3rdparty/rpmalloc/rpmalloc/build/ninja/
H A Dxcode.py129 apppath = os.path.join(configpath, binname + '.app')
158 assetsvars = [('outpath', os.path.join(os.getcwd(), apppath, 'Contents', 'Resources'))]
160 assetsvars = [('outpath', apppath)]
165 … outfiles += [os.path.join(os.getcwd(), apppath, 'Contents', 'Resources', 'AppIcon.icns')]
190 outfiles += [os.path.join(apppath, 'Contents', 'Resources')]
194 plistpath = os.path.join(apppath, 'Contents', 'Info.plist')
195 pkginfopath = os.path.join(apppath, 'Contents', 'PkgInfo')
197 plistpath = os.path.join(apppath, 'Info.plist')
198 pkginfopath = os.path.join(apppath, 'PkgInfo')
212 …writer.build([os.path.join(apppath, '_CodeSignature', 'CodeResources'), os.path.join(apppath, '_Co…
[all …]
/dports/astro/qmapshack/qmapshack-V_1.16.1/src/qmaptool/setup/
H A DCAppSetupWin.cpp27 QString apppath = QCoreApplication::applicationDirPath(); in initQMapTool() local
28 apppath = apppath.replace("/", "\\"); in initQMapTool()
29 QString gdalDir = QString("%1\\data").arg(apppath); in initQMapTool()
30 QString projDir = QString("%1\\share\\proj").arg(apppath); in initQMapTool()
35 QString appResourceDir = QString("%1\\translations").arg(apppath).toUtf8(); in initQMapTool()
40 path = apppath.toUtf8(); in initQMapTool()
/dports/devel/mercurial/mercurial-6.0/tests/
H A Dtest-wsgirequest.py43 self.assertEqual(r.apppath, b'')
102 self.assertEqual(r.apppath, b'')
148 self.assertEqual(r.apppath, b'')
163 self.assertEqual(r.apppath, b'')
178 self.assertEqual(r.apppath, b'')
318 self.assertEqual(r.apppath, b'')
330 self.assertEqual(r.apppath, b'')
343 self.assertEqual(r.apppath, b'')
355 self.assertEqual(r.apppath, b'')
373 self.assertEqual(r.apppath, b'')
[all …]
/dports/lang/angelscript/sdk/samples/asbuild/source/
H A Dmain.cpp281 static TCHAR apppath[MAX_PATH] = TEXT(""); in GetCurrentDir() local
282 if (!apppath[0]) in GetCurrentDir()
284 GetModuleFileName(NULL, apppath, MAX_PATH); in GetCurrentDir()
287 int appLen = _tcslen(apppath); in GetCurrentDir()
296 if (apppath[appLen-1] == TEXT('\\')) in GetCurrentDir()
302 apppath[appLen] = TEXT('\0'); in GetCurrentDir()
305 wcstombs(buf, apppath, min(size, wcslen(apppath)*sizeof(wchar_t))); in GetCurrentDir()
307 memcpy(buf, apppath, min(size, strlen(apppath))); in GetCurrentDir()
/dports/deskutils/xchm/xchm-1.23/src/
H A Dchmapp.cpp234 wxString cwdtmp(cwd), apppath; in getAppPath() local
239 apppath = cwdtmp + apppath; in getAppPath()
241 if(wxFileExists(apppath)) in getAppPath()
242 return apppath; in getAppPath()
246 apppath = pathList.FindAbsoluteValidPath(argv0); in getAppPath()
248 if(!apppath.IsEmpty()) in getAppPath()
249 return wxPathOnly(apppath); in getAppPath()
/dports/databases/kdb/kdb-3.2.0/tests/features/
H A Dsqltest_int7 apppath=`realpath $0`
8 appdir=`dirname $apppath`
9 app=`basename $apppath`
H A Dsqltest7 apppath=`realpath $0`
8 app=`basename $apppath`
/dports/x11/deforaos-panel/Panel-0.3.6/src/applets/
H A Dmenu.c99 char const * path, char const * apppath));
489 char const * path, char const * apppath),
563 char * apppath; in _xdg_dirs_path() local
567 callback(menu, path, apppath); in _xdg_dirs_path()
568 string_delete(apppath); in _xdg_dirs_path()
802 if((fd = open(apppath, O_RDONLY)) < 0 in _idle_path()
806 if((dir = opendir(apppath)) == NULL in _idle_path()
812 menu->helper->error(NULL, apppath, 1); in _idle_path()
831 menu->helper->error(NULL, apppath, 1); in _idle_path()
835 snprintf(name, strlen(apppath) + len + 2, "%s/%s", apppath, in _idle_path()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Web/System.Web/
H A DVirtualPathUtility.cs249 string apppath = HttpRuntime.AppDomainAppVirtualPath; in ToAbsolute()
250 if (apppath == null) in ToAbsolute()
254 return apppath; in ToAbsolute()
256 return ToAbsolute (virtualPath, apppath, normalize); in ToAbsolute()
299 string apppath = HttpRuntime.AppDomainAppVirtualPath; in ToAppRelative()
300 if (apppath == null) in ToAppRelative()
303 return ToAppRelative (virtualPath, apppath); in ToAppRelative()
392 string apppath = HttpRuntime.AppDomainAppVirtualPath; in Normalize()
393 apppath_parts = StrUtils.SplitRemoveEmptyEntries (apppath, path_sep); in Normalize()
/dports/devel/mercurial/mercurial-6.0/mercurial/hgweb/
H A Drequest.py109 apppath = attr.ib() variable in parsedrequest
261 apppath = altbaseurl.path or b''
262 if apppath and not apppath.startswith(b'/'):
263 apppath = b'/' + apppath
265 apppath = env.get(b'SCRIPT_NAME', b'')
288 apppath = apppath.rstrip(b'/') + repoprefix
349 apppath=apppath,
/dports/net/tn5250/tn5250-0.17.4/lib5250/
H A Dconf.c369 LPTSTR apppath; in tn5250_config_load_default() local
375 apppath = malloc (PATHSIZE + 1); in tn5250_config_load_default()
376 TN5250_ASSERT (apppath != NULL); in tn5250_config_load_default()
378 if (GetModuleFileName (NULL, apppath, PATHSIZE) < 1) in tn5250_config_load_default()
390 if (strrchr (apppath, '\\')) in tn5250_config_load_default()
392 len = strrchr (apppath, '\\') - apppath; in tn5250_config_load_default()
393 apppath[len + 1] = '\0'; in tn5250_config_load_default()
396 dir = malloc (strlen (apppath) + 15); in tn5250_config_load_default()
397 TN5250_ASSERT (apppath != NULL); in tn5250_config_load_default()
399 strcpy (dir, apppath); in tn5250_config_load_default()
[all …]
H A Dmacro.c288 LPTSTR apppath; in macro_filename() local
294 apppath = malloc(PATHSIZE+1); in macro_filename()
296 if (GetModuleFileName(NULL, apppath, PATHSIZE)<1) { in macro_filename()
311 if (strrchr(apppath, '\\')) { in macro_filename()
312 len = strrchr(apppath, '\\') - apppath; in macro_filename()
313 apppath[len+1] = '\0'; in macro_filename()
316 dir = malloc(strlen(apppath) + 15); in macro_filename()
318 strcpy(dir, apppath); in macro_filename()
320 free(apppath); in macro_filename()
/dports/games/libretro-scummvm/scummvm-7b1e929/backends/platform/sdl/amigaos/
H A Damigaos-main.cpp45 TEXT apppath[1024] = "AppPaths"; in main() local
56 IDOS->AddPart( apppath, appname, 1024); in main()
57 IDOS->SetVar( apppath, progpath, -1, GVF_GLOBAL_ONLY|GVF_SAVE_VAR ); in main()
/dports/games/scummvm/scummvm-2.5.1/backends/platform/sdl/amigaos/
H A Damigaos-main.cpp45 TEXT apppath[1024] = "AppPaths"; in main() local
52 IDOS->AddPart(apppath, appname, 1024); in main()
53 IDOS->SetVar(apppath, progpath, -1, GVF_GLOBAL_ONLY|GVF_SAVE_VAR); in main()
/dports/games/residualvm/residualvm-0.3.1/backends/platform/sdl/amigaos/
H A Damigaos-main.cpp45 TEXT apppath[1024] = "AppPaths"; in main() local
56 IDOS->AddPart( apppath, appname, 1024); in main()
57 IDOS->SetVar( apppath, progpath, -1, GVF_GLOBAL_ONLY|GVF_SAVE_VAR ); in main()
/dports/astro/qmapshack/qmapshack-V_1.16.1/src/qmt_rgb2pct/
H A Dmain.cpp69 QString apppath = QCoreApplication::applicationDirPath(); in loadTranslations() local
70 apppath = apppath.replace("/", "\\"); in loadTranslations()
71 QString appResourceDir = QString("%1\\translations").arg(apppath).toUtf8(); in loadTranslations()
/dports/lang/angelscript/sdk/add_on/scriptfile/
H A Dscriptfile.cpp288 static TCHAR apppath[MAX_PATH] = TEXT(""); in Open() local
289 if (!apppath[0]) in Open()
291 GetModuleFileName(NULL, apppath, MAX_PATH); in Open()
293 int appLen = _tcslen(apppath); in Open()
296 if (apppath[appLen-1] == TEXT('\\')) in Open()
302 apppath[appLen] = TEXT('\0'); in Open()
305 wcstombs(buf, apppath, wcslen(apppath)+1); in Open()
307 memcpy(buf, apppath, strlen(apppath)); in Open()
/dports/biology/sra-tools/sra-tools-2.11.0/ncbi-vdb/test/kfg/
H A Dkfg-fixture.cpp50 if (apppath.length() == 0) // first call in KfgFixture()
52 if (!GetValue("APPPATH", apppath)) in KfgFixture()
235 string KfgFixture :: apppath; member in KfgFixture
/dports/biology/ncbi-vdb/ncbi-vdb-2.11.0/test/kfg/
H A Dkfg-fixture.cpp50 if (apppath.length() == 0) // first call in KfgFixture()
52 if (!GetValue("APPPATH", apppath)) in KfgFixture()
235 string KfgFixture :: apppath; member in KfgFixture
/dports/games/openspades/openspades-0.1.3/Sources/AngelScript/addons/
H A Dscriptbuilder.cpp977 static TCHAR apppath[MAX_PATH] = TEXT(""); in GetCurrentDir() local
978 if (!apppath[0]) in GetCurrentDir()
980 GetModuleFileName(NULL, apppath, MAX_PATH); in GetCurrentDir()
982 int appLen = _tcslen(apppath); in GetCurrentDir()
991 if (apppath[appLen-1] == TEXT('\\')) in GetCurrentDir()
997 apppath[appLen] = TEXT('\0'); in GetCurrentDir()
1000 wcstombs(buffer, apppath, min(1024, wcslen(apppath)*sizeof(wchar_t))); in GetCurrentDir()
1002 memcpy(buffer, apppath, min(1024, strlen(apppath))); in GetCurrentDir()
/dports/lang/fpc-source/fpc-3.2.2/tests/
H A DMPWMake124 Set apppath {�1}
125 (Evaluate "{apppath}" =~ /�:([�:]*)�1/) > Dev:Null
128 If NOT "`Exists :output:powerpc-macos{apppath}.elg`"
130 Echo Testing: "{apppath}"
131 :utils:DoTest {DOTESTOPT} -E -X -C{TEST_FPC} "{apppath}.pp"
/dports/games/openjk/OpenJK-07675e2/shared/sys/
H A Dsys_main.cpp507 char *apppath = Cvar_VariableString( "fs_apppath" ); in Sys_LoadLegacyGameDll() local
513 apppath, in Sys_LoadLegacyGameDll()
565 char *apppath = Cvar_VariableString( "fs_apppath" ); in Sys_LoadSPGameDll() local
571 apppath, in Sys_LoadSPGameDll()
638 char *apppath = Cvar_VariableString( "fs_apppath" ); in Sys_LoadGameDll() local
644 apppath, in Sys_LoadGameDll()
/dports/devel/p5-Test2-Harness/Test2-Harness-1.000082/lib/App/Yath/
H A DTester.pm27 my $apppath = App::Yath->app_path;
88 push @inc => "-I$apppath" if $cmd =~ m/^(test|start|projects)$/;
89 push @dev => "-D$apppath";

123