Home
last modified time | relevance | path

Searched refs:runtext (Results 1 – 25 of 44) sorted by relevance

12

/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Text.RegularExpressions/tests/
H A DPrecompiledRegexScenarioTest.cs70 string runtext = this.runtext; in Go()
90 if (char.ToLower(runtext[num++]) == '\n') in Go()
115 … while (RegexRunner.CharInClass(char.ToLower(runtext[num - num4--]), "\0\0\u0001\t")) in Go()
123 … if (!RegexRunner.CharInClass(char.ToLower(runtext[num++]), "\0\0\u0001\t")) in Go()
203runtext[num]) != 's' || char.ToLower(runtext[num + 1]) != 'u' || char.ToLower(runtext[num + 2]) !=… in Go()
224 if (char.ToLower(runtext[num++]) == '\n') in Go()
267 string runtext = this.runtext; in FindFirstChar()
274 … if (RegexRunner.CharInClass(char.ToLower(runtext[num++]), "\0\u0003\u0001\0\n\v\t")) in FindFirstChar()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Text.RegularExpressions/src/System/Text/RegularExpressions/
H A DRegexRunner.cs28 protected internal string runtext; // text to search field in System.Text.RegularExpressions.RegexRunner
108 runtext = text; in Scan()
237 Debug.WriteLine("Input: " + runtext); in DoCheckTimeout()
242 …throw new RegexMatchTimeoutException(runtext, runregex.pattern, TimeSpan.FromMilliseconds(_timeout… in DoCheckTimeout()
283 runmatch.Reset(runregex, runtext, runtextbeg, runtextend, runtextstart); in InitMatch()
360 return (index > startpos && RegexCharClass.IsWordChar(runtext[index - 1])) != in IsBoundary()
361 (index < endpos && RegexCharClass.IsWordChar(runtext[index])); in IsBoundary()
366 return (index > startpos && RegexCharClass.IsECMAWordChar(runtext[index - 1])) != in IsECMABoundary()
367 (index < endpos && RegexCharClass.IsECMAWordChar(runtext[index])); in IsECMABoundary()
605 sb.Append(RegexCharClass.CharDescription(runtext[runtextpos - 1])); in TextposDescription()
[all …]
H A DRegexInterpreter.cs251 char ch = (_rightToLeft ? runtext[--runtextpos] : runtext[runtextpos++]); in Forwardcharnext()
279 if (str[--c] != runtext[--pos]) in Stringmatch()
285 if (str[--c] != _culture.TextInfo.ToLower(runtext[--pos])) in Stringmatch()
326 if (runtext[--cmpos] != runtext[--pos]) in Refmatch()
332 … if (_culture.TextInfo.ToLower(runtext[--cmpos]) != _culture.TextInfo.ToLower(runtext[--pos])) in Refmatch()
353 return runtext[j]; in CharAt()
398 return _code._bmPrefix.IsMatch(runtext, runtextpos, runtextbeg, runtextend); in FindFirstChar()
405 runtextpos = _code._bmPrefix.Scan(runtext, runtextpos, runtextbeg, runtextend); in FindFirstChar()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/regex/system/text/regularexpressions/
H A DRegexRunner.cs49 protected internal String runtext; // text to search field in System.Text.RegularExpressions.RegexRunner
135 runtext = text; in Scan()
262 Debug.WriteLine("Input: " + runtext); in DoCheckTimeout()
267 …throw new RegexMatchTimeoutException(runtext, runregex.pattern, TimeSpan.FromMilliseconds(timeout)… in DoCheckTimeout()
304 runmatch.Reset(runregex, runtext, runtextbeg, runtextend, runtextstart); in InitMatch()
374 return (index > startpos && RegexCharClass.IsWordChar(runtext [index - 1])) != in IsBoundary()
375 (index < endpos && RegexCharClass.IsWordChar(runtext [index])); in IsBoundary()
379 return (index > startpos && RegexCharClass.IsECMAWordChar(runtext [index - 1])) != in IsECMABoundary()
380 (index < endpos && RegexCharClass.IsECMAWordChar(runtext [index])); in IsECMABoundary()
592 Sb.Append(RegexCharClass.CharDescription(runtext [runtextpos - 1])); in TextposDescription()
[all …]
H A DRegexInterpreter.cs229 char ch = (runrtl ? runtext[--runtextpos] : runtext[runtextpos++]); in Forwardcharnext()
253 if (str[--c] != runtext[--pos]) in Stringmatch()
258 if (str[--c] != Char.ToLower(runtext[--pos], runculture)) in Stringmatch()
294 if (runtext[--cmpos] != runtext[--pos]) in Refmatch()
299 … if (Char.ToLower(runtext[--cmpos], runculture) != Char.ToLower(runtext[--pos], runculture)) in Refmatch()
317 return runtext[j]; in CharAt()
356 return runbmPrefix.IsMatch(runtext, runtextpos, runtextbeg, runtextend); in FindFirstChar()
362 runtextpos = runbmPrefix.Scan(runtext, runtextpos, runtextbeg, runtextend); in FindFirstChar()
/dports/misc/cheat/cheat-4.2.2/vendor/github.com/dlclark/regexp2/
H A Drunner.go22 runtext []rune // text to search member
108 r.runtext = rt
1152 ch = r.runtext[r.runtextpos]
1154 ch = r.runtext[r.runtextpos]
1186 if str[c] != r.runtext[pos] {
1194 if str[c] != unicode.ToLower(r.runtext[pos]) {
1234 if r.runtext[cmpos] != r.runtext[pos] {
1245 if unicode.ToLower(r.runtext[cmpos]) != unicode.ToLower(r.runtext[pos]) {
1269 return r.runtext[j]
1357 r.runmatch.reset(r.runtext, r.runtextstart)
[all …]
/dports/misc/cheat/cheat-4.2.2/vendor/github.com/dlclark/regexp2/regexp2-1.4.0/
H A Drunner.go22 runtext []rune // text to search member
108 r.runtext = rt
1152 ch = r.runtext[r.runtextpos]
1154 ch = r.runtext[r.runtextpos]
1186 if str[c] != r.runtext[pos] {
1194 if str[c] != unicode.ToLower(r.runtext[pos]) {
1234 if r.runtext[cmpos] != r.runtext[pos] {
1245 if unicode.ToLower(r.runtext[cmpos]) != unicode.ToLower(r.runtext[pos]) {
1269 return r.runtext[j]
1357 r.runmatch.reset(r.runtext, r.runtextstart)
[all …]
/dports/devel/gh/cli-2.4.0/vendor/github.com/dlclark/regexp2/
H A Drunner.go22 runtext []rune // text to search member
108 r.runtext = rt
1139 ch = r.runtext[r.runtextpos]
1141 ch = r.runtext[r.runtextpos]
1173 if str[c] != r.runtext[pos] {
1181 if str[c] != unicode.ToLower(r.runtext[pos]) {
1221 if r.runtext[cmpos] != r.runtext[pos] {
1232 if unicode.ToLower(r.runtext[cmpos]) != unicode.ToLower(r.runtext[pos]) {
1256 return r.runtext[j]
1344 r.runmatch.reset(r.runtext, r.runtextstart)
[all …]
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/workhorse/vendor/github.com/dlclark/regexp2/
H A Drunner.go22 runtext []rune // text to search member
108 r.runtext = rt
1139 ch = r.runtext[r.runtextpos]
1141 ch = r.runtext[r.runtextpos]
1173 if str[c] != r.runtext[pos] {
1181 if str[c] != unicode.ToLower(r.runtext[pos]) {
1221 if r.runtext[cmpos] != r.runtext[pos] {
1232 if unicode.ToLower(r.runtext[cmpos]) != unicode.ToLower(r.runtext[pos]) {
1256 return r.runtext[j]
1344 r.runmatch.reset(r.runtext, r.runtextstart)
[all …]
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/dlclark/regexp2/
H A Drunner.go22 runtext []rune // text to search member
108 r.runtext = rt
1152 ch = r.runtext[r.runtextpos]
1154 ch = r.runtext[r.runtextpos]
1186 if str[c] != r.runtext[pos] {
1194 if str[c] != unicode.ToLower(r.runtext[pos]) {
1234 if r.runtext[cmpos] != r.runtext[pos] {
1245 if unicode.ToLower(r.runtext[cmpos]) != unicode.ToLower(r.runtext[pos]) {
1269 return r.runtext[j]
1357 r.runmatch.reset(r.runtext, r.runtextstart)
[all …]
/dports/www/gitea/gitea-1.16.5/vendor/github.com/dlclark/regexp2/
H A Drunner.go22 runtext []rune // text to search member
108 r.runtext = rt
1152 ch = r.runtext[r.runtextpos]
1154 ch = r.runtext[r.runtextpos]
1186 if str[c] != r.runtext[pos] {
1194 if str[c] != unicode.ToLower(r.runtext[pos]) {
1234 if r.runtext[cmpos] != r.runtext[pos] {
1245 if unicode.ToLower(r.runtext[cmpos]) != unicode.ToLower(r.runtext[pos]) {
1269 return r.runtext[j]
1357 r.runmatch.reset(r.runtext, r.runtextstart)
[all …]
/dports/sysutils/chezmoi/chezmoi-2.9.3/vendor/github.com/dlclark/regexp2/
H A Drunner.go22 runtext []rune // text to search member
108 r.runtext = rt
1152 ch = r.runtext[r.runtextpos]
1154 ch = r.runtext[r.runtextpos]
1186 if str[c] != r.runtext[pos] {
1194 if str[c] != unicode.ToLower(r.runtext[pos]) {
1234 if r.runtext[cmpos] != r.runtext[pos] {
1245 if unicode.ToLower(r.runtext[cmpos]) != unicode.ToLower(r.runtext[pos]) {
1269 return r.runtext[j]
1357 r.runmatch.reset(r.runtext, r.runtextstart)
[all …]
/dports/databases/cayley/cayley-0.7.5-2-gcf576ba/vendor/github.com/dlclark/regexp2/
H A Drunner.go22 runtext []rune // text to search member
108 r.runtext = rt
1139 ch = r.runtext[r.runtextpos]
1141 ch = r.runtext[r.runtextpos]
1173 if str[c] != r.runtext[pos] {
1181 if str[c] != unicode.ToLower(r.runtext[pos]) {
1221 if r.runtext[cmpos] != r.runtext[pos] {
1232 if unicode.ToLower(r.runtext[cmpos]) != unicode.ToLower(r.runtext[pos]) {
1256 return r.runtext[j]
1344 r.runmatch.reset(r.runtext, r.runtextstart)
[all …]
/dports/www/gohugo/hugo-0.91.2/vendor/github.com/dlclark/regexp2/
H A Drunner.go22 runtext []rune // text to search member
108 r.runtext = rt
1152 ch = r.runtext[r.runtextpos]
1154 ch = r.runtext[r.runtextpos]
1186 if str[c] != r.runtext[pos] {
1194 if str[c] != unicode.ToLower(r.runtext[pos]) {
1234 if r.runtext[cmpos] != r.runtext[pos] {
1245 if unicode.ToLower(r.runtext[cmpos]) != unicode.ToLower(r.runtext[pos]) {
1269 return r.runtext[j]
1357 r.runmatch.reset(r.runtext, r.runtextstart)
[all …]
/dports/net-p2p/go-ethereum/go-ethereum-1.10.14/vendor/github.com/dlclark/regexp2/
H A Drunner.go22 runtext []rune // text to search member
108 r.runtext = rt
1152 ch = r.runtext[r.runtextpos]
1154 ch = r.runtext[r.runtextpos]
1186 if str[c] != r.runtext[pos] {
1194 if str[c] != unicode.ToLower(r.runtext[pos]) {
1234 if r.runtext[cmpos] != r.runtext[pos] {
1245 if unicode.ToLower(r.runtext[cmpos]) != unicode.ToLower(r.runtext[pos]) {
1269 return r.runtext[j]
1357 r.runmatch.reset(r.runtext, r.runtextstart)
[all …]
/dports/devel/chroma/chroma-0.9.2/vendor/github.com/dlclark/regexp2/
H A Drunner.go22 runtext []rune // text to search member
108 r.runtext = rt
1152 ch = r.runtext[r.runtextpos]
1154 ch = r.runtext[r.runtextpos]
1186 if str[c] != r.runtext[pos] {
1194 if str[c] != unicode.ToLower(r.runtext[pos]) {
1234 if r.runtext[cmpos] != r.runtext[pos] {
1245 if unicode.ToLower(r.runtext[cmpos]) != unicode.ToLower(r.runtext[pos]) {
1269 return r.runtext[j]
1357 r.runmatch.reset(r.runtext, r.runtextstart)
[all …]
/dports/sysutils/glow/glow-0.2.0/vendor/github.com/dlclark/regexp2/
H A Drunner.go22 runtext []rune // text to search member
108 r.runtext = rt
1139 ch = r.runtext[r.runtextpos]
1141 ch = r.runtext[r.runtextpos]
1173 if str[c] != r.runtext[pos] {
1181 if str[c] != unicode.ToLower(r.runtext[pos]) {
1221 if r.runtext[cmpos] != r.runtext[pos] {
1232 if unicode.ToLower(r.runtext[cmpos]) != unicode.ToLower(r.runtext[pos]) {
1256 return r.runtext[j]
1344 r.runmatch.reset(r.runtext, r.runtextstart)
[all …]
/dports/sysutils/go-wtf/wtf-0.21.0/vendor/github.com/dlclark/regexp2/
H A Drunner.go22 runtext []rune // text to search member
108 r.runtext = rt
1139 ch = r.runtext[r.runtextpos]
1141 ch = r.runtext[r.runtextpos]
1173 if str[c] != r.runtext[pos] {
1181 if str[c] != unicode.ToLower(r.runtext[pos]) {
1221 if r.runtext[cmpos] != r.runtext[pos] {
1232 if unicode.ToLower(r.runtext[cmpos]) != unicode.ToLower(r.runtext[pos]) {
1256 return r.runtext[j]
1344 r.runmatch.reset(r.runtext, r.runtextstart)
[all …]
/dports/sysutils/go-wtf/wtf-0.21.0/vendor/github.com/dlclark/regexp2/regexp2-1.1.6/
H A Drunner.go22 runtext []rune // text to search
108 r.runtext = rt
1139 ch = r.runtext[r.runtextpos]
1141 ch = r.runtext[r.runtextpos]
1173 if str[c] != r.runtext[pos] {
1181 if str[c] != unicode.ToLower(r.runtext[pos]) {
1221 if r.runtext[cmpos] != r.runtext[pos] {
1232 if unicode.ToLower(r.runtext[cmpos]) != unicode.ToLower(r.runtext[pos]) {
1256 return r.runtext[j]
1344 r.runmatch.reset(r.runtext, r.runtextstart)
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/Test/System.Text.RegularExpressions/
H A DRegexRunnerCas.cs83 Assert.IsNull (runtext, "runtext"); in Test()
84 runtext = "mono"; in Test()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/webgpu-cts/src/src/common/runtime/
H A Dstandalone.ts231 const runtext = isLeaf ? 'Run case' : 'Run subtree'; constant
234 .attr('alt', runtext)
235 .attr('title', runtext)
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Text.RegularExpressions/ref/
H A DSystem.Text.RegularExpressions.cs246 protected internal string runtext; field in System.Text.RegularExpressions.RegexRunner
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/monotouch/
H A DSystem.cs9936 protected internal string runtext; field in System.Text.RegularExpressions.RegexRunner
/dports/lang/mono/mono-5.10.1.57/external/api-snapshot/profiles/monotouch/
H A DSystem.cs10108 protected internal string runtext; field in System.Text.RegularExpressions.RegexRunner
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/monodroid/
H A DSystem.cs9937 protected internal string runtext; field in System.Text.RegularExpressions.RegexRunner

12