Lines Matching refs:o_sPathAfterRoot
154 Create_WindowsRoot( const char * & o_sPathAfterRoot, in Create_WindowsRoot() argument
161 o_sPathAfterRoot = strchr(i_sPath+2,'\\'); in Create_WindowsRoot()
162 if (o_sPathAfterRoot != 0) in Create_WindowsRoot()
164 o_sPathAfterRoot = strchr(o_sPathAfterRoot+1,'\\'); in Create_WindowsRoot()
165 if (o_sPathAfterRoot != 0) in Create_WindowsRoot()
166 ++o_sPathAfterRoot; in Create_WindowsRoot()
173 o_sPathAfterRoot = i_sPath+1; in Create_WindowsRoot()
181 o_sPathAfterRoot = i_sPath + 3; in Create_WindowsRoot()
186 o_sPathAfterRoot = i_sPath + 2; in Create_WindowsRoot()
192 o_sPathAfterRoot = i_sPath; in Create_WindowsRoot()
198 Create_UnixRoot( const char * & o_sPathAfterRoot, in Create_UnixRoot() argument
203 o_sPathAfterRoot = i_sPath + 1; in Create_UnixRoot()
208 o_sPathAfterRoot = i_sPath; in Create_UnixRoot()
222 Root::Create_( const char * & o_sPathAfterRoot, in Create_() argument
230 case '\0': o_sPathAfterRoot = i_sPath + 1; in Create_()
232 case '\\': o_sPathAfterRoot = i_sPath + 2; in Create_()
234 case '/': o_sPathAfterRoot = i_sPath + 2; in Create_()
236 case '.': o_sPathAfterRoot = i_sPath; in Create_()
239 o_sPathAfterRoot = 0; in Create_()
248 case '\\': return Create_WindowsRoot(o_sPathAfterRoot, i_sPath); in Create_()
249 case '/': return Create_UnixRoot(o_sPathAfterRoot, i_sPath); in Create_()
252 o_sPathAfterRoot = 0; in Create_()