189 references to Mixin
Mono.Cecil (160)
Mono.Cecil.Cil\PortablePdb.cs (13)
26
Mixin
.CheckModule (module);
27
Mixin
.CheckFileName (fileName);
29
var file = File.OpenRead (
Mixin
.GetPdbFileName (fileName));
35
Mixin
.CheckModule (module);
36
Mixin
.CheckStream (symbolStream);
173
Mixin
.CheckModule (module);
246
Mixin
.CheckModule (module);
247
Mixin
.CheckFileName (fileName);
249
var file = File.Open (
Mixin
.GetPdbFileName (fileName), FileMode.OpenOrCreate, FileAccess.ReadWrite);
255
Mixin
.CheckModule (module);
256
Mixin
.CheckStream (symbolStream);
505
Mixin
.CheckModule (module);
506
Mixin
.CheckFileName (fileName);
Mono.Cecil.Cil\Symbols.cs (6)
929
var pdb_file_name =
Mixin
.GetPdbFileName (fileName);
932
if (
Mixin
.IsPortablePdb (
Mixin
.GetPdbFileName (fileName)))
942
var mdb_file_name =
Mixin
.GetMdbFileName (fileName);
969
Mixin
.CheckStream (symbolStream);
970
Mixin
.CheckReadSeek (symbolStream);
Mono.Cecil.Metadata\Buffers.cs (3)
26
readonly internal TableInformation [] table_infos = new TableInformation [
Mixin
.TableCount];
27
readonly internal MetadataTable [] tables = new MetadataTable [
Mixin
.TableCount];
33
readonly int [] coded_index_sizes = new int [
Mixin
.CodedIndexCount];
Mono.Cecil.Metadata\TableHeap.cs (1)
88
public readonly TableInformation [] Tables = new TableInformation [
Mixin
.TableCount];
Mono.Cecil.PE\ImageReader.cs (5)
443
for (int i = 0; i <
Mixin
.TableCount; i++) {
451
for (int i = 0; i <
Mixin
.TableCount; i++) {
494
for (int i = 0; i <
Mixin
.TableCount; i++) {
751
heap.TypeSystemTableRows = new uint [
Mixin
.TableCount];
753
for (int i = 0; i <
Mixin
.TableCount; i++) {
Mono.Cecil\ArrayType.cs (2)
127
Mixin
.CheckType (type);
134
Mixin
.CheckType (type);
Mono.Cecil\AssemblyDefinition.cs (1)
115
Mixin
.CheckParameters (parameters);
Mono.Cecil\AssemblyNameReference.cs (4)
53
version =
Mixin
.CheckVersion (value);
231
this.version =
Mixin
.ZeroVersion;
237
Mixin
.CheckName (name);
240
this.version =
Mixin
.CheckVersion (version);
Mono.Cecil\AssemblyReader.cs (28)
172
Mixin
.Read (module.AssemblyReferences);
174
Mixin
.Read (module.Resources);
176
Mixin
.Read (module.ModuleReferences);
180
Mixin
.Read (module.ExportedTypes);
209
Mixin
.Read (type.ClassSize);
273
Mixin
.Read (security_declaration.SecurityAttributes);
290
Mixin
.Read (custom_attribute.ConstructorArguments);
302
Mixin
.Read (field.Constant);
305
Mixin
.Read (field.Offset);
308
Mixin
.Read (field.InitialValue);
311
Mixin
.Read (field.MarshalInfo);
330
Mixin
.Read (method.Overrides);
333
Mixin
.Read (method.PInvokeInfo);
340
Mixin
.Read (return_type.Constant);
343
Mixin
.Read (return_type.MarshalInfo);
357
Mixin
.Read (parameter.Constant);
360
Mixin
.Read (parameter.MarshalInfo);
373
Mixin
.Read (property.GetMethod);
376
Mixin
.Read (property.Constant);
389
Mixin
.Read (@event.AddMethod);
830
Mixin
.Read (type.Fields);
831
Mixin
.Read (type.Methods);
1012
return new Row<short, int> (
Mixin
.NoDataMarker,
Mixin
.NoDataMarker);
1420
return
Mixin
.NoDataMarker;
2218
Mixin
.Read (type.Fields);
2240
Mixin
.Read (type.Methods);
2431
return
Mixin
.NoValue;
Mono.Cecil\BaseAssemblyResolver.cs (3)
122
Mixin
.CheckName (name);
123
Mixin
.CheckParameters (parameters);
131
name = new AssemblyNameReference (name.Name,
Mixin
.ZeroVersion) {
Mono.Cecil\CustomAttribute.cs (2)
33
Mixin
.CheckType (type);
54
Mixin
.CheckName (name);
Mono.Cecil\DefaultAssemblyResolver.cs (1)
27
Mixin
.CheckName (name);
Mono.Cecil\EventReference.cs (2)
31
Mixin
.CheckType (eventType,
Mixin
.Argument.eventType);
Mono.Cecil\FieldDefinition.cs (10)
22
int offset =
Mixin
.NotResolvedMarker;
24
internal int rva =
Mixin
.NotResolvedMarker;
27
object constant =
Mixin
.NotResolved;
33
if (offset !=
Mixin
.NotResolvedMarker)
37
offset =
Mixin
.NoDataMarker;
42
if (offset !=
Mixin
.NotResolvedMarker)
78
if (rva !=
Mixin
.NotResolvedMarker)
85
if (rva !=
Mixin
.NotResolvedMarker)
135
return constant !=
Mixin
.NoValue;
137
set { if (!value) constant =
Mixin
.NoValue; }
Mono.Cecil\FieldReference.cs (4)
40
Mixin
.CheckType (fieldType,
Mixin
.Argument.fieldType);
49
Mixin
.CheckType (declaringType,
Mixin
.Argument.declaringType);
Mono.Cecil\GenericParameter.cs (3)
197
Mixin
.CheckModule (module);
325
Mixin
.CheckType (constraintType,
Mixin
.Argument.constraintType);
Mono.Cecil\IConstantProvider.cs (3)
30
constant =
Mixin
.NoValue;
35
if (constant !=
Mixin
.NotResolved)
40
constant =
Mixin
.NoValue;
Mono.Cecil\Import.cs (10)
131
Mixin
.CheckModule (module);
318
Mixin
.CheckName (name);
471
Mixin
.CheckType (type);
480
Mixin
.CheckField (field);
486
Mixin
.CheckMethod (method);
499
Mixin
.CheckModule (module);
549
Mixin
.CheckName (name);
747
Mixin
.CheckType (type);
753
Mixin
.CheckField (field);
759
Mixin
.CheckMethod (method);
Mono.Cecil\MetadataResolver.cs (3)
99
Mixin
.CheckType (type);
173
Mixin
.CheckField (field);
220
Mixin
.CheckMethod (method);
Mono.Cecil\MethodDefinition.cs (3)
184
Mixin
.Read (Body);
260
Mixin
.Read (Body);
268
Mixin
.Read (Body);
Mono.Cecil\MethodReference.cs (4)
147
Mixin
.CheckType (returnType,
Mixin
.Argument.returnType);
157
Mixin
.CheckType (declaringType,
Mixin
.Argument.declaringType);
Mono.Cecil\MethodSpecification.cs (1)
73
Mixin
.CheckMethod (method);
Mono.Cecil\Modifiers.cs (4)
60
throw new ArgumentNullException (
Mixin
.Argument.modifierType.ToString ());
61
Mixin
.CheckType (type);
105
throw new ArgumentNullException (
Mixin
.Argument.modifierType.ToString ());
106
Mixin
.CheckType (type);
Mono.Cecil\ModuleDefinition.cs (22)
663
Mixin
.CheckFullName (fullName);
678
Mixin
.CheckFullName (fullName);
726
Mixin
.CheckFullName (fullName);
737
Mixin
.CheckName (name);
824
Mixin
.CheckType (type);
849
Mixin
.CheckField (field);
874
Mixin
.CheckMethod (method);
899
Mixin
.CheckType (type);
928
Mixin
.CheckField (field);
957
Mixin
.CheckMethod (method);
1054
Mixin
.CheckName (name);
1055
Mixin
.CheckParameters (parameters);
1060
timestamp = parameters.Timestamp ??
Mixin
.GetTimestamp (),
1097
return new AssemblyNameDefinition (name,
Mixin
.ZeroVersion);
1164
Mixin
.CheckFileName (fileName);
1176
Mixin
.CheckStream (stream);
1177
Mixin
.CheckReadSeek (stream);
1184
Mixin
.CheckParameters (parameters);
1198
Mixin
.CheckParameters (parameters);
1223
Mixin
.CheckStream (stream);
1224
Mixin
.CheckWriteSeek (stream);
1225
Mixin
.CheckParameters (parameters);
Mono.Cecil\ParameterDefinition.cs (3)
21
object constant =
Mixin
.NotResolved;
47
return constant !=
Mixin
.NoValue;
49
set { if (!value) constant =
Mixin
.NoValue; }
Mono.Cecil\PinnedType.cs (1)
31
Mixin
.CheckType (type);
Mono.Cecil\PointerType.cs (1)
39
Mixin
.CheckType (type);
Mono.Cecil\PropertyDefinition.cs (3)
28
object constant =
Mixin
.NotResolved;
158
return constant !=
Mixin
.NoValue;
160
set { if (!value) constant =
Mixin
.NoValue; }
Mono.Cecil\PropertyReference.cs (2)
33
Mixin
.CheckType (propertyType,
Mixin
.Argument.propertyType);
Mono.Cecil\ReferenceType.cs (1)
39
Mixin
.CheckType (type);
Mono.Cecil\SentinelType.cs (1)
31
Mixin
.CheckType (type);
Mono.Cecil\TypeDefinition.cs (8)
26
short packing_size =
Mixin
.NotResolvedMarker;
27
int class_size =
Mixin
.NotResolvedMarker;
68
packing_size =
Mixin
.NoDataMarker;
69
class_size =
Mixin
.NoDataMarker;
74
if (packing_size !=
Mixin
.NotResolvedMarker || class_size !=
Mixin
.NotResolvedMarker)
561
Mixin
.CheckType (interfaceType,
Mixin
.Argument.interfaceType);
Mono.Cecil\TypeSystem.cs (1)
102
Name =
Mixin
.mscorlib,
Mono.Cecil\WindowsRuntimeProjections.cs (1)
206
Mixin
.Read (module.AssemblyReferences);
Mono.Cecil.Mdb (7)
Mono.Cecil.Mdb\MdbReader.cs (5)
25
Mixin
.CheckModule (module);
26
Mixin
.CheckFileName (fileName);
28
return new MdbReader (module, MonoSymbolFile.ReadSymbolFile (
Mixin
.GetMdbFileName (fileName)));
33
Mixin
.CheckModule (module);
34
Mixin
.CheckStream (symbolStream);
Mono.Cecil.Mdb\MdbWriter.cs (2)
25
Mixin
.CheckModule (module);
26
Mixin
.CheckFileName (fileName);
Mono.Cecil.Pdb (21)
Mono.Cecil.Pdb\PdbHelper.cs (21)
22
Mixin
.CheckModule (module);
23
Mixin
.CheckFileName (fileName);
25
return new NativePdbReader (Disposable.Owned (File.OpenRead (
Mixin
.GetPdbFileName (fileName)) as Stream));
30
Mixin
.CheckModule (module);
31
Mixin
.CheckStream (symbolStream);
41
Mixin
.CheckModule (module);
50
Mixin
.CheckFileName (fileName);
52
return
Mixin
.IsPortablePdb (
Mixin
.GetPdbFileName (fileName))
59
Mixin
.CheckModule (module);
60
Mixin
.CheckStream (symbolStream);
61
Mixin
.CheckReadSeek (symbolStream);
63
return
Mixin
.IsPortablePdb (symbolStream)
73
Mixin
.CheckModule (module);
74
Mixin
.CheckFileName (fileName);
76
return new NativePdbWriter (module, CreateWriter (module,
Mixin
.GetPdbFileName (fileName)));
101
Mixin
.CheckModule (module);
102
Mixin
.CheckFileName (fileName);
117
Mixin
.CheckModule (module);
118
Mixin
.CheckStream (symbolStream);
119
Mixin
.CheckReadSeek (symbolStream);
Mono.Cecil.Rocks (1)
Mono.Cecil.Rocks\TypeDefinitionRocks.cs (1)
62
return
Mixin
.GetEnumUnderlyingType (self);