Home
last modified time | relevance | path

Searched refs:BooleanSwitch (Results 1 – 25 of 53) sorted by relevance

123

/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Xml/System/Xml/
H A DDiagnosticsSwitches.cs16 private static volatile BooleanSwitch xmlSchemaContentModel;
18 private static volatile BooleanSwitch keepTempFiles;
19 private static volatile BooleanSwitch pregenEventLog;
22 private static volatile BooleanSwitch nonRecursiveTypeLoading;
24 public static BooleanSwitch XmlSchemaContentModel {
27 …xmlSchemaContentModel = new BooleanSwitch("XmlSchemaContentModel", "Enable tracing for the XmlSche…
42 public static BooleanSwitch KeepTempFiles {
45 …keepTempFiles = new BooleanSwitch("XmlSerialization.Compilation", "Keep XmlSerialization generated…
51 public static BooleanSwitch PregenEventLog {
54 …pregenEventLog = new BooleanSwitch("XmlSerialization.PregenEventLog", "Log failures while loading …
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/Test/System.Diagnostics/
H A DSwitchesTest.cs90 private static BooleanSwitch bon = new BooleanSwitch ("bool-true", "");
91 private static BooleanSwitch bon2 = new BooleanSwitch ("bool-true-2", "");
92 private static BooleanSwitch bon3 = new BooleanSwitch ("bool-true-3", "");
93 private static BooleanSwitch boff = new BooleanSwitch ("bool-false", "");
94 private static BooleanSwitch boff2 = new BooleanSwitch ("bool-default", "");
163 new BooleanSwitch ("test", "", null); in BooleanSwitchNullDefaultValue()
169 BooleanSwitch s = new BooleanSwitch ("test", "", "2"); in BooleanSwitchValidDefaultValue()
171 s = new BooleanSwitch ("test", "", "0"); in BooleanSwitchValidDefaultValue()
173 s = new BooleanSwitch ("test", "", "true"); in BooleanSwitchValidDefaultValue()
175 s = new BooleanSwitch ("test", "", "True"); in BooleanSwitchValidDefaultValue()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Private.Xml/src/System/Xml/
H A DDiagnosticsSwitches.cs11 private static volatile BooleanSwitch s_xmlSchemaContentModel;
13 private static volatile BooleanSwitch s_keepTempFiles;
16 private static volatile BooleanSwitch s_nonRecursiveTypeLoading;
18 public static BooleanSwitch XmlSchemaContentModel
24 …s_xmlSchemaContentModel = new BooleanSwitch("XmlSchemaContentModel", "Enable tracing for the XmlSc…
42 public static BooleanSwitch KeepTempFiles
48 …s_keepTempFiles = new BooleanSwitch("XmlSerialization.Compilation", "Keep XmlSerialization generat…
77 public static BooleanSwitch NonRecursiveTypeLoading
83 …s_nonRecursiveTypeLoading = new BooleanSwitch("XmlSerialization.NonRecursiveTypeLoading", "Turn on…
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Web.Services/System/ComponentModel/
H A DCompModSwitches.cs13 private static BooleanSwitch dynamicDiscoVirtualSearch;
15 private static BooleanSwitch disableRemoteDebugging;
18 public static BooleanSwitch DisableRemoteDebugging {
21 …disableRemoteDebugging = new BooleanSwitch("Remote.Disable", "Disable remote debugging for web met…
36 public static BooleanSwitch DynamicDiscoveryVirtualSearch {
39 …dynamicDiscoVirtualSearch = new BooleanSwitch("DynamicDiscoveryVirtualSearch", "Force virtual sear…
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Diagnostics.TraceSource/tests/
H A DBooleanSwitchClassTests.cs16 var swtch = new BooleanSwitch(Name, ""); in Constructor1()
19 swtch = new BooleanSwitch(null, null); in Constructor1()
25 var swtch = new BooleanSwitch(Name, "", "True"); in Constructor2()
27 swtch = new BooleanSwitch(Name, "", "false"); in Constructor2()
29 swtch = new BooleanSwitch(Name, "", "BAD_VALUE"); in Constructor2()
36 var swtch = new BooleanSwitch(Name, ""); in Enabled()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Workflow.ComponentModel/AuthoringOM/
H A DTrace.cs73BooleanSwitch logToFile = new BooleanSwitch("System.Workflow LogToFile", "Log traces to file"); in WorkflowTrace()
84BooleanSwitch traceToDefault = new BooleanSwitch("System.Workflow LogToTraceListeners", "Trace to … in WorkflowTrace()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Diagnostics.TraceSource/src/System/Diagnostics/
H A DBooleanSwitch.cs14 public class BooleanSwitch : Switch class
20 public BooleanSwitch(string displayName, string description) in BooleanSwitch() method in System.Diagnostics.BooleanSwitch
25 public BooleanSwitch(string displayName, string description, string defaultSwitchValue) in BooleanSwitch() method in System.Diagnostics.BooleanSwitch
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Drawing.Common/src/misc/
H A DCompModSwitches.cs30 private static BooleanSwitch s_traceCollect;
32 public static BooleanSwitch TraceCollect
38 …s_traceCollect = new BooleanSwitch("TRACECOLLECT", "HandleCollector: Trace HandleCollector operati…
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/compmod/system/componentmodel/
H A DCompModSwitches.cs21 private static volatile BooleanSwitch commonDesignerServices;
24 public static BooleanSwitch CommonDesignerServices {
27 …commonDesignerServices = new BooleanSwitch("CommonDesignerServices", "Assert if any common designe…
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/compmod/system/diagnostics/
H A DBooleanSwitch.cs21 public class BooleanSwitch : Switch { class
26 public BooleanSwitch(string displayName, string description) in BooleanSwitch() method in System.Diagnostics.BooleanSwitch
30 public BooleanSwitch(string displayName, string description, string defaultSwitchValue) in BooleanSwitch() method in System.Diagnostics.BooleanSwitch
H A Dassertwrapper.cs26 …static BooleanSwitch DisableVsAssert = new BooleanSwitch("DisableVsAssert", "Switch to disable usa…
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.ComponentModel.TypeConverter/src/System/
H A Dmisc.cs57 private static volatile BooleanSwitch commonDesignerServices;
59 public static BooleanSwitch CommonDesignerServices
65 …commonDesignerServices = new BooleanSwitch("CommonDesignerServices", "Assert if any common designe…
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Diagnostics.TraceSource/ref/
H A DSystem.Diagnostics.TraceSource.cs11 public partial class BooleanSwitch : System.Diagnostics.Switch class
13 …public BooleanSwitch(string displayName, string description) : base(default(string), default(strin… in BooleanSwitch() method in System.Diagnostics.BooleanSwitch
14 …public BooleanSwitch(string displayName, string description, string defaultSwitchValue) : base(def… in BooleanSwitch() method in System.Diagnostics.BooleanSwitch
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Web.Mobile/UI/MobileControls/Design/
H A DDeviceSpecificDesigner.cs31 internal static BooleanSwitch DeviceSpecificDesignerSwitch =
32 …new BooleanSwitch("DeviceSpecificDesigner", "Enable DeviceSpecific designer general purpose traces…
H A DMobileTemplatedControlDesigner.cs38 internal static BooleanSwitch TemplateableControlDesignerSwitch =
39 …new BooleanSwitch("MobileTemplatedControlDesigner", "Enable TemplateableControl designer general p…
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Data.Entity/System/Data/Query/PlanCompiler/
H A DPlanCompiler.cs73 …private static BooleanSwitch _applyTransformationsRegardlessOfSize = new BooleanSwitch("System.Dat…
/dports/math/linbox/linbox-1.6.3/linbox/blackbox/
H A Dbutterfly.inl711 class BooleanSwitch { class
714 typedef BooleanSwitch Self_t;
726 BooleanSwitch (const bool s) : function in LinBox::BooleanSwitch
732 ~BooleanSwitch () {}
764 typedef BooleanSwitch other;
796 BooleanSwitch makeSwitch ()
801 return BooleanSwitch (*_iter++);
811 inline bool BooleanSwitch::apply (const Field &F,
822 inline bool BooleanSwitch::applyTranspose (const Field &F,
H A Dbutterfly.h71 class BooleanSwitch; variable
/dports/lang/mono/mono-5.10.1.57/mcs/class/Facades/System.Diagnostics.TraceSource/
H A DTypeForwarders.cs23 …System.Runtime.CompilerServices.TypeForwardedToAttribute(typeof(System.Diagnostics.BooleanSwitch))]
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.7.1/Facades/
H A DSystem.Diagnostics.TraceSource.cs16 …System.Runtime.CompilerServices.TypeForwardedToAttribute(typeof(System.Diagnostics.BooleanSwitch))]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Web/Compilation/
H A DCodeDOMUtility.cs29 …internal static BooleanSwitch WebFormsCompilation = new BooleanSwitch("WebFormsCompilation", "Outp…
/dports/lang/mono/mono-5.10.1.57/external/api-snapshot/profiles/net_4_x/Facades/
H A DSystem.Diagnostics.TraceSource.cs17 …System.Runtime.CompilerServices.TypeForwardedToAttribute(typeof(System.Diagnostics.BooleanSwitch))]
/dports/lang/mono/mono-5.10.1.57/external/api-snapshot/profiles/monotouch/Facades/
H A DSystem.Diagnostics.TraceSource.cs17 …System.Runtime.CompilerServices.TypeForwardedToAttribute(typeof(System.Diagnostics.BooleanSwitch))]
/dports/lang/mono/mono-5.10.1.57/external/api-snapshot/profiles/monodroid/Facades/
H A DSystem.Diagnostics.TraceSource.cs17 …System.Runtime.CompilerServices.TypeForwardedToAttribute(typeof(System.Diagnostics.BooleanSwitch))]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/net/System/Net/
H A D_LoggingObject.cs543 internal class IntegerSwitch : BooleanSwitch {
698 BooleanSwitch theSwitch = new BooleanSwitch(switchName, switchDescription); in GetSwitchValue()

123