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