1 implementation of MinLength
Microsoft.TemplateEngine.Core (1)
Util\TokenTrie.cs (1)
18public int MinLength { get; private set; } = int.MaxValue;
11 references to MinLength
Microsoft.TemplateEngine.Core (11)
Operations\Include.cs (1)
74if (bufferLength - currentBufferPosition < _endTokenMatcher.MinLength)
Operations\InlineMarkupConditional.cs (4)
146while (bufferLength >= _structureTrie.MinLength) 156int sz = bufferLength == processorState.CurrentBuffer.Length ? _structureTrie.MaxLength : _structureTrie.MinLength; 222while (bufferLength >= _closeConditionTrie.MinLength) 234int sz = bufferLength == processorState.CurrentBuffer.Length ? _closeConditionTrie.MaxLength : _closeConditionTrie.MinLength;
Util\ProcessorState.cs (6)
372for (int i = nRead - match.MinLength; i >= 0; --i) 423int i = nRead - match.MinLength; 462while (bufferLength >= match.MinLength) 472int sz = bufferLength == CurrentBuffer.Length ? match.MaxLength : match.MinLength; 500while (bufferLength > trie.MinLength) 502while (currentBufferPosition < bufferLength - trie.MinLength + 1)