Home
last modified time | relevance | path

Searched refs:sepstring (Results 1 – 16 of 16) sorted by relevance

/dports/games/springlobby/springlobby-0.180/src/utils/
H A Dpathlistfactory.cpp16 const wxString sepstring = wxString(sep); variable
71 pl.Add( sp.GetDocumentsDir() + sepstring + wxT("My Games") + sepstring + wxT("Spring") ); in AdditionalSearchPaths()
80 if ( !path.EndsWith( sepstring ) ) in AdditionalSearchPaths()
81 path += sepstring; in AdditionalSearchPaths()
83 ret.Add( path + _T( "Spring" ) + sepstring ); in AdditionalSearchPaths()
84 ret.Add( path + _T( "spring" ) + sepstring ); in AdditionalSearchPaths()
85 ret.Add( path + _T( "games" ) + sepstring + _T( "Spring" ) + sepstring ); in AdditionalSearchPaths()
86 ret.Add( path + _T( "games" ) + sepstring + _T( "spring" ) + sepstring ); in AdditionalSearchPaths()
102 ret.Add(userdir + sepstring + filename); in AdditionalSearchPaths()
/dports/security/signify/outils-0.10/src/usr.bin/lam/
H A Dlam.c58 char *sepstring; /* string to print before each line */ member
106 fputs(input[i].sepstring, stdout); in main()
155 ip->sepstring = optarg; in getargs()
176 if (ip->sepstring == NULL) in getargs()
177 ip->sepstring = S ? (ip-1)->sepstring : ""; in getargs()
197 if (ip->sepstring == NULL) in getargs()
198 ip->sepstring = ""; in getargs()
208 n = strlcpy(lp, ip->sepstring, line + sizeof(line) - lp); in pad()
245 n = strlcpy(lp, ip->sepstring, line + sizeof(line) - lp); in gatherline()
/dports/deskutils/recoll/recoll-1.31.2/filters/
H A Dxlsxmltocsv.py34 sepstring = b"\t" variable
37 sepstring = b","
59 self.output.append(b"%s%s" % (value.encode("UTF-8"), sepstring))
70 line.append(sepstring * (idx - curidx))
/dports/security/signify/outils-0.10/src/usr.bin/jot/
H A Djot.c63 static char *sepstring = "\n"; variable
119 sepstring = optarg; in main()
329 fputs(sepstring, stdout); in putdata()
/dports/games/springlobby/springlobby-0.180/src/helper/
H A Dslconfig.cpp16 const wxString sepstring = wxString(sep); variable
43 wxString userfilepath = IdentityString( GetConfigfileDir() + sepstring + _T( "%s.conf" ), true ); in Create()
44 …wxString localfilepath = IdentityString( GetExecutableFolder() + sepstring + _T( "%s.conf" ), tru… in Create()
/dports/ftp/wget/wget-1.21.2/src/
H A Dutils.h72 char **sepstring (const char *);
H A Dinit.c418 opt.no_proxy = sepstring (tmp); in defaults()
1239 *pvec = merge_vecs (*pvec, sepstring (val)); in cmd_vector()
1258 seps = sepstring (val); in cmd_directory_vector()
H A Dutils.c251 sepstring (const char *s) in sepstring() function
/dports/math/ploticus-nox11/pl240src/src/
H A Dglroutines.c274 GL_getchunk( rtn, line, i, sepstring ) in GL_getchunk() argument
278 char sepstring[];
283 while( GL_member( line[(*i)], sepstring ) ) (*i)++;
287 if( GL_member( line[*i], sepstring ) || line[*i] == '\0' ) break;
/dports/math/ploticus/pl240src/src/
H A Dglroutines.c274 GL_getchunk( rtn, line, i, sepstring ) in GL_getchunk() argument
278 char sepstring[];
283 while( GL_member( line[(*i)], sepstring ) ) (*i)++;
287 if( GL_member( line[*i], sepstring ) || line[*i] == '\0' ) break;
/dports/games/springlobby/springlobby-0.180/src/
H A Dsettings.cpp56 const wxString sepstring = wxString(sep); variable
265 wxString path = GetLobbyWriteDir() + sepstring + _T( "cache" ) + sep; in GetCachePath()
621 dir = wxFileName::GetHomeDir() + sepstring + _T( ".spring" ); // fallback in GetCurrentUsedDataDir()
624 if ( dir.EndsWith(sepstring,&stripped) ) return stripped; in GetCurrentUsedDataDir()
693 wxString path = GetLobbyWriteDir() + sepstring + _T( "chatlog" ); in GetChatLogLoc()
1664 … wxString def = wxGetOSDirectory() + sepstring + _T("system32") + sepstring + _T("notepad.exe"); in GetEditorPath()
/dports/astro/astrometry/astrometry.net-0.85/include/astrometry/
H A Dbl.h246 sl* sl_split(sl* lst, const char* str, const char* sepstring);
/dports/astro/stellarsolver/stellarsolver-1.8/stellarsolver/astrometry/include/astrometry/
H A Dbl.h258 sl* sl_split(sl* lst, const char* str, const char* sepstring);
/dports/astro/astrometry/astrometry.net-0.85/util/
H A Dbl.c932 sl* sl_split(sl* lst, const char* str, const char* sepstring) { in sl_split() argument
938 seplen = strlen(sepstring); in sl_split()
941 next_sep = strstr(s, sepstring); in sl_split()
/dports/astro/stellarsolver/stellarsolver-1.8/stellarsolver/astrometry/util/
H A Dbl.c932 sl* sl_split(sl* lst, const char* str, const char* sepstring) { in sl_split() argument
938 seplen = strlen(sepstring); in sl_split()
941 next_sep = strstr(s, sepstring); in sl_split()
/dports/ftp/wget/wget-1.21.2/
H A DChangeLog26243 * src/utils.c (sepstring): Rewrote; don't use strtok.
26728 * src/utils.c (sepstring): Use !*s instead of !strlen(s).