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)
69
trie.
AddToken
(processor.Encoding.GetBytes("AND"));
70
trie.
AddToken
(processor.Encoding.GetBytes("OR"));
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("=="));
77
trie.
AddToken
(processor.Encoding.GetBytes("!="));
80
trie.
AddToken
(processor.Encoding.GetBytes("("));
81
trie.
AddToken
(processor.Encoding.GetBytes(")"));
84
trie.
AddToken
(processor.Encoding.GetBytes(" "));
85
trie.
AddToken
(processor.Encoding.GetBytes("\t"));
88
trie.
AddToken
(processor.Encoding.GetBytes("\r\n"));
89
trie.
AddToken
(processor.Encoding.GetBytes("\n"));
90
trie.
AddToken
(processor.Encoding.GetBytes("\r"));
93
trie.
AddToken
(processor.Encoding.GetBytes("'"));
96
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)
89
trie.
AddToken
(processor.Encoding.GetBytes("And"));
90
trie.
AddToken
(processor.Encoding.GetBytes("AndAlso"));
91
trie.
AddToken
(processor.Encoding.GetBytes("Or"));
92
trie.
AddToken
(processor.Encoding.GetBytes("OrElse"));
93
trie.
AddToken
(processor.Encoding.GetBytes("Not"));
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("<>"));
100
trie.
AddToken
(processor.Encoding.GetBytes("Xor"));
103
trie.
AddToken
(processor.Encoding.GetBytes("("));
104
trie.
AddToken
(processor.Encoding.GetBytes(")"));
107
trie.
AddToken
(processor.Encoding.GetBytes(" "));
108
trie.
AddToken
(processor.Encoding.GetBytes("\t"));
111
trie.
AddToken
(processor.Encoding.GetBytes("\r\n"));
112
trie.
AddToken
(processor.Encoding.GetBytes("\n"));
113
trie.
AddToken
(processor.Encoding.GetBytes("\r"));
116
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("-"));
125
trie.
AddToken
(processor.Encoding.GetBytes("*"));
126
trie.
AddToken
(processor.Encoding.GetBytes("/"));
127
trie.
AddToken
(processor.Encoding.GetBytes("^"));
130
trie.
AddToken
(processor.Encoding.GetBytes("\""));