Esempio n. 1
0
 internal IntegerType(string name, uint size, bool unsigned, PrimitiveTypeId primitiveId)
     : base(primitiveId)
 {
     this.name = name;
     this.size = size;
     this.unsigned = unsigned;
 }
Esempio n. 2
0
 internal IntegerType(string name, uint size, bool unsigned, PrimitiveTypeId primitiveId)
     : base(primitiveId)
 {
     this.name     = name;
     this.size     = size;
     this.unsigned = unsigned;
 }
Esempio n. 3
0
 public FloatType(string name, uint size, PrimitiveTypeId primitiveId)
     : base(primitiveId)
 {
     this.name = name;
     this.size = size;
 }
Esempio n. 4
0
 public FloatType(string name, uint size, PrimitiveTypeId primitiveId)
     : base(primitiveId)
 {
     this.name = name;
     this.size = size;
 }
Esempio n. 5
0
 internal PrimitiveType(PrimitiveTypeId primitiveId)
 {
     this.primitiveId = primitiveId;
 }
Esempio n. 6
0
 internal PrimitiveType(PrimitiveTypeId primitiveId)
 {
     this.primitiveId = primitiveId;
 }