121 references to AllowAll
Microsoft.Build (9)
BackEnd\Components\RequestBuilder\IntrinsicTasks\ItemGroupIntrinsicTask.cs (4)
69ParserOptions.AllowAll, 175ParserOptions.AllowAll, 211ParserOptions.AllowAll, 329ParserOptions.AllowAll,
BackEnd\Components\RequestBuilder\IntrinsicTasks\PropertyGroupIntrinsicTask.cs (1)
66ParserOptions.AllowAll,
BackEnd\Components\RequestBuilder\TaskBuilder.cs (2)
372ParserOptions parserOptions = (_taskNode == null) ? ParserOptions.AllowPropertiesAndItemLists : ParserOptions.AllowAll; 1080ParserOptions.AllowAll,
Evaluation\LazyItemEvaluator.LazyItemOperation.cs (2)
208if (!EvaluateCondition(metadataElement.Condition, metadataElement, metadataExpansionOptions, ParserOptions.AllowAll, _expander, _lazyEvaluator)) 244ParserOptions.AllowAll,
Microsoft.Build.Engine.UnitTests (112)
BackEnd\BatchingEngine_Tests.cs (1)
72ParserOptions.AllowAll,
Evaluation\Evaluator_Tests.cs (2)
4506ParserOptions.AllowAll, 4524ParserOptions.AllowAll,
Evaluation\Expander_Tests.cs (2)
2324ParserOptions.AllowAll, 2334ParserOptions.AllowAll,
ExpressionTree_Tests.cs (3)
109tree = p.Parse(command, ParserOptions.AllowAll, ElementLocation.EmptyLocation); 439GenericExpressionNode tree = p.Parse(expression, ParserOptions.AllowAll, MockElementLocation.Instance); 476GenericExpressionNode tree = p.Parse(expression, ParserOptions.AllowAll, MockElementLocation.Instance);
ExpressionTreeExpression_Tests.cs (3)
436GenericExpressionNode tree = p.Parse(expression, ParserOptions.AllowAll, ElementLocation.EmptyLocation); 460GenericExpressionNode tree = p.Parse(expression, ParserOptions.AllowAll, ElementLocation.EmptyLocation); 491var tree = p.Parse(expression, ParserOptions.AllowAll, ElementLocation.EmptyLocation);
Parser_Tests.cs (40)
30GenericExpressionNode tree = p.Parse("$(foo)", ParserOptions.AllowAll, _elementLocation); 33tree = p.Parse("$(foo)=='hello'", ParserOptions.AllowAll, _elementLocation); 36tree = p.Parse("$(foo)==''", ParserOptions.AllowAll, _elementLocation); 39tree = p.Parse("$(debug) and $(buildlab) and $(full)", ParserOptions.AllowAll, _elementLocation); 42tree = p.Parse("$(debug) or $(buildlab) or $(full)", ParserOptions.AllowAll, _elementLocation); 45tree = p.Parse("$(debug) and $(buildlab) or $(full)", ParserOptions.AllowAll, _elementLocation); 48tree = p.Parse("$(full) or $(debug) and $(buildlab)", ParserOptions.AllowAll, _elementLocation); 51tree = p.Parse("%(culture)", ParserOptions.AllowAll, _elementLocation); 54tree = p.Parse("%(culture)=='french'", ParserOptions.AllowAll, _elementLocation); 57tree = p.Parse("'foo_%(culture)'=='foo_french'", ParserOptions.AllowAll, _elementLocation); 60tree = p.Parse("true", ParserOptions.AllowAll, _elementLocation); 63tree = p.Parse("false", ParserOptions.AllowAll, _elementLocation); 66tree = p.Parse("0", ParserOptions.AllowAll, _elementLocation); 69tree = p.Parse("0.0 == 0", ParserOptions.AllowAll, _elementLocation); 79GenericExpressionNode tree = p.Parse("$(foo)", ParserOptions.AllowAll, _elementLocation); 82tree = p.Parse("($(foo) or $(bar)) and $(baz)", ParserOptions.AllowAll, _elementLocation); 85tree = p.Parse("$(foo) <= 5 and $(bar) >= 15", ParserOptions.AllowAll, _elementLocation); 88tree = p.Parse("(($(foo) <= 5 and $(bar) >= 15) and $(baz) == simplestring) and 'a more complex string' != $(quux)", ParserOptions.AllowAll, _elementLocation); 91tree = p.Parse("(($(foo) or $(bar) == false) and !($(baz) == simplestring))", ParserOptions.AllowAll, _elementLocation); 94tree = p.Parse("(($(foo) or Exists('c:\\foo.txt')) and !(($(baz) == simplestring)))", ParserOptions.AllowAll, _elementLocation); 97tree = p.Parse("'CONTAINS%27QUOTE%27' == '$(TestQuote)'", ParserOptions.AllowAll, _elementLocation); 107GenericExpressionNode tree = p.Parse("!true", ParserOptions.AllowAll, _elementLocation); 109tree = p.Parse("!(true)", ParserOptions.AllowAll, _elementLocation); 111tree = p.Parse("!($(foo) <= 5)", ParserOptions.AllowAll, _elementLocation); 113tree = p.Parse("!(%(foo) <= 5)", ParserOptions.AllowAll, _elementLocation); 115tree = p.Parse("!($(foo) <= 5 and $(bar) >= 15)", ParserOptions.AllowAll, _elementLocation); 124GenericExpressionNode tree = p.Parse("SimpleFunctionCall()", ParserOptions.AllowAll, _elementLocation); 126tree = p.Parse("SimpleFunctionCall( 1234 )", ParserOptions.AllowAll, _elementLocation); 127tree = p.Parse("SimpleFunctionCall( true )", ParserOptions.AllowAll, _elementLocation); 128tree = p.Parse("SimpleFunctionCall( $(property) )", ParserOptions.AllowAll, _elementLocation); 130tree = p.Parse("SimpleFunctionCall( $(property), 1234, abcd, 'abcd efgh' )", ParserOptions.AllowAll, _elementLocation); 325tree = p.Parse("'a more complex' == 'asdf", ParserOptions.AllowAll, _elementLocation); 338tree = p.Parse("(($(foo) <= 5 and $(bar) >= 15) and $(baz) == 'simple string) and 'a more complex string' != $(quux)", ParserOptions.AllowAll, _elementLocation); 350tree = p.Parse("($(foo) == 'simple string') $(bar)", ParserOptions.AllowAll, _elementLocation); 363tree = p.Parse("=='x'", ParserOptions.AllowAll, _elementLocation); 376tree = p.Parse("==", ParserOptions.AllowAll, _elementLocation); 389tree = p.Parse(">", ParserOptions.AllowAll, _elementLocation); 401tree = p.Parse("true!=false==", ParserOptions.AllowAll, _elementLocation); 414tree = p.Parse("true!=false==true", ParserOptions.AllowAll, _elementLocation); 426tree = p.Parse("1==(2", ParserOptions.AllowAll, _elementLocation);
Scanner_Tests.cs (61)
141Scanner lexer = new Scanner("@(", ParserOptions.AllowAll); 146lexer = new Scanner("@x", ParserOptions.AllowAll); 151lexer = new Scanner("@(x", ParserOptions.AllowAll); 156lexer = new Scanner("@(x->'%(y)", ParserOptions.AllowAll); 161lexer = new Scanner("@(x->'%(y)', 'x", ParserOptions.AllowAll); 166lexer = new Scanner("@(x->'%(y)', 'x'", ParserOptions.AllowAll); 179Scanner lexer = new Scanner("false or 'abc", ParserOptions.AllowAll); 184lexer = new Scanner("\'", ParserOptions.AllowAll); 195Scanner lexer = new Scanner("1234", ParserOptions.AllowAll); 200lexer = new Scanner("-1234", ParserOptions.AllowAll); 205lexer = new Scanner("+1234", ParserOptions.AllowAll); 210lexer = new Scanner("1234.1234", ParserOptions.AllowAll); 215lexer = new Scanner(".1234", ParserOptions.AllowAll); 220lexer = new Scanner("1234.", ParserOptions.AllowAll); 224lexer = new Scanner("0x1234", ParserOptions.AllowAll); 228lexer = new Scanner("0X1234abcd", ParserOptions.AllowAll); 232lexer = new Scanner("0x1234ABCD", ParserOptions.AllowAll); 243Scanner lexer = new Scanner("$(foo)", ParserOptions.AllowAll); 246lexer = new Scanner("@(foo)", ParserOptions.AllowAll); 249lexer = new Scanner("abcde", ParserOptions.AllowAll); 254lexer = new Scanner("'abc-efg'", ParserOptions.AllowAll); 259lexer = new Scanner("and", ParserOptions.AllowAll); 263lexer = new Scanner("or", ParserOptions.AllowAll); 267lexer = new Scanner("AnD", ParserOptions.AllowAll); 271lexer = new Scanner("Or", ParserOptions.AllowAll); 282Scanner lexer = new Scanner("(", ParserOptions.AllowAll); 285lexer = new Scanner(")", ParserOptions.AllowAll); 288lexer = new Scanner(",", ParserOptions.AllowAll); 291lexer = new Scanner("==", ParserOptions.AllowAll); 294lexer = new Scanner("!=", ParserOptions.AllowAll); 297lexer = new Scanner("<", ParserOptions.AllowAll); 300lexer = new Scanner(">", ParserOptions.AllowAll); 303lexer = new Scanner("<=", ParserOptions.AllowAll); 306lexer = new Scanner(">=", ParserOptions.AllowAll); 309lexer = new Scanner("!", ParserOptions.AllowAll); 320Scanner lexer = new Scanner("@(Foo, ' ')", ParserOptions.AllowAll); 324lexer = new Scanner("'@(Foo, ' ')'", ParserOptions.AllowAll); 328lexer = new Scanner("'%40(( '", ParserOptions.AllowAll); 332lexer = new Scanner("'@(Complex_ItemType-123, ';')' == ''", ParserOptions.AllowAll); 344Scanner lexer = new Scanner("Foo()", ParserOptions.AllowAll); 350lexer = new Scanner("Foo( 1 )", ParserOptions.AllowAll); 357lexer = new Scanner("Foo( $(Property) )", ParserOptions.AllowAll); 364lexer = new Scanner("Foo( @(ItemList) )", ParserOptions.AllowAll); 371lexer = new Scanner("Foo( simplestring )", ParserOptions.AllowAll); 378lexer = new Scanner("Foo( 'Not a Simple String' )", ParserOptions.AllowAll); 385lexer = new Scanner("Foo( 'Not a Simple String', 1234 )", ParserOptions.AllowAll); 394lexer = new Scanner("Foo( $(Property), 'Not a Simple String', 1234 )", ParserOptions.AllowAll); 405lexer = new Scanner("Foo( @(ItemList), $(Property), simplestring, 'Not a Simple String', 1234 )", ParserOptions.AllowAll); 426Scanner lexer = new Scanner("'String with a $(Property) inside'", ParserOptions.AllowAll); 430lexer = new Scanner("'String with an embedded \\' in it'", ParserOptions.AllowAll); 434lexer = new Scanner("'String with a $(Property) inside'", ParserOptions.AllowAll); 438lexer = new Scanner("@(list, ' ')", ParserOptions.AllowAll); 442lexer = new Scanner("@(files->'%(Filename)')", ParserOptions.AllowAll); 452Scanner lexer = new Scanner("1234", ParserOptions.AllowAll); 455lexer = new Scanner("'abc-efg'==$(foo)", ParserOptions.AllowAll); 465lexer = new Scanner("$(debug)!=true", ParserOptions.AllowAll); 475lexer = new Scanner("$(VERSION)<5", ParserOptions.AllowAll); 494lexer = new Scanner("$(DEBUG) and $(FOO)", ParserOptions.AllowAll); 499lexer = new Scanner("1234$(DEBUG)0xabcd@(foo)asdf<>'foo'<=false>=true==1234!=", ParserOptions.AllowAll); 517lexer = new Scanner(" 1234 $(DEBUG) 0xabcd \n@(foo) \nasdf \n< \n> \n'foo' \n<= \nfalse \n>= \ntrue \n== \n 1234 \n!= ", ParserOptions.AllowAll); 562Scanner lexer = new Scanner("'$(DEBUG) == true", ParserOptions.AllowAll);