1 implementation of MaxLength
Microsoft.TemplateEngine.Core (1)
Util\TokenTrie.cs (1)
16
public int
MaxLength
{ get; private set; }
9 references to MaxLength
Microsoft.TemplateEngine.Core (9)
Expressions\ScopeBuilder.cs (1)
91
int targetLen = Math.Min(bufferLength, _tokens.
MaxLength
);
Operations\InlineMarkupConditional.cs (4)
149
if (bufferLength - currentBufferPosition < _structureTrie.
MaxLength
)
156
int sz = bufferLength == processorState.CurrentBuffer.Length ? _structureTrie.
MaxLength
: _structureTrie.MinLength;
225
if (bufferLength - currentBufferPosition < _closeConditionTrie.
MaxLength
)
234
int sz = bufferLength == processorState.CurrentBuffer.Length ? _closeConditionTrie.
MaxLength
: _closeConditionTrie.MinLength;
Util\ProcessorState.cs (4)
356
byte[] buffer = new byte[match.
MaxLength
];
408
byte[] buffer = new byte[match.
MaxLength
];
465
if (bufferLength - currentBufferPosition < match.
MaxLength
)
472
int sz = bufferLength == CurrentBuffer.Length ? match.
MaxLength
: match.MinLength;