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