Home
last modified time | relevance | path

Searched refs:CompilerError (Results 1 – 25 of 587) sorted by relevance

12345678910>>...24

/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.CodeDom/tests/CodeCollections/
H A DCompilerErrorCollectionTests.cs13 …class CompilerErrorCollectionTests : CodeCollectionTestBase<CompilerErrorCollection, CompilerError>
21 …public override CompilerError GetItem(CompilerErrorCollection collection, int index) => collection… in GetItem()
27 …public override object Add(CompilerErrorCollection collection, CompilerError obj) => collection.Ad… in Add()
49 collection.Add(new CompilerError() { IsWarning = false }); in HasWarnings_OnlyErrors_ReturnsFalse()
57 collection.Add(new CompilerError() { IsWarning = true }); in HasWarnings_OnlyWarnings_ReturnsTrue()
65 collection.Add(new CompilerError() { IsWarning = false }); in HasWarnings_WarningsAndErrors_ReturnsTrue()
66 collection.Add(new CompilerError() { IsWarning = true }); in HasWarnings_WarningsAndErrors_ReturnsTrue()
81 collection.Add(new CompilerError() { IsWarning = false }); in HasErrors_OnlyErrors_ReturnsTrue()
89 collection.Add(new CompilerError() { IsWarning = true }); in HasErrors_OnlyWarnings_ReturnsFalse()
97 collection.Add(new CompilerError() { IsWarning = false }); in HasErrors_WarningsAndErrors_ReturnsTrue()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.CodeDom/src/System/CodeDom/Compiler/
H A DCompilerErrorCollection.cs19 public CompilerErrorCollection(CompilerError[] value) in CompilerErrorCollection()
24 public CompilerError this[int index]
26 get { return (CompilerError)List[index]; }
30 public int Add(CompilerError value) => List.Add(value);
32 public void AddRange(CompilerError[] value) in AddRange()
59 public bool Contains(CompilerError value) => List.Contains(value);
69 foreach (CompilerError e in this)
87 foreach (CompilerError e in this)
99 public int IndexOf(CompilerError value) => List.IndexOf(value);
101 public void Insert(int index, CompilerError value) => List.Insert(index, value); in Insert()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/compmod/system/codedom/compiler/
H A DCompilerErrorCollection.cs46 public CompilerErrorCollection(CompilerError[] value) { in CompilerErrorCollection()
53 public CompilerError this[int index] {
55 return ((CompilerError)(List[index]));
66 public int Add(CompilerError value) { in Add()
73 public void AddRange(CompilerError[] value) { in AddRange()
101 public bool Contains(CompilerError value) { in Contains()
122 foreach (CompilerError e in this) {
141 foreach (CompilerError e in this) {
155 public int IndexOf(CompilerError value) { in IndexOf()
162 public void Insert(int index, CompilerError value) { in Insert()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Activities/System/Activities/ExpressionParser/
H A DSourceExpressionException.cs18 CompilerError[] errors;
21 : base(SR.CompilerError) in SourceExpressionException()
38 this.errors = new CompilerError[errors.Count]; in SourceExpressionException()
50 this.errors = new CompilerError[length]; in SourceExpressionException()
59 this.errors[i] = new CompilerError(fileName, line, column, errorNumber, errorText); in SourceExpressionException()
63 public IEnumerable<CompilerError> Errors
69 this.errors = new CompilerError[0];
92 CompilerError error = this.errors[i]; in GetObjectData()
/dports/lang/solidity/solidity_0.8.11/libsolidity/interface/
H A DCompilerStack.cpp214 solThrow(CompilerError, "Must set viaIR before parsing."); in setViaIR()
644 solThrow(CompilerError, "Called compile with errors."); in compile()
716 solThrow(CompilerError, "Parsing was not successful."); in contractNames()
726 solThrow(CompilerError, "Parsing was not successful."); in lastContractName()
830 solThrow(CompilerError, "No compiled contracts found."); in filesystemFriendlyName()
947 solThrow(CompilerError, "Analysis was not successful."); in contractABI()
955 solThrow(CompilerError, "Analysis was not successful."); in contractABI()
1048 solThrow(CompilerError, "No sources set."); in charStream()
1058 solThrow(CompilerError, "Parsing not yet performed."); in ast()
1060 solThrow(CompilerError, "Parsing was not successful."); in ast()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Private.Xml/src/System/Xml/Xsl/Xslt/
H A DCompilerError.cs10 internal class CompilerError class
12 … public CompilerError(string fileName, int line, int column, string errorNumber, string errorText) in CompilerError() method in System.Xml.Xsl.Xslt.CompilerError
39 public int Add(CompilerError value) => List.Add(value);
41 public void AddRange(CompilerError[] value) in AddRange()
54 public void CopyTo(CompilerError[] array, int index) => List.CopyTo(array, index); in CopyTo()
/dports/devel/py-zope.tales/zope.tales-3.5.2/src/zope/tales/tests/
H A Dtest_expressions.py111 from zope.tales.tales import CompilerError
114 except CompilerError,e:
140 CompilerError = self.engine.getCompilerError()
141 self.assertRaises(CompilerError,
153 self.assertRaises(CompilerError,
308 from zope.tales.tales import CompilerError
311 except CompilerError,e:
318 from zope.tales.tales import CompilerError
319 self.assertRaises(CompilerError,
337 from zope.tales.tales import CompilerError
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/Cscompmgd/Microsoft.CSharp/
H A DCompiler.cs47 public static CompilerError[] Compile(string[] sourceTexts, in Compile()
54 CompilerError[] errors; in Compile()
87 private static CompilerError[] CompileFiles (string[] cs_files, in CompileFiles()
115 CompilerError error = CreateErrorFromString (error_line); in CompileFiles()
125 return (CompilerError[])error_list.ToArray (typeof(CompilerError)); in CompileFiles()
132 private static CompilerError CreateErrorFromString(string error_string) in CreateErrorFromString()
134 CompilerError error = new CompilerError(); in CreateErrorFromString()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/Test/System.CodeDom.Compiler/
H A DCompilerErrorCas.cs65 CompilerError ce = new CompilerError (); in Constructor0_Deny_Unrestricted()
85 CompilerError ce = new CompilerError (fname, 1, 1, "cs0000", "error text"); in Constructor5_Deny_Unrestricted()
105 ConstructorInfo ci = typeof (CompilerError).GetConstructor (new Type [0]); in LinkDemand_Deny_Unrestricted()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/jdk.rmic/share/classes/sun/tools/java/
H A DMemberDefinition.java234 throw new CompilerError("getExceptions "+this); in getExceptions()
303 throw new CompilerError("accessPeer"); in setAccessMethodTarget()
327 throw new CompilerError("accessPeer"); in setAccessUpdateMember()
416 throw new CompilerError("code"); in code()
419 throw new CompilerError("codeInit"); in codeInit()
486 throw new CompilerError("getAccessLevel()"); in getAccessLevel()
525 throw new CompilerError("sameReturnType: not method"); in sameReturnType()
567 throw new CompilerError("checkOverride(), expected method"); in checkOverride()
693 throw new CompilerError("checkMeet(), expected method"); in checkMeet()
698 throw new CompilerError("checkMeet(), no abstract method"); in checkMeet()
[all …]
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/jdk.rmic/share/classes/sun/tools/java/
H A DMemberDefinition.java234 throw new CompilerError("getExceptions "+this); in getExceptions()
303 throw new CompilerError("accessPeer"); in setAccessMethodTarget()
327 throw new CompilerError("accessPeer"); in setAccessUpdateMember()
416 throw new CompilerError("code"); in code()
419 throw new CompilerError("codeInit"); in codeInit()
486 throw new CompilerError("getAccessLevel()"); in getAccessLevel()
525 throw new CompilerError("sameReturnType: not method"); in sameReturnType()
567 throw new CompilerError("checkOverride(), expected method"); in checkOverride()
693 throw new CompilerError("checkMeet(), expected method"); in checkMeet()
698 throw new CompilerError("checkMeet(), no abstract method"); in checkMeet()
[all …]
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jdk/src/share/classes/sun/tools/java/
H A DMemberDefinition.java233 throw new CompilerError("getExceptions "+this); in getExceptions()
302 throw new CompilerError("accessPeer"); in setAccessMethodTarget()
326 throw new CompilerError("accessPeer"); in setAccessUpdateMember()
415 throw new CompilerError("code"); in code()
418 throw new CompilerError("codeInit"); in codeInit()
485 throw new CompilerError("getAccessLevel()"); in getAccessLevel()
524 throw new CompilerError("sameReturnType: not method"); in sameReturnType()
566 throw new CompilerError("checkOverride(), expected method"); in checkOverride()
692 throw new CompilerError("checkMeet(), expected method"); in checkMeet()
697 throw new CompilerError("checkMeet(), no abstract method"); in checkMeet()
[all …]
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/jdk.rmic/share/classes/sun/tools/java/
H A DMemberDefinition.java234 throw new CompilerError("getExceptions "+this); in getExceptions()
303 throw new CompilerError("accessPeer"); in setAccessMethodTarget()
327 throw new CompilerError("accessPeer"); in setAccessUpdateMember()
416 throw new CompilerError("code"); in code()
419 throw new CompilerError("codeInit"); in codeInit()
486 throw new CompilerError("getAccessLevel()"); in getAccessLevel()
525 throw new CompilerError("sameReturnType: not method"); in sameReturnType()
567 throw new CompilerError("checkOverride(), expected method"); in checkOverride()
693 throw new CompilerError("checkMeet(), expected method"); in checkMeet()
698 throw new CompilerError("checkMeet(), no abstract method"); in checkMeet()
[all …]
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/jdk.rmic/share/classes/sun/tools/java/
H A DMemberDefinition.java234 throw new CompilerError("getExceptions "+this); in getExceptions()
303 throw new CompilerError("accessPeer"); in setAccessMethodTarget()
327 throw new CompilerError("accessPeer"); in setAccessUpdateMember()
416 throw new CompilerError("code"); in code()
419 throw new CompilerError("codeInit"); in codeInit()
486 throw new CompilerError("getAccessLevel()"); in getAccessLevel()
525 throw new CompilerError("sameReturnType: not method"); in sameReturnType()
567 throw new CompilerError("checkOverride(), expected method"); in checkOverride()
693 throw new CompilerError("checkMeet(), expected method"); in checkMeet()
698 throw new CompilerError("checkMeet(), no abstract method"); in checkMeet()
[all …]
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/jdk.rmic/share/classes/sun/tools/java/
H A DMemberDefinition.java234 throw new CompilerError("getExceptions "+this); in getExceptions()
303 throw new CompilerError("accessPeer"); in setAccessMethodTarget()
327 throw new CompilerError("accessPeer"); in setAccessUpdateMember()
416 throw new CompilerError("code"); in code()
419 throw new CompilerError("codeInit"); in codeInit()
486 throw new CompilerError("getAccessLevel()"); in getAccessLevel()
525 throw new CompilerError("sameReturnType: not method"); in sameReturnType()
567 throw new CompilerError("checkOverride(), expected method"); in checkOverride()
693 throw new CompilerError("checkMeet(), expected method"); in checkMeet()
698 throw new CompilerError("checkMeet(), no abstract method"); in checkMeet()
[all …]
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/jdk/src/share/classes/sun/tools/java/
H A DMemberDefinition.java233 throw new CompilerError("getExceptions "+this); in getExceptions()
302 throw new CompilerError("accessPeer"); in setAccessMethodTarget()
326 throw new CompilerError("accessPeer"); in setAccessUpdateMember()
415 throw new CompilerError("code"); in code()
418 throw new CompilerError("codeInit"); in codeInit()
485 throw new CompilerError("getAccessLevel()"); in getAccessLevel()
524 throw new CompilerError("sameReturnType: not method"); in sameReturnType()
566 throw new CompilerError("checkOverride(), expected method"); in checkOverride()
692 throw new CompilerError("checkMeet(), expected method"); in checkMeet()
697 throw new CompilerError("checkMeet(), no abstract method"); in checkMeet()
[all …]
/dports/net-mgmt/nfs-exporter/freebsd-nfs-exporter-0.3.0/cargo-crates/thiserror-1.0.20/tests/
H A Dtest_expr.rs9 pub enum CompilerError { enum
61 CompilerError::TooManyShiftBits {
68 assert("#error A B C", CompilerError::User(vec!["A", "B", "C"]));
72 CompilerError::IntegerOverflow {
/dports/sysutils/vector/vector-0.10.0/cargo-crates/thiserror-1.0.16/tests/
H A Dtest_expr.rs7 pub enum CompilerError { enum
60 CompilerError::TooManyShiftBits {
67 assert("#error A B C", CompilerError::User(vec!["A", "B", "C"]));
71 CompilerError::IntegerOverflow {
/dports/textproc/sd/sd-0.7.6/cargo-crates/thiserror-1.0.20/tests/
H A Dtest_expr.rs9 pub enum CompilerError { enum
61 CompilerError::TooManyShiftBits {
68 assert("#error A B C", CompilerError::User(vec!["A", "B", "C"]));
72 CompilerError::IntegerOverflow {
/dports/games/abstreet/abstreet-0.2.9-49-g74aca40c0/cargo-crates/thiserror-1.0.14/tests/
H A Dtest_expr.rs7 pub enum CompilerError { enum
60 CompilerError::TooManyShiftBits {
67 assert("#error A B C", CompilerError::User(vec!["A", "B", "C"]));
71 CompilerError::IntegerOverflow {
/dports/devel/gitui/gitui-0.10.1/cargo-crates/thiserror-1.0.20/tests/
H A Dtest_expr.rs9 pub enum CompilerError { enum
61 CompilerError::TooManyShiftBits {
68 assert("#error A B C", CompilerError::User(vec!["A", "B", "C"]));
72 CompilerError::IntegerOverflow {
/dports/security/sequoia/sequoia-383133f6be990237044900a4df676488bf8dd71e/cargo-crates/thiserror-1.0.20/tests/
H A Dtest_expr.rs9 pub enum CompilerError { enum
61 CompilerError::TooManyShiftBits {
68 assert("#error A B C", CompilerError::User(vec!["A", "B", "C"]));
72 CompilerError::IntegerOverflow {
/dports/net-im/fractal/fractal-4.4.0/vendor/thiserror/tests/
H A Dtest_expr.rs9 pub enum CompilerError { enum
61 CompilerError::TooManyShiftBits {
68 assert("#error A B C", CompilerError::User(vec!["A", "B", "C"]));
72 CompilerError::IntegerOverflow {
/dports/lang/rust/rustc-1.58.1-src/vendor/thiserror/tests/
H A Dtest_expr.rs9 pub enum CompilerError { enum
61 CompilerError::TooManyShiftBits {
68 assert("#error A B C", CompilerError::User(vec!["A", "B", "C"]));
72 CompilerError::IntegerOverflow {
/dports/textproc/cast2gif/cast2gif-0.1.0/cargo-crates/thiserror-1.0.15/tests/
H A Dtest_expr.rs7 pub enum CompilerError { enum
60 CompilerError::TooManyShiftBits {
67 assert("#error A B C", CompilerError::User(vec!["A", "B", "C"]));
71 CompilerError::IntegerOverflow {

12345678910>>...24