Home
last modified time | relevance | path

Searched refs:tmpFname (Results 1 – 3 of 3) sorted by relevance

/dports/devel/codeblocks/codeblocks-20.03/src/sdk/
H A Dcompilercommandgenerator.cpp417 wxFileName tmpFname(UnquoteStringIfNeeded(tmpFile)); in GenerateCommandLine() local
424 tmpFname.GetName().wx_str(), in GenerateCommandLine()
425 tmpFname.GetPath().wx_str(), in GenerateCommandLine()
426 tmpFname.GetExt().wx_str())); in GenerateCommandLine()
481 result.macro->Replace(_T("$file_basename"), tmpFname.GetName()); // old way - remove later in GenerateCommandLine()
482 result.macro->Replace(_T("$file_name"), tmpFname.GetName()); in GenerateCommandLine()
483 result.macro->Replace(_T("$file_dir"), tmpFname.GetPath()); in GenerateCommandLine()
484 result.macro->Replace(_T("$file_ext"), tmpFname.GetExt()); in GenerateCommandLine()
/dports/www/e107/e107/e107_plugins/forum/
H A Dforum_class.php2345 $tmpFname = $forumInfo['forum_name'];
2346 if(substr($tmpFname, 0, 1) == "*") { $tmpFname = substr($tmpFname, 1); }
2350 …link' href='".e107::url('forum', 'forum', $forumInfo)."'>".$tp->toHTML($tmpFname, TRUE, 'no_hook,e…
2353 $BREADCRUMB .= $tmpFname;
/dports/graphics/mapserver/mapserver-7.6.4/
H A Dmaputil.c1644 char *tmpFname; in msTmpFilename() local
1653 tmpFname = (char*)msSmallMalloc(tmpFnameBufsize); in msTmpFilename()
1656 snprintf(tmpFname, tmpFnameBufsize, "%s_%x.%s", tmpId, tmpCount++, ext); in msTmpFilename()
1659 fullFname = msStrdup(tmpFname); in msTmpFilename()
1660 free(tmpFname); in msTmpFilename()