public OpBitShiftRZ()
 {
     OperationName = "bshiftrz";
     Operation     = ">>>";
     Type          = Operators.BitShiftRZ;
     AllOperators.Add(this);
 }
示例#2
0
        public Op_Greater()
        {
            OperationName = "greater";
            Operation     = ">";

            AllOperators.Add(this);
        }
示例#3
0
        public Op_GreaterEqual()
        {
            OperationName = "equalgreater";
            Operation     = ">=";

            AllOperators.Add(this);
        }
示例#4
0
        public Op_Or()
        {
            OperationName = "or";
            Operation     = "||";

            AllOperators.Add(this);
        }
示例#5
0
        public Op_NotEqual()
        {
            OperationName = "notequal";
            Operation     = "!=";

            AllOperators.Add(this);
        }
示例#6
0
        public Op_Modulo()
        {
            OperationName = "modulo";
            Operation     = "%";

            AllOperators.Add(this);
        }
示例#7
0
        public Op_Access()
        {
            OperationName = "access";
            Operation     = ".";

            AllOperators.Add(this);
        }
 public OpDivide()
 {
     OperationName = "div";
     Operation     = "/";
     Type          = Operators.Divide;
     AllOperators.Add(this);
 }
 public OpModulo()
 {
     OperationName = "mod";
     Operation     = "%";
     Type          = Operators.Modulo;
     AllOperators.Add(this);
 }
示例#10
0
 public OpAdd()
 {
     OperationName = "add";
     Operation     = "+";
     Type          = Operators.Add;
     AllOperators.Add(this);
 }
示例#11
0
 public OpMultiply()
 {
     OperationName = "mul";
     Operation     = "*";
     Type          = Operators.Multiply;
     AllOperators.Add(this);
 }
示例#12
0
 public OpBitOr()
 {
     OperationName = "bor";
     Operation     = "|";
     Type          = Operators.BitOr;
     AllOperators.Add(this);
 }
示例#13
0
 public OpBitXor()
 {
     OperationName = "bxor";
     Operation     = "|||";
     Type          = Operators.BitXOr;
     AllOperators.Add(this);
 }
示例#14
0
 public OpBitAnd()
 {
     OperationName = "band";
     Operation     = "&";
     Type          = Operators.BitAnd;
     AllOperators.Add(this);
 }
示例#15
0
        public Op_Multiply()
        {
            OperationName = "multiply";
            Operation     = "*";

            AllOperators.Add(this);
        }
示例#16
0
 public OpPower()
 {
     OperationName = "pow";
     Operation     = "^";
     Type          = Operators.Power;
     AllOperators.Add(this);
 }
示例#17
0
        public Op_Divide()
        {
            OperationName = "divide";
            Operation     = "/";

            AllOperators.Add(this);
        }
示例#18
0
        public OpLambda()
        {
            OperationName = "lambda";
            Operation     = "=>";

            AllOperators.Add(this);
        }
示例#19
0
        public Op_Power()
        {
            OperationName = "power";
            Operation     = "^";

            AllOperators.Add(this);
        }
示例#20
0
        public OpCall()
        {
            OperationName = "call";
            Operation     = "(";

            AllOperators.Add(this);
        }
示例#21
0
        public Op_Assign()
        {
            OperationName = "assign";
            Operation     = "=";

            AllOperators.Add(this);
        }
示例#22
0
 public OpIndex()
 {
     OperationName = "index";
     Operation     = "[";
     Type          = Operators.Index;
     AllOperators.Add(this);
 }
示例#23
0
        public Op_And()
        {
            OperationName = "and";
            Operation     = "&&";

            AllOperators.Add(this);
        }
示例#24
0
        public Op_LesserEqual()
        {
            OperationName = "equallesser";
            Operation     = "<=";

            AllOperators.Add(this);
        }
示例#25
0
        public Op_Equal()
        {
            OperationName = "equal";
            Operation     = "==";

            AllOperators.Add(this);
        }
示例#26
0
        public Op_Add()
        {
            OperationName = "add";
            Operation     = "+";

            AllOperators.Add(this);
        }
示例#27
0
        public Op_Lesser()
        {
            OperationName = "lesser";
            Operation     = "<";

            AllOperators.Add(this);
        }
示例#28
0
        public Op_Subtract()
        {
            OperationName = "subtract";
            Operation     = "-";

            AllOperators.Add(this);
        }
示例#29
0
        ///<summary>
        /// Создает страницу для отображения информации о всех ВС, складах, и текущих делах оператора
        ///</summary>
        /// <param name="currentOperator">Директива</param>
        public CurrentOperatorSymmaryCAADemoScreen(AllOperators currentOperator)
            : this()
        {
            if (currentOperator == null)
            {
                throw new ArgumentNullException("currentOperator");
            }
            aircraftHeaderControl1.Operator = new Operator()
            {
                Address                      = currentOperator.Address,
                Email                        = currentOperator.Email,
                LogoTypeImage                = currentOperator.LogoTypeImage,
                LogoTypeWhiteImage           = currentOperator.LogoTypeWhiteImage,
                LogotypeReportLargeImage     = currentOperator.LogotypeReportLargeImage,
                LogotypeReportVeryLargeImage = currentOperator.LogotypeReportVeryLargeImage,
                Name = currentOperator.FullName
            };
            _currentOperator         = currentOperator;
            statusControl.ShowStatus = false;

            _worker                     = new AnimatedThreadWorker();
            _worker.DoWork             += Worker_DoWork;
            _worker.RunWorkerCompleted += Worker_RunWorkerCompleted;
            _worker.RunWorkerAsync();
        }
示例#30
0
 public OpBitShiftL()
 {
     OperationName = "bshiftl";
     Operation     = "<<";
     Type          = Operators.BitShiftL;
     AllOperators.Add(this);
 }