Lines Matching full:computer
289 tester("ntpath.join('//computer/share', 'x/y')", '//computer/share\\x/y')
290 tester("ntpath.join('//computer/share/', 'x/y')", '//computer/share/x/y')
291 tester("ntpath.join('//computer/share/a/b', 'x/y')", '//computer/share/a/b\\x/y')
299 tester("ntpath.join('//computer/share', '/x/y')", '//computer/share/x/y')
300 tester("ntpath.join('//computer/share/', '/x/y')", '//computer/share/x/y')
301 tester("ntpath.join('//computer/share/a', '/x/y')", '//computer/share/x/y')
309 '//computer/share', '//computer/share/', '//computer/share/a/b'):
314 tester("ntpath.join('\\\\computer\\share\\', 'a', 'b')", '\\\\computer\\share\\a\\b')
315 tester("ntpath.join('\\\\computer\\share', 'a', 'b')", '\\\\computer\\share\\a\\b')
316 tester("ntpath.join('\\\\computer\\share', 'a\\b')", '\\\\computer\\share\\a\\b')
317 tester("ntpath.join('//computer/share/', 'a', 'b')", '//computer/share/a\\b')
318 tester("ntpath.join('//computer/share', 'a', 'b')", '//computer/share\\a\\b')
319 tester("ntpath.join('//computer/share', 'a/b')", '//computer/share\\a/b')
321 tester("ntpath.join('\\\\', 'computer')", '\\\\computer')
322 tester("ntpath.join('\\\\computer\\', 'share')", '\\\\computer\\share')
323 tester("ntpath.join('\\\\computer\\share\\', 'a')", '\\\\computer\\share\\a')
324 tester("ntpath.join('\\\\computer\\share\\a\\', 'b')", '\\\\computer\\share\\a\\b')