14 references to Tokenize
Microsoft.AspNetCore.Routing (1)
Matching\DfaMatcher.cs (1)
46var count = FastPathTokenizer.Tokenize(path, buffer);
Microsoft.AspNetCore.Routing.Microbenchmarks (4)
Matching\FastPathTokenizerEmptyBenchmark.cs (1)
29FastPathTokenizer.Tokenize(path, segments);
Matching\FastPathTokenizerLargeBenchmark.cs (1)
33FastPathTokenizer.Tokenize(path, segments);
Matching\FastPathTokenizerPlaintextBenchmark.cs (1)
29FastPathTokenizer.Tokenize(path, segments);
Matching\FastPathTokenizerSmallBenchmark.cs (1)
29FastPathTokenizer.Tokenize(path, segments);
Microsoft.AspNetCore.Routing.Tests (9)
Matching\DfaMatcherTest.cs (1)
571var count = FastPathTokenizer.Tokenize(requestPath, buffer);
Matching\FastPathTokenizerTest.cs (8)
17var count = FastPathTokenizer.Tokenize("", segments); 30var count = FastPathTokenizer.Tokenize("/", segments); 43var count = FastPathTokenizer.Tokenize("/abc", segments); 57var count = FastPathTokenizer.Tokenize("/a/b/c", segments); 73var count = FastPathTokenizer.Tokenize("/a/b/c/", segments); 89var count = FastPathTokenizer.Tokenize("/aaa/bb/ccccc", segments); 105var count = FastPathTokenizer.Tokenize("///c", segments); 121var count = FastPathTokenizer.Tokenize("/a/b/c/d", segments);