Home
last modified time | relevance | path

Searched refs:MakeException (Results 1 – 11 of 11) sorted by relevance

/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Text.RegularExpressions/src/System/Text/RegularExpressions/
H A DRegexParser.cs450 throw MakeException(SR.NotEnoughParens); in ScanRegex()
674 throw MakeException(SR.UnterminatedBracket); in ScanCharClass()
934 throw MakeException(SR.UnrecognizedGrouping); in ScanGroupOpen()
997 throw MakeException(SR.IllegalEndEscape); in ScanBackslash()
1067 throw MakeException(SR.IllegalEndEscape); in ScanBasicBackslash()
1398 throw MakeException(SR.TooFewHex); in ScanHex()
1430 throw MakeException(SR.MissingControl); in ScanControl()
1442 throw MakeException(SR.UnrecognizedControl); in ScanControl()
1544 throw MakeException(SR.IncompleteSlashP); in ParseProperty()
1549 throw MakeException(SR.MalformedSlashP); in ParseProperty()
[all …]
H A DRegexCharClass.cs1157 …throw new ArgumentException(SR.Format(SR.MakeException, pattern, SR.Format(SR.UnknownProperty, cap… in SetFromProperty()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/regex/system/text/regularexpressions/
H A DRegexParser.cs343 throw MakeException(wasPrevQuantifier ? in ParseReplacement()
433 throw MakeException(SR.GetString(SR.NotEnoughParens)); in ParseReplacement()
870 throw MakeException(SR.GetString(SR.UnrecognizedGrouping)); in ParseReplacement()
925 throw MakeException(SR.GetString(SR.IllegalEndEscape)); in ParseReplacement()
993 throw MakeException(SR.GetString(SR.IllegalEndEscape)); in ParseReplacement()
1289 throw MakeException(SR.GetString(SR.TooFewHex)); in ParseReplacement()
1319 throw MakeException(SR.GetString(SR.MissingControl)); in ParseReplacement()
1331 throw MakeException(SR.GetString(SR.UnrecognizedControl)); in ParseReplacement()
1425 throw MakeException(SR.GetString(SR.IncompleteSlashP)); in ParseReplacement()
1429 throw MakeException(SR.GetString(SR.MalformedSlashP)); in ParseReplacement()
[all …]
H A DRegexCode.cs230 …throw MakeException(SR.GetString(SR.UnexpectedOpcode, Opcode.ToString(CultureInfo.CurrentCulture))… in OpcodeSize()
234 internal static ArgumentException MakeException(String message) { in MakeException() method in System.Text.RegularExpressions.RegexCode
H A DRegexWriter.cs187 internal ArgumentException MakeException(String message) { in MakeException() method in System.Text.RegularExpressions.RegexWriter
548 …throw MakeException(SR.GetString(SR.UnexpectedOpcode, nodetype.ToString(CultureInfo.CurrentCulture… in EmitFragment()
H A DRegexCharClass.cs1172 …throw new ArgumentException(SR.GetString(SR.MakeException, pattern, SR.GetString(SR.UnknownPropert… in SetFromProperty()
/dports/lang/mono/mono-5.10.1.57/mono/tests/
H A Dfinalizer-exception.cs16 public static unsafe void MakeException (int depth) { in MakeException() method in FinalizerException
25 MakeException (depth - 1); in MakeException()
34 var t = new Thread (delegate () { MakeException (1024); }); in Main()
/dports/devel/estd/estd-0.4.0/include/estd/result/
H A Dresult.hpp203 template<typename MakeException>
204 void ensure_value(MakeException && make_exception) const { in ensure_value()
205 if (!*this) throw std::forward<MakeException>(make_exception)(data_.as_error()); in ensure_value()
255 template<typename MakeException>
256 …void value(MakeException && make_exception) const { ensure_value(std::forward<MakeException>(make_… in value()
307 template<typename MakeException>
308 void ensure_value(MakeException && make_exception) const { in ensure_value()
309 if (!*this) throw std::forward<MakeException>(make_exception)(error_->access()); in ensure_value()
/dports/biology/ncbi-cxx-toolkit/ncbi_cxx--25_2_0/include/dbapi/driver/
H A Dexception.hpp259 NCBI_NORETURN static void MakeException(const CDiagCompileInfo& info, in MakeException() function in CDB_Exception
717 NCBI_NS_NCBI::CDB_Exception::MakeException<exception_class>( \
/dports/biology/ncbi-blast+/ncbi-blast-2.12.0+-src/c++/include/dbapi/driver/
H A Dexception.hpp259 NCBI_NORETURN static void MakeException(const CDiagCompileInfo& info, in MakeException() function in CDB_Exception
717 NCBI_NS_NCBI::CDB_Exception::MakeException<exception_class>( \
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/ReferenceSources/
H A DSR.cs224 public const string MakeException = "parsing \"{0}\" - {1}"; field in SR