Home
last modified time | relevance | path

Searched refs:TempFileCollection (Results 1 – 25 of 70) sorted by relevance

123

/dports/lang/mono/mono-5.10.1.57/mcs/class/System/Test/System.CodeDom.Compiler/
H A DTempFileCollectionCas.cs68 TempFileCollection tfc = new TempFileCollection (); in Constructor0_Deny_Unrestricted()
121 TempFileCollection tfc = new TempFileCollection (); in BasePath_Caching()
131 TempFileCollection tfc = new TempFileCollection (); in BasePath_PermitOnly_EnvironmentPermission()
141 TempFileCollection tfc = new TempFileCollection (); in BasePath_Deny_EnvironmentPermission()
151 TempFileCollection tfc = new TempFileCollection (); in BasePath_PermitOnly_FileIOPermission()
161 TempFileCollection tfc = new TempFileCollection (); in BasePath_Deny_FileIOPermission()
171 TempFileCollection tfc = new TempFileCollection (); in AddExtension_PermitOnly_EnvironmentPermission()
181 TempFileCollection tfc = new TempFileCollection (); in AddExtension_Deny_EnvironmentPermission()
191 TempFileCollection tfc = new TempFileCollection (); in AddExtension_PermitOnly_FileIOPermission()
201 TempFileCollection tfc = new TempFileCollection (); in AddExtension_Deny_FileIOPermission()
[all …]
H A DExecutorTest.cs49 private TempFileCollection tfc;
59 tfc = new TempFileCollection (); in FixtureSetUp()
84 Executor.ExecWait (null, new TempFileCollection ()); in ExecWait_NullCmd()
105 Executor.ExecWait (cmd, new TempFileCollection ()); in ExecWait()
124 TempFileCollection tfc = new TempFileCollection (); in ExecWaitWithCapture()
141 TempFileCollection tfc = new TempFileCollection (); in ExecWaitWithCapture_CurrentDir()
159 TempFileCollection tfc = new TempFileCollection (); in ExecWaitWithCapture_Token()
176 TempFileCollection tfc = new TempFileCollection (); in ExecWaitWithCapture_Token_CurrentDir()
H A DTempFileCollectionTest.cs43 TempFileCollection tfc = new TempFileCollection (null); in Contructor_NullTempDir()
50 TempFileCollection tfc = new TempFileCollection (); in TempDir_Stays_Empty()
H A DCompilerResultsCas.cs52 private TempFileCollection temps;
60 temps = new TempFileCollection (); in FixtureSetUp()
80 cr.TempFiles = new TempFileCollection (); in Deny_Unrestricted()
103 Type[] types = new Type[1] { typeof (TempFileCollection) }; in LinkDemand_No_Restriction()
115 Type[] types = new Type[1] { typeof (TempFileCollection) }; in LinkDemand_Deny_Anything()
H A DCompilerParametersCas.cs72 cp.TempFiles = new TempFileCollection (); in Constructor0_Deny_Unrestricted()
103 cp.TempFiles = new TempFileCollection (); in Constructor1_Deny_Unrestricted()
134 cp.TempFiles = new TempFileCollection (); in Constructor2_Deny_Unrestricted()
165 cp.TempFiles = new TempFileCollection (); in Constructor3_Deny_Unrestricted()
H A DExecutorCas.cs56 private TempFileCollection tfc;
64 tfc = new TempFileCollection (); in FixtureSetUp()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.CodeDom/tests/CodeCollections/
H A DTempFileCollectionTests.cs53 var collection = new TempFileCollection(); in Ctor_Empty()
65 var collection = new TempFileCollection(tempDir); in Ctor_String()
77 var collection = new TempFileCollection(tempDir, keepFiles); in Ctor_String_Bool()
93 var collection = new TempFileCollection(tempDir); in BasePath_Get()
109 using (var collection = new TempFileCollection(tempDirectory)) in AddFileExtension()
122 using (var collection = new TempFileCollection()) in AddExtension_InvalidFileExtension_ThrowsArgumentException()
145 using (var collection = new TempFileCollection(directory)) in AddFile()
205 using (var collection = new TempFileCollection()) in AddFile_InvalidFileName_ThrowsArgumentException()
214 using (var collection = new TempFileCollection()) in AddFile_DuplicateFileName_ThrowsArgumentException()
228 using (var collection = new TempFileCollection()) in GetEnumerator_Empty_ReturnsFalse()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/System.CodeDom.Compiler/
H A DExecutor.cs71 public static void ExecWait (string cmd, TempFileCollection tempFiles) in ExecWait()
80 …cWaitWithCapture (IntPtr userToken, string cmd, string currentDir, TempFileCollection tempFiles, r… in ExecWaitWithCapture()
88 …public static Int32 ExecWaitWithCapture (IntPtr userToken, string cmd, TempFileCollection tempFile… in ExecWaitWithCapture()
94 …public static Int32 ExecWaitWithCapture (string cmd, string currentDir, TempFileCollection tempFil… in ExecWaitWithCapture()
100 …public static Int32 ExecWaitWithCapture (string cmd, TempFileCollection tempFiles, ref string outp… in ExecWaitWithCapture()
105 …private static int InternalExecWaitWithCapture (string cmd, string currentDir, TempFileCollection in InternalExecWaitWithCapture()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.CodeDom/src/System/CodeDom/Compiler/
H A DExecutor.cs19 public static void ExecWait(string cmd, TempFileCollection tempFiles) in ExecWait()
25 …public static int ExecWaitWithCapture(IntPtr userToken, string cmd, TempFileCollection tempFiles, … in ExecWaitWithCapture()
28 …public static int ExecWaitWithCapture(string cmd, string currentDir, TempFileCollection tempFiles,… in ExecWaitWithCapture()
31 …public static int ExecWaitWithCapture(string cmd, TempFileCollection tempFiles, ref string outputN… in ExecWaitWithCapture()
34 …ecWaitWithCapture(IntPtr userToken, string cmd, string currentDir, TempFileCollection tempFiles, r… in ExecWaitWithCapture()
H A DCompilerResults.cs16 private TempFileCollection _tempFiles;
18 public CompilerResults(TempFileCollection tempFiles) in CompilerResults()
23 public TempFileCollection TempFiles
H A DCompilerParameters.cs15 private TempFileCollection _tempFiles;
67 public TempFileCollection TempFiles
69 get { return _tempFiles ?? (_tempFiles = new TempFileCollection()); }
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/Common/src/System/IO/
H A DTempFileCollection.cs27 class TempFileCollection : ICollection, IDisposable class
33 public TempFileCollection() : this(null, false) in TempFileCollection() method in System.CodeDom.Compiler.TempFileCollection
37 public TempFileCollection(string tempDir) : this(tempDir, false) in TempFileCollection() method in System.CodeDom.Compiler.TempFileCollection
41 public TempFileCollection(string tempDir, bool keepFiles) in TempFileCollection() method in System.CodeDom.Compiler.TempFileCollection
59 ~TempFileCollection() in ~TempFileCollection()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/compmod/system/codedom/compiler/
H A DTempFiles.cs32 public class TempFileCollection : ICollection, IDisposable { class
41 public TempFileCollection() : this(null, false) { in TempFileCollection() method in System.CodeDom.Compiler.TempFileCollection
47 public TempFileCollection(string tempDir) : this(tempDir, false) { in TempFileCollection() method in System.CodeDom.Compiler.TempFileCollection
53 public TempFileCollection(string tempDir, bool keepFiles) { in TempFileCollection() method in System.CodeDom.Compiler.TempFileCollection
82 ~TempFileCollection() { in ~TempFileCollection()
H A DExecutor.cs64 public static void ExecWait(string cmd, TempFileCollection tempFiles) { in ExecWait()
75 …public static int ExecWaitWithCapture(string cmd, TempFileCollection tempFiles, ref string outputN… in ExecWaitWithCapture()
84 …public static int ExecWaitWithCapture(string cmd, string currentDir, TempFileCollection tempFiles,… in ExecWaitWithCapture()
93 …public static int ExecWaitWithCapture(IntPtr userToken, string cmd, TempFileCollection tempFiles, … in ExecWaitWithCapture()
102 …ecWaitWithCapture(IntPtr userToken, string cmd, string currentDir, TempFileCollection tempFiles, r… in ExecWaitWithCapture()
111 …ture(SafeUserTokenHandle userToken, string cmd, string currentDir, TempFileCollection tempFiles, r… in ExecWaitWithCapture()
137 …ated(SafeUserTokenHandle userToken, string cmd, string currentDir, TempFileCollection tempFiles, r… in ExecWaitWithCaptureUnimpersonated()
H A DCompilerResults.cs38 private TempFileCollection tempFiles;
49 public CompilerResults(TempFileCollection tempFiles) { in CompilerResults()
58 public TempFileCollection TempFiles {
H A DCompilerParameters.cs51 private TempFileCollection tempFiles;
207 public TempFileCollection TempFiles {
210 tempFiles = new TempFileCollection();
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Xml/System/Xml/Xslt/
H A DXsltSettings.cs20 private TempFileCollection tempFiles;
69 internal TempFileCollection TempFiles {
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/Test/Microsoft.CSharp/
H A DCSharpCodeProviderTest.cs111 options.TempFiles = new TempFileCollection (_tempDir); in CompileFromFile_InMemory()
172 options.TempFiles = new TempFileCollection (_tempDir); in CompileFromFileBatch_Executable_InMemory()
259 options.TempFiles = new TempFileCollection (_tempDir); in CompileFromFileBatch_Library_InMemory()
334 options.TempFiles = new TempFileCollection (_tempDir); in CompileFromSource_InMemory()
412 options.TempFiles = new TempFileCollection (_tempDir); in CompileFromSourceBatch_InMemory()
507 options.TempFiles = new TempFileCollection (_tempDir); in CompileFromDom_InMemory()
537 options.TempFiles = new TempFileCollection (_tempDir); in CompileFromDomBatch_InMemory()
561 options.TempFiles = new TempFileCollection (_tempDir); in MultiLineWarningIsReportedAsOneWarning()
585 TempFiles = new TempFileCollection (_tempDir, true), in EncodingMismatch()
671 options.TempFiles = new TempFileCollection (tempDir); in CompileAssemblyFromDom()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/Test/Microsoft.VisualBasic/
H A DVBCodeProviderTest.cs211 options.TempFiles = new TempFileCollection (_tempDir); in CompileFromFile_InMemory()
268 options.TempFiles = new TempFileCollection (_tempDir); in CompileFromFileBatch_Executable_InMemory()
356 options.TempFiles = new TempFileCollection (_tempDir); in CompileFromFileBatch_Library_InMemory()
432 options.TempFiles = new TempFileCollection (_tempDir); in CompileFromSource_InMemory()
468 options.TempFiles = new TempFileCollection (_tempDir); in CompileFromSourceBatch_InMemory()
567 options.TempFiles = new TempFileCollection (_tempDir); in CompileFromDom_InMemory()
598 options.TempFiles = new TempFileCollection (_tempDir); in CompileFromDomBatch_InMemory()
716 options.TempFiles = new TempFileCollection (tempDir); in CompileAssemblyFromDom()
738 options.TempFiles = new TempFileCollection (tempDir); in CompileAssemblyFromDomBatch()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Configuration.ConfigurationManager/src/System/Configuration/Internal/
H A DWriteFileContext.cs16 private IO.Internal.TempFileCollection _tempFiles;
23 _tempFiles = new IO.Internal.TempFileCollection(directoryname); in WriteFileContext()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Web/System.Web.Compilation/
H A DWebServiceCompiler.cs90 TempFileCollection tempcoll; in GetCompiledType()
91 tempcoll = new TempFileCollection (tempdir, keepFiles); in GetCompiledType()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Configuration/System/Configuration/Internal/
H A DWriteFileContext.cs26 private TempFileCollection _tempFiles;
34 _tempFiles = new TempFileCollection(directoryname); in WriteFileContext()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.ServiceModel/System.ServiceModel.Channels/
H A DCachingCompiler.cs122 TempFileCollection tempcoll = new TempFileCollection (config.TempDirectory, true); in Compile()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Workflow.ComponentModel/AuthoringOM/Compiler/
H A DXomlCompilerResults.cs14 internal WorkflowCompilerResults(TempFileCollection tempFiles) in WorkflowCompilerResults()
/dports/lang/mono/mono-5.10.1.57/external/nunit-lite/NUnitLite-1.0.0/src/tests/Syntax/
H A DTestCompiler.cs39 options.TempFiles = new TempFileCollection( Path.GetTempPath(), false ); in TestCompiler()

123