コード例 #1
0
ファイル: VariableType.cs プロジェクト: plocklsh/lwip
		public VariableType(string name, string type, string indirection = null, ConstType const_ = ConstType.None, string arraySpecifier = null)
		{
			this.Name           = name;
			this.Type           = type;
			this.Indirection    = indirection;
			this.Const          = const_;
			this.ArraySpecifier = arraySpecifier;
		}
コード例 #2
0
 public VariableType(string name, string type, string indirection = null, ConstType const_ = ConstType.None, string arraySpecifier = null)
 {
     this.Name           = name;
     this.Type           = type;
     this.Indirection    = indirection;
     this.Const          = const_;
     this.ArraySpecifier = arraySpecifier;
 }
コード例 #3
0
ファイル: ILOpCodeConst.cs プロジェクト: solulu/Ryujinx
 private ILOpCodeConst(ConstType type)
 {
     _type = type;
 }
コード例 #4
0
ファイル: Expr.cs プロジェクト: noobshow/SugarCpp
 public ExprConst(string text, ConstType type)
 {
     this.Text = text;
     this.Type = type;
 }
コード例 #5
0
ファイル: Constant.cs プロジェクト: tipfom/calq
 public Constant(ConstType name, bool isAddInverse, bool isMultInverse) : base(SymbolType.Const, isAddInverse, isMultInverse)
 {
     Name = name;
 }
コード例 #6
0
ファイル: Constant.cs プロジェクト: tipfom/calq
 public Constant(ConstType name) : base(SymbolType.Const, false, false)
 {
     Name = name;
 }
コード例 #7
0
ファイル: Expr.cs プロジェクト: Connect2Begin/SugarCpp
 public ExprConst(string text, ConstType type)
 {
     this.Text = text;
     this.Type = type;
 }
コード例 #8
0
ファイル: AILOpCodeConst.cs プロジェクト: zamil2200/Ryujinx
 private AILOpCodeConst(ConstType Type)
 {
     this.Type = Type;
 }
コード例 #9
0
ファイル: ast.cs プロジェクト: bitdotgames/bhl
 public AST_Literal(ConstType type)
 {
     this.type = type;
 }