Home
last modified time | relevance | path

Searched refs:matchTimeout (Results 1 – 25 of 31) sorted by relevance

12

/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/regex/system/text/regularexpressions/
H A DRegexCompilationInfo.cs29 private TimeSpan matchTimeout; field in System.Text.RegularExpressions.RegexCompilationInfo
33 matchTimeout = Regex.DefaultMatchTimeout; in InitMatchTimeoutDefaultForOldVersionDeserialization()
45 …n, RegexOptions options, String name, String fullnamespace, bool ispublic, TimeSpan matchTimeout) { in RegexCompilationInfo() argument
51 MatchTimeout = matchTimeout; in RegexCompilationInfo()
123 get { return matchTimeout; }
124 set { Regex.ValidateMatchTimeout(value); matchTimeout = value; }
H A DRegexMatchTimeoutException.cs38 private TimeSpan matchTimeout = TimeSpan.FromTicks(-1); field in System.Text.RegularExpressions.RegexMatchTimeoutException
48 … public RegexMatchTimeoutException(string regexInput, string regexPattern, TimeSpan matchTimeout) : in RegexMatchTimeoutException() argument
50 Init(regexInput, regexPattern, matchTimeout); in RegexMatchTimeoutException()
111 si.AddValue("timeoutTicks", this.matchTimeout.Ticks); in ISerializable.GetObjectData()
122 this.matchTimeout = timeout; in Init()
161 get { return matchTimeout; }
H A DRegex.cs198 Regex(String pattern, RegexOptions options, TimeSpan matchTimeout) in Regex() argument
199 : this(pattern, options, matchTimeout, false) { in Regex()
225 ValidateMatchTimeout(matchTimeout); in Regex()
240 this.internalMatchTimeout = matchTimeout; in Regex()
327 static void ValidateMatchTimeout(TimeSpan matchTimeout) { in ValidateMatchTimeout() argument
329 if (InfiniteMatchTimeout == matchTimeout) in ValidateMatchTimeout()
333 if (TimeSpan.Zero < matchTimeout && matchTimeout <= MaximumMatchTimeout) in ValidateMatchTimeout()
772 return new Regex(pattern, options, matchTimeout, true).IsMatch(input); in IsMatch()
846 return new Regex(pattern, options, matchTimeout, true).Match(input); in Match()
932 return new Regex(pattern, options, matchTimeout, true).Matches(input); in Matches()
[all …]
H A DRegexCompiler.cs3164 … String name, bool ispublic, RegexCode code, RegexTree tree, Type factory, TimeSpan matchTimeout) { in GenerateRegexType() argument
3200 LdcI8(matchTimeout.Ticks); in GenerateRegexType()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Text.RegularExpressions/tests/
H A DRegexCompilationInfoTests.cs25 …ern, RegexOptions options, string name, string fullnamespace, bool ispublic, TimeSpan matchTimeout) in Ctor_ValidArguments_CheckProperties() argument
27 …tionInfo = new RegexCompilationInfo(pattern, options, name, fullnamespace, ispublic, matchTimeout); in Ctor_ValidArguments_CheckProperties()
33 Assert.Equal(matchTimeout, regexCompilationInfo.MatchTimeout); in Ctor_ValidArguments_CheckProperties()
61 public void MatchTimeout_GetSet_Throws(TimeSpan matchTimeout) in MatchTimeout_GetSet_Throws() argument
65 regexCompilationInfo.MatchTimeout = matchTimeout); in MatchTimeout_GetSet_Throws()
70 public void MatchTimeout_GetSet_Success(TimeSpan matchTimeout) in MatchTimeout_GetSet_Success() argument
73 regexCompilationInfo.MatchTimeout = matchTimeout; in MatchTimeout_GetSet_Success()
74 Assert.Equal(matchTimeout, regexCompilationInfo.MatchTimeout); in MatchTimeout_GetSet_Success()
H A DRegex.Ctor.Tests.cs28 public static void Ctor(string pattern, RegexOptions options, TimeSpan matchTimeout) in Ctor() argument
30 if (matchTimeout == Timeout.InfiniteTimeSpan) in Ctor()
38 Assert.Equal(matchTimeout, regex1.MatchTimeout); in Ctor()
44 Assert.Equal(matchTimeout, regex2.MatchTimeout); in Ctor()
46 Regex regex3 = new Regex(pattern, options, matchTimeout); in Ctor()
50 Assert.Equal(matchTimeout, regex3.MatchTimeout); in Ctor()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Text.RegularExpressions/src/System/Text/RegularExpressions/
H A DRegex.cs142 public Regex(string pattern, RegexOptions options, TimeSpan matchTimeout) in Regex() argument
143 : this(pattern, options, matchTimeout, false) in Regex()
184 ValidateMatchTimeout(matchTimeout); in Regex()
198 internalMatchTimeout = matchTimeout; in Regex()
257 protected internal static void ValidateMatchTimeout(TimeSpan matchTimeout) in ValidateMatchTimeout() argument
259 if (InfiniteMatchTimeout == matchTimeout) in ValidateMatchTimeout()
263 if (TimeSpan.Zero < matchTimeout && matchTimeout <= MaximumMatchTimeout) in ValidateMatchTimeout()
266 throw new ArgumentOutOfRangeException(nameof(matchTimeout)); in ValidateMatchTimeout()
588 return new Regex(pattern, options, matchTimeout, true).IsMatch(input); in IsMatch()
650 return new Regex(pattern, options, matchTimeout, true).Match(input); in Match()
[all …]
H A DRegexMatchTimeoutException.cs24 … public RegexMatchTimeoutException(string regexInput, string regexPattern, TimeSpan matchTimeout) in RegexMatchTimeoutException() argument
29 MatchTimeout = matchTimeout; in RegexMatchTimeoutException()
H A DRegexCompilationInfo.cs19 …ern, RegexOptions options, string name, string fullnamespace, bool ispublic, TimeSpan matchTimeout) in RegexCompilationInfo() argument
26 MatchTimeout = matchTimeout; in RegexCompilationInfo()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Text.RegularExpressions/ref/
H A DSystem.Text.RegularExpressions.cs145 …ing pattern, System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { } in Regex() argument
164 … System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { throw null; } in IsMatch() argument
170 … System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { throw null; } in Match() argument
175 … System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { throw null; } in Matches() argument
181 … System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { throw null; } in Replace() argument
184 … System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { throw null; } in Replace() argument
193 … System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { throw null; } in Split() argument
199 protected internal static void ValidateMatchTimeout(System.TimeSpan matchTimeout) { } in ValidateMatchTimeout() argument
204 … RegexOptions options, string name, string fullnamespace, bool ispublic, TimeSpan matchTimeout) { } in RegexCompilationInfo() argument
218 …egexMatchTimeoutException(string regexInput, string regexPattern, System.TimeSpan matchTimeout) { } in RegexMatchTimeoutException() argument
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.ComponentModel.DataAnnotations/DataAnnotations/
H A DEmailAddressAttribute.cs59 TimeSpan matchTimeout = TimeSpan.FromSeconds(2); in CreateRegEx()
63 return new Regex(pattern, options, matchTimeout); in CreateRegEx()
H A DUrlAttribute.cs52 TimeSpan matchTimeout = TimeSpan.FromSeconds(2); in CreateRegEx()
56 return new Regex(pattern, options, matchTimeout); in CreateRegEx()
H A DPhoneAttribute.cs74 TimeSpan matchTimeout = TimeSpan.FromSeconds(2); in CreateRegEx()
78 return new Regex(pattern, options, matchTimeout); in CreateRegEx()
/dports/devel/grpc130/grpc-1.30.2/src/csharp/Grpc.Tools/
H A DProtoCompile.cs141 matchTimeout: s_regexTimeout),
167 matchTimeout: s_regexTimeout),
193 matchTimeout: s_regexTimeout),
216 matchTimeout: s_regexTimeout),
/dports/devel/grpc134/grpc-1.34.1/src/csharp/Grpc.Tools/
H A DProtoCompile.cs141 matchTimeout: s_regexTimeout),
167 matchTimeout: s_regexTimeout),
193 matchTimeout: s_regexTimeout),
216 matchTimeout: s_regexTimeout),
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/grpc/src/src/csharp/Grpc.Tools/
H A DProtoCompile.cs141 matchTimeout: s_regexTimeout),
167 matchTimeout: s_regexTimeout),
193 matchTimeout: s_regexTimeout),
216 matchTimeout: s_regexTimeout),
/dports/devel/grpc/grpc-1.42.0/src/csharp/Grpc.Tools/
H A DProtoCompile.cs141 matchTimeout: s_regexTimeout),
167 matchTimeout: s_regexTimeout),
193 matchTimeout: s_regexTimeout),
216 matchTimeout: s_regexTimeout),
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/monotouch/
H A DSystem.cs9830 …ing pattern, System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { } in Regex() argument
9849 … System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { throw null; } in IsMatch() argument
9855 … System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { throw null; } in Match() argument
9860 … System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { throw null; } in Matches() argument
9866 … System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { throw null; } in Replace() argument
9869 … System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { throw null; } in Replace() argument
9878 … System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { throw null; } in Split() argument
9884 protected internal static void ValidateMatchTimeout(System.TimeSpan matchTimeout) { } in ValidateMatchTimeout() argument
9890 …ptions options, string name, string fullnamespace, bool ispublic, System.TimeSpan matchTimeout) { } in RegexCompilationInfo() argument
9906 …egexMatchTimeoutException(string regexInput, string regexPattern, System.TimeSpan matchTimeout) { } in RegexMatchTimeoutException() argument
/dports/lang/mono/mono-5.10.1.57/external/api-snapshot/profiles/monotouch/
H A DSystem.cs10002 …ing pattern, System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { } in Regex() argument
10021 … System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { throw null; } in IsMatch() argument
10027 … System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { throw null; } in Match() argument
10032 … System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { throw null; } in Matches() argument
10038 … System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { throw null; } in Replace() argument
10041 … System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { throw null; } in Replace() argument
10050 … System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { throw null; } in Split() argument
10056 protected internal static void ValidateMatchTimeout(System.TimeSpan matchTimeout) { } in ValidateMatchTimeout() argument
10062 …ptions options, string name, string fullnamespace, bool ispublic, System.TimeSpan matchTimeout) { } in RegexCompilationInfo() argument
10078 …egexMatchTimeoutException(string regexInput, string regexPattern, System.TimeSpan matchTimeout) { } in RegexMatchTimeoutException() argument
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/monodroid/
H A DSystem.cs9828 …ing pattern, System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { } in Regex() argument
9850 … System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { throw null; } in IsMatch() argument
9856 … System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { throw null; } in Match() argument
9861 … System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { throw null; } in Matches() argument
9867 … System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { throw null; } in Replace() argument
9870 … System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { throw null; } in Replace() argument
9879 … System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { throw null; } in Split() argument
9885 protected internal static void ValidateMatchTimeout(System.TimeSpan matchTimeout) { } in ValidateMatchTimeout() argument
9891 …ptions options, string name, string fullnamespace, bool ispublic, System.TimeSpan matchTimeout) { } in RegexCompilationInfo() argument
9907 …egexMatchTimeoutException(string regexInput, string regexPattern, System.TimeSpan matchTimeout) { } in RegexMatchTimeoutException() argument
/dports/lang/mono/mono-5.10.1.57/external/api-snapshot/profiles/monodroid/
H A DSystem.cs9998 …ing pattern, System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { } in Regex() argument
10020 … System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { throw null; } in IsMatch() argument
10026 … System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { throw null; } in Match() argument
10031 … System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { throw null; } in Matches() argument
10037 … System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { throw null; } in Replace() argument
10040 … System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { throw null; } in Replace() argument
10049 … System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { throw null; } in Split() argument
10055 protected internal static void ValidateMatchTimeout(System.TimeSpan matchTimeout) { } in ValidateMatchTimeout() argument
10061 …ptions options, string name, string fullnamespace, bool ispublic, System.TimeSpan matchTimeout) { } in RegexCompilationInfo() argument
10077 …egexMatchTimeoutException(string regexInput, string regexPattern, System.TimeSpan matchTimeout) { } in RegexMatchTimeoutException() argument
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.5.2/
H A DSystem.cs13206 …ing pattern, System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { } in Regex() argument
13224 … System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { throw null; } in IsMatch() argument
13230 … System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { throw null; } in Match() argument
13235 … System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { throw null; } in Matches() argument
13241 … System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { throw null; } in Replace() argument
13244 … System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { throw null; } in Replace() argument
13253 … System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { throw null; } in Split() argument
13259 protected internal static void ValidateMatchTimeout(System.TimeSpan matchTimeout) { } in ValidateMatchTimeout() argument
13265 …ptions options, string name, string fullnamespace, bool ispublic, System.TimeSpan matchTimeout) { } in RegexCompilationInfo() argument
13281 …egexMatchTimeoutException(string regexInput, string regexPattern, System.TimeSpan matchTimeout) { } in RegexMatchTimeoutException() argument
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.6.1/
H A DSystem.cs13257 …ing pattern, System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { } in Regex() argument
13275 … System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { throw null; } in IsMatch() argument
13281 … System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { throw null; } in Match() argument
13286 … System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { throw null; } in Matches() argument
13292 … System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { throw null; } in Replace() argument
13295 … System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { throw null; } in Replace() argument
13304 … System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { throw null; } in Split() argument
13310 protected internal static void ValidateMatchTimeout(System.TimeSpan matchTimeout) { } in ValidateMatchTimeout() argument
13316 …ptions options, string name, string fullnamespace, bool ispublic, System.TimeSpan matchTimeout) { } in RegexCompilationInfo() argument
13332 …egexMatchTimeoutException(string regexInput, string regexPattern, System.TimeSpan matchTimeout) { } in RegexMatchTimeoutException() argument
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.6/
H A DSystem.cs13241 …ing pattern, System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { } in Regex() argument
13259 … System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { throw null; } in IsMatch() argument
13265 … System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { throw null; } in Match() argument
13270 … System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { throw null; } in Matches() argument
13276 … System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { throw null; } in Replace() argument
13279 … System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { throw null; } in Replace() argument
13288 … System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { throw null; } in Split() argument
13294 protected internal static void ValidateMatchTimeout(System.TimeSpan matchTimeout) { } in ValidateMatchTimeout() argument
13300 …ptions options, string name, string fullnamespace, bool ispublic, System.TimeSpan matchTimeout) { } in RegexCompilationInfo() argument
13316 …egexMatchTimeoutException(string regexInput, string regexPattern, System.TimeSpan matchTimeout) { } in RegexMatchTimeoutException() argument
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.5.1/
H A DSystem.cs13206 …ing pattern, System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { } in Regex() argument
13224 … System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { throw null; } in IsMatch() argument
13230 … System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { throw null; } in Match() argument
13235 … System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { throw null; } in Matches() argument
13241 … System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { throw null; } in Replace() argument
13244 … System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { throw null; } in Replace() argument
13253 … System.Text.RegularExpressions.RegexOptions options, System.TimeSpan matchTimeout) { throw null; } in Split() argument
13259 protected internal static void ValidateMatchTimeout(System.TimeSpan matchTimeout) { } in ValidateMatchTimeout() argument
13265 …ptions options, string name, string fullnamespace, bool ispublic, System.TimeSpan matchTimeout) { } in RegexCompilationInfo() argument
13281 …egexMatchTimeoutException(string regexInput, string regexPattern, System.TimeSpan matchTimeout) { } in RegexMatchTimeoutException() argument

12