Lines Matching refs:aURL
211 com.sun.star.util.URL[] aURL = new com.sun.star.util.URL[1]; in testCommands() local
212 aURL[0] = new com.sun.star.util.URL(); in testCommands()
215 aURL[0].Complete = ".uno:" + aCommandURLTestSet[n]; in testCommands()
216 xTransformer.parseSmart( aURL, ".uno:" ); in testCommands()
219 xDispatch = xDispatchProvider.queryDispatch( aURL[0], "", 0 ); in testCommands()
226 + aURL[0].Complete ); in testCommands()
229 + aURL[0].Complete ); in testCommands()
234 … System.out.println("Something is wrong, I cannot get dispatch object for " + aURL[0].Complete ); in testCommands()
237 + aURL[0].Complete ); in testCommands()
239 resetURL( aURL[0] ); in testCommands()
386 private static void resetURL( com.sun.star.util.URL aURL ) in resetURL() argument
388 aURL.Protocol = ""; in resetURL()
389 aURL.User = ""; in resetURL()
390 aURL.Password = ""; in resetURL()
391 aURL.Server = ""; in resetURL()
392 aURL.Port = 0; in resetURL()
393 aURL.Path = ""; in resetURL()
394 aURL.Name = ""; in resetURL()
395 aURL.Arguments = ""; in resetURL()
396 aURL.Mark = ""; in resetURL()
397 aURL.Main = ""; in resetURL()
398 aURL.Complete = ""; in resetURL()