Home
last modified time | relevance | path

Searched refs:CompilerErrorCollection (Results 1 – 25 of 45) sorted by relevance

12

/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.CodeDom/tests/CodeCollections/
H A DCompilerErrorCollectionTests.cs15 public override CompilerErrorCollection Ctor() => new CompilerErrorCollection(); in Ctor()
16 …public override CompilerErrorCollection CtorArray(CompilerError[] array) => new CompilerErrorColle…
17 …public override CompilerErrorCollection CtorCollection(CompilerErrorCollection collection) => new
25 …public override void AddRange(CompilerErrorCollection collection, CompilerErrorCollection value) =… in AddRange()
41 var collection = new CompilerErrorCollection(); in HasWarnings_Empty_ReturnsFalse()
48 var collection = new CompilerErrorCollection(); in HasWarnings_OnlyErrors_ReturnsFalse()
56 var collection = new CompilerErrorCollection(); in HasWarnings_OnlyWarnings_ReturnsTrue()
64 var collection = new CompilerErrorCollection(); in HasWarnings_WarningsAndErrors_ReturnsTrue()
73 var collection = new CompilerErrorCollection(); in HasErrors_Empty_ReturnsFalse()
80 var collection = new CompilerErrorCollection(); in HasErrors_OnlyErrors_ReturnsTrue()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/Test/System.CodeDom.Compiler/
H A DCompilerErrorCollectionCas.cs65 CompilerErrorCollection coll = new CompilerErrorCollection (); in Constructor0_Deny_Unrestricted()
85 CompilerErrorCollection coll = new CompilerErrorCollection (array); in Constructor1_Deny_Unrestricted()
105 CompilerErrorCollection c = new CompilerErrorCollection (); in Constructor2_Deny_Unrestricted()
106 CompilerErrorCollection coll = new CompilerErrorCollection (c); in Constructor2_Deny_Unrestricted()
126 ConstructorInfo ci = typeof (CompilerErrorCollection).GetConstructor (new Type[0]); in LinkDemand_Deny_Unrestricted()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.CodeDom/src/System/CodeDom/Compiler/
H A DCompilerErrorCollection.cs10 public class CompilerErrorCollection : CollectionBase class
12 public CompilerErrorCollection() { } in CompilerErrorCollection() method in System.CodeDom.Compiler.CompilerErrorCollection
14 public CompilerErrorCollection(CompilerErrorCollection value) in CompilerErrorCollection() method in System.CodeDom.Compiler.CompilerErrorCollection
19 public CompilerErrorCollection(CompilerError[] value) in CompilerErrorCollection() method in System.CodeDom.Compiler.CompilerErrorCollection
45 public void AddRange(CompilerErrorCollection value) in AddRange()
H A DCompilerResults.cs13 private readonly CompilerErrorCollection _errors = new CompilerErrorCollection();
48 public CompilerErrorCollection Errors => _errors;
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/compmod/system/codedom/compiler/
H A DCompilerErrorCollection.cs22 public class CompilerErrorCollection : CollectionBase { class
29 public CompilerErrorCollection() { in CompilerErrorCollection() method in System.CodeDom.Compiler.CompilerErrorCollection
37 public CompilerErrorCollection(CompilerErrorCollection value) { in CompilerErrorCollection() method in System.CodeDom.Compiler.CompilerErrorCollection
46 public CompilerErrorCollection(CompilerError[] value) { in CompilerErrorCollection() method in System.CodeDom.Compiler.CompilerErrorCollection
87 public void AddRange(CompilerErrorCollection value) { in AddRange()
H A DCompilerResults.cs33 private CompilerErrorCollection errors = new CompilerErrorCollection();
126 public CompilerErrorCollection Errors {
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Web/System.Web.Compilation/
H A DCompilationException.cs46 CompilerErrorCollection errors;
56 errors = info.GetValue ("errors", typeof (CompilerErrorCollection)) as CompilerErrorCollection; in CompilationException()
63 public CompilationException (string filename, CompilerErrorCollection errors, string fileText) in CompilationException()
H A DAppResourcesAssemblyBuilder.cs210 CompilerErrorCollection errors = null; in BuildSatelliteAssembly()
217 errors = new CompilerErrorCollection (); in BuildSatelliteAssembly()
H A DAssemblyBuilder.cs826 CompilerErrorCollection errors = results.Errors; in BuildAssembly()
H A DBaseCompiler.cs557 CompilerErrorCollection errors = results.Errors; in CheckCompilerErrors()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Private.Xml/src/System/Xml/Xsl/Xslt/
H A DCompilerError.cs35 internal class CompilerErrorCollection : CollectionBase class
37 public CompilerErrorCollection() { } in CompilerErrorCollection() method in System.Xml.Xsl.Xslt.CompilerErrorCollection
H A DCompiler.cs49 public CompilerErrorCollection CompilerErrorColl; // Results of the compilation
77 CompilerErrorColl = new CompilerErrorCollection(); in Compiler()
81 …public CompilerErrorCollection Compile(object stylesheet, XmlResolver xmlResolver, out QilExpressi… in Compile()
355 CompilerErrorCollection errorColl = this.CompilerErrorColl; in SortErrors()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.ServiceModel/System.ServiceModel.Channels/
H A DCompilationException.cs42 CompilerErrorCollection errors;
47 public CompilationException (string filename, CompilerErrorCollection errors, string fileText) in CompilationException()
/dports/biology/py-python-libsbml/python-libsbml-5.19.0/libsbml_source/src/bindings/csharp/
H A DCompiler.cs148 CompilerErrorCollection es = cr.Errors; in Compile()
/dports/biology/libsbml/libsbml-5.19.0/src/bindings/csharp/
H A DCompiler.cs148 CompilerErrorCollection es = cr.Errors; in Compile()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Xml/System/Xml/Xslt/
H A DXslCompiledTransform.cs89 internal CompilerErrorCollection Errors {
219 …public static CompilerErrorCollection CompileToType(XmlReader stylesheet, XsltSettings settings, X… in CompileToType()
236CompilerErrorCollection errors = new Compiler(settings, debug, scriptAssemblyPath).Compile(stylesh… in CompileToType()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Activities/System/Activities/ExpressionParser/
H A DSourceExpressionException.cs35 public SourceExpressionException(string message, CompilerErrorCollection errors) in SourceExpressionException()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Data.Entity.Design/System/Data/Entity/Design/
H A DEntityCodeGenerator.cs614 …_errors = type.GetProperty("Errors", flags, null, typeof(CompilerErrorCollection), new Type[0], nu… in ReflectionAdapter()
621 internal CompilerErrorCollection Errors
623 get { return (CompilerErrorCollection)_errors.GetValue(_instance, null); }
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Private.Xml/src/System/Xml/Xslt/
H A DXslCompiledTransform.cs58 private CompilerErrorCollection _compilerErrorColl = null;
154 …private CompilerErrorCollection LoadInternal(object stylesheet, XsltSettings settings, XmlResolver… in LoadInternal()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Web.Mobile/Mobile/
H A DMobileErrorInfo.cs66 CompilerErrorCollection errors = compileException.Results.Errors; in MobileErrorInfo()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.CodeDom/ref/
H A DSystem.CodeDom.cs1069 public partial class CompilerErrorCollection : System.Collections.CollectionBase class
1071 public CompilerErrorCollection() { } in CompilerErrorCollection() method in System.CodeDom.Compiler.CompilerErrorCollection
1072 public CompilerErrorCollection(System.CodeDom.Compiler.CompilerError[] value) { } in CompilerErrorCollection() method in System.CodeDom.Compiler.CompilerErrorCollection
1073 public CompilerErrorCollection(System.CodeDom.Compiler.CompilerErrorCollection value) { } in CompilerErrorCollection() method in System.CodeDom.Compiler.CompilerErrorCollection
1079 public void AddRange(System.CodeDom.Compiler.CompilerErrorCollection value) { } in AddRange()
1125 public System.CodeDom.Compiler.CompilerErrorCollection Errors { get { throw null; } }
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Data.SqlXml/System/Xml/Xsl/Xslt/
H A DScripts.cs201 CompilerErrorCollection allErrors = compiler.CompilerResults.Errors; in CompileAssembly()
H A DCompiler.cs310 CompilerErrorCollection errorColl = this.CompilerResults.Errors; in SortErrors()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/
H A Dnet_4_x_System.dll.sources366 ../../../external/corefx/src/System.CodeDom/src/System/CodeDom/Compiler/CompilerErrorCollection.cs
/dports/devel/msbuild/msbuild-0.06/src/Tasks.UnitTests/
H A DXslTransformation_Tests.cs1182 CompilerErrorCollection errors = null; in Compile()

12