Lines Matching refs:AppendSwitchIfNotNull

281 			clb.AppendSwitchIfNotNull (null, "parameter");  in TestAppendSwitchIfNotNull1()
292 clb.AppendSwitchIfNotNull (name, (string) null); in TestAppendSwitchIfNotNull2()
296 clb.AppendSwitchIfNotNull (name, parameter); in TestAppendSwitchIfNotNull2()
307 clb.AppendSwitchIfNotNull (null, items [0]); in TestAppendSwitchIfNotNull3()
317 clb.AppendSwitchIfNotNull (name, (ITaskItem) null); in TestAppendSwitchIfNotNull4()
321 clb.AppendSwitchIfNotNull (name, items [0]); in TestAppendSwitchIfNotNull4()
332 clb.AppendSwitchIfNotNull (null, array, "delimiter"); in TestAppendSwitchIfNotNull5()
341 clb.AppendSwitchIfNotNull ("/switch", array, null); in TestAppendSwitchIfNotNull6()
349 clb.AppendSwitchIfNotNull ("/switch:", (string[]) null, ";"); in TestAppendSwitchIfNotNull7()
352 clb.AppendSwitchIfNotNull ("/switch:", array, ";"); in TestAppendSwitchIfNotNull7()
355 clb.AppendSwitchIfNotNull ("/switch:", new string[] { "a'b", "c" }, ";"); in TestAppendSwitchIfNotNull7()
358 clb.AppendSwitchIfNotNull ("/switch:", "a;b;c"); in TestAppendSwitchIfNotNull7()
368 clb.AppendSwitchIfNotNull (null, items, "delimiter"); in TestAppendSwitchIfNotNull8()
377 clb.AppendSwitchIfNotNull ("/switch", items, null); in TestAppendSwitchIfNotNull9()
385 clb.AppendSwitchIfNotNull ("/switch:", (ITaskItem[]) null, ";"); in TestAppendSwitchIfNotNull10()
388 clb.AppendSwitchIfNotNull ("/switch:", items, ";"); in TestAppendSwitchIfNotNull10()
391 …clb.AppendSwitchIfNotNull("/switch:", new ITaskItem[] { new TaskItem("a'b"), new TaskItem("c") }, … in TestAppendSwitchIfNotNull10()
400 clb.AppendSwitchIfNotNull("/z:", " a b"); in TestAppendSwitchIfNotNul11()
401 clb.AppendSwitchIfNotNull("/z:", "c\tb"); in TestAppendSwitchIfNotNul11()
402 clb.AppendSwitchIfNotNull("/z:", "ab\n"); in TestAppendSwitchIfNotNul11()
403 clb.AppendSwitchIfNotNull("/z:", "xyz\u000babc"); in TestAppendSwitchIfNotNul11()
404 clb.AppendSwitchIfNotNull("/z:", "\u000cabc"); in TestAppendSwitchIfNotNul11()
405 clb.AppendSwitchIfNotNull("/z:", "a 'hello' b"); in TestAppendSwitchIfNotNul11()
406 clb.AppendSwitchIfNotNull("/z:", "a;b"); in TestAppendSwitchIfNotNul11()
418 clb.AppendSwitchIfNotNull("/z:", "x \"hello\" y"); in TestAppendSwitchIfNotNull12()
691 new CommandLineBuilder().AppendSwitchIfNotNull("foo", new TaskItem("a\"b")); in TestEmbeddedQuotes5()
698 new CommandLineBuilder().AppendSwitchIfNotNull("foo", "a\"b"); in TestEmbeddedQuotes6()
705 …new CommandLineBuilder().AppendSwitchIfNotNull("foo", new ITaskItem[] { new TaskItem ("xyz"), new … in TestEmbeddedQuotes7()
712 new CommandLineBuilder().AppendSwitchIfNotNull("foo", new string[] {"xyz", "a\"b" }, ":"); in TestEmbeddedQuotes8()