74 references to AddToken
Microsoft.TemplateEngine.Core (74)
Expressions\Cpp2\Cpp2StyleEvaluatorDefinition.cs (27)
86
trie.
AddToken
(processor.Encoding.GetBytes("&&"));
87
trie.
AddToken
(processor.Encoding.GetBytes("||"));
88
trie.
AddToken
(processor.Encoding.GetBytes("!"));
89
trie.
AddToken
(processor.Encoding.GetBytes(">"));
90
trie.
AddToken
(processor.Encoding.GetBytes(">="));
91
trie.
AddToken
(processor.Encoding.GetBytes("<"));
92
trie.
AddToken
(processor.Encoding.GetBytes("<="));
93
trie.
AddToken
(processor.Encoding.GetBytes("=="));
94
trie.
AddToken
(processor.Encoding.GetBytes("!="));
97
trie.
AddToken
(processor.Encoding.GetBytes("("));
98
trie.
AddToken
(processor.Encoding.GetBytes(")"));
101
trie.
AddToken
(processor.Encoding.GetBytes(" "));
102
trie.
AddToken
(processor.Encoding.GetBytes("\t"));
105
trie.
AddToken
(processor.Encoding.GetBytes("\r\n"));
106
trie.
AddToken
(processor.Encoding.GetBytes("\n"));
107
trie.
AddToken
(processor.Encoding.GetBytes("\r"));
110
trie.
AddToken
(processor.Encoding.GetBytes("'"));
113
trie.
AddToken
(processor.Encoding.GetBytes("<<"));
114
trie.
AddToken
(processor.Encoding.GetBytes(">>"));
117
trie.
AddToken
(processor.Encoding.GetBytes("+"));
118
trie.
AddToken
(processor.Encoding.GetBytes("-"));
119
trie.
AddToken
(processor.Encoding.GetBytes("*"));
120
trie.
AddToken
(processor.Encoding.GetBytes("/"));
123
trie.
AddToken
(processor.Encoding.GetBytes("&"));
124
trie.
AddToken
(processor.Encoding.GetBytes("|"));
127
trie.
AddToken
(processor.Encoding.GetBytes("'"));
128
trie.
AddToken
(processor.Encoding.GetBytes("\""));
Expressions\MSBuild\MSBuildStyleEvaluatorDefinition.cs (18)
68
trie.
AddToken
(processor.Encoding.GetBytes("AND"));
69
trie.
AddToken
(processor.Encoding.GetBytes("OR"));
70
trie.
AddToken
(processor.Encoding.GetBytes("!"));
71
trie.
AddToken
(processor.Encoding.GetBytes(">"));
72
trie.
AddToken
(processor.Encoding.GetBytes(">="));
73
trie.
AddToken
(processor.Encoding.GetBytes("<"));
74
trie.
AddToken
(processor.Encoding.GetBytes("<="));
75
trie.
AddToken
(processor.Encoding.GetBytes("=="));
76
trie.
AddToken
(processor.Encoding.GetBytes("!="));
79
trie.
AddToken
(processor.Encoding.GetBytes("("));
80
trie.
AddToken
(processor.Encoding.GetBytes(")"));
83
trie.
AddToken
(processor.Encoding.GetBytes(" "));
84
trie.
AddToken
(processor.Encoding.GetBytes("\t"));
87
trie.
AddToken
(processor.Encoding.GetBytes("\r\n"));
88
trie.
AddToken
(processor.Encoding.GetBytes("\n"));
89
trie.
AddToken
(processor.Encoding.GetBytes("\r"));
92
trie.
AddToken
(processor.Encoding.GetBytes("'"));
95
trie.
AddToken
(processor.Encoding.GetBytes("$("));
Expressions\ScopeBuilder.cs (1)
56
trie.
AddToken
(processor.Encoding.GetBytes(string.Format(processor.Config.VariableFormatString, variable.Key)));
Expressions\VisualBasic\VisualBasicStyleEvaluatorDefintion.cs (28)
88
trie.
AddToken
(processor.Encoding.GetBytes("And"));
89
trie.
AddToken
(processor.Encoding.GetBytes("AndAlso"));
90
trie.
AddToken
(processor.Encoding.GetBytes("Or"));
91
trie.
AddToken
(processor.Encoding.GetBytes("OrElse"));
92
trie.
AddToken
(processor.Encoding.GetBytes("Not"));
93
trie.
AddToken
(processor.Encoding.GetBytes(">"));
94
trie.
AddToken
(processor.Encoding.GetBytes(">="));
95
trie.
AddToken
(processor.Encoding.GetBytes("<"));
96
trie.
AddToken
(processor.Encoding.GetBytes("<="));
97
trie.
AddToken
(processor.Encoding.GetBytes("="));
98
trie.
AddToken
(processor.Encoding.GetBytes("<>"));
99
trie.
AddToken
(processor.Encoding.GetBytes("Xor"));
102
trie.
AddToken
(processor.Encoding.GetBytes("("));
103
trie.
AddToken
(processor.Encoding.GetBytes(")"));
106
trie.
AddToken
(processor.Encoding.GetBytes(" "));
107
trie.
AddToken
(processor.Encoding.GetBytes("\t"));
110
trie.
AddToken
(processor.Encoding.GetBytes("\r\n"));
111
trie.
AddToken
(processor.Encoding.GetBytes("\n"));
112
trie.
AddToken
(processor.Encoding.GetBytes("\r"));
115
trie.
AddToken
(processor.Encoding.GetBytes("'"));
118
trie.
AddToken
(processor.Encoding.GetBytes("<<"));
119
trie.
AddToken
(processor.Encoding.GetBytes(">>"));
122
trie.
AddToken
(processor.Encoding.GetBytes("+"));
123
trie.
AddToken
(processor.Encoding.GetBytes("-"));
124
trie.
AddToken
(processor.Encoding.GetBytes("*"));
125
trie.
AddToken
(processor.Encoding.GetBytes("/"));
126
trie.
AddToken
(processor.Encoding.GetBytes("^"));
129
trie.
AddToken
(processor.Encoding.GetBytes("\""));