LibreOffice Module formula (master) 1
opcode.hxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 */
19
20#ifndef INCLUDED_FORMULA_OPCODE_HXX
21#define INCLUDED_FORMULA_OPCODE_HXX
22
23#include <sstream>
24
25#include <formula/compiler.hxx>
26#include <sal/types.h>
27
28enum OpCode : sal_uInt16
29{
30 // Special commands
36 // Jump commands
41 // Parentheses and separators
51 // Special OpCodes
64 // Access commands
70 // Percent operator _follows_ value
72 // Error constants
80 // Binary operators
99 // Unary operators
101 // Functions with no parameters
111 // Functions with one parameter
166 // String functions
201 // Functions with more than one parameters
293 // Database functions
306 // Management functions
324 // String functions
349 // Matrix functions
356 // BackSolver
358 // Statistical functions
465 // Bit functions
471 // miscellaneous
507 // internal stuff
512 // from here on ExtraData
514 // no OpCode
517
518// Only to be used for debugging output. No guarantee of stability of the
519// return value.
520
521// Turn this into an operator<< when OpCode becomes a scoped enum
522
523inline std::string OpCodeEnumToString(OpCode eCode)
524{
525 switch (eCode)
526 {
527 case ocPush: return "Push";
528 case ocCall: return "Call";
529 case ocStop: return "Stop";
530 case ocExternal: return "External";
531 case ocName: return "Name";
532 case ocIf: return "If";
533 case ocIfError: return "IfError";
534 case ocIfNA: return "IfNA";
535 case ocChoose: return "Choose";
536 case ocOpen: return "Open";
537 case ocClose: return "Close";
538 case ocTableRefOpen: return "TableRefOpen";
539 case ocTableRefClose: return "TableRefClose";
540 case ocSep: return "Sep";
541 case ocArrayOpen: return "ArrayOpen";
542 case ocArrayClose: return "ArrayClose";
543 case ocArrayRowSep: return "ArrayRowSep";
544 case ocArrayColSep: return "ArrayColSep";
545 case ocMissing: return "Missing";
546 case ocBad: return "Bad";
547 case ocStringXML: return "StringXML";
548 case ocSpaces: return "Spaces";
549 case ocWhitespace: return "Whitespace";
550 case ocMatRef: return "MatRef";
551 case ocTableRefItemAll: return "TableRefItemAll";
552 case ocTableRefItemHeaders: return "TableRefItemHeaders";
553 case ocTableRefItemData: return "TableRefItemData";
554 case ocTableRefItemTotals: return "TableRefItemTotals";
555 case ocTableRefItemThisRow: return "TableRefItemThisRow";
556 case ocSkip: return "Skip";
557 case ocDBArea: return "DBArea";
558 case ocTableRef: return "TableRef";
559 case ocMacro: return "Macro";
560 case ocColRowName: return "ColRowName";
561 case ocColRowNameAuto: return "ColRowNameAuto";
562 case ocPercentSign: return "PercentSign";
563 case ocErrNull: return "ErrNull";
564 case ocErrDivZero: return "ErrDivZero";
565 case ocErrValue: return "ErrValue";
566 case ocErrRef: return "ErrRef";
567 case ocErrName: return "ErrName";
568 case ocErrNum: return "ErrNum";
569 case ocErrNA: return "ErrNA";
570 case ocAdd: return "Add";
571 case ocSub: return "Sub";
572 case ocMul: return "Mul";
573 case ocDiv: return "Div";
574 case ocAmpersand: return "Ampersand";
575 case ocPow: return "Pow";
576 case ocEqual: return "Equal";
577 case ocNotEqual: return "NotEqual";
578 case ocLess: return "Less";
579 case ocGreater: return "Greater";
580 case ocLessEqual: return "LessEqual";
581 case ocGreaterEqual: return "GreaterEqual";
582 case ocAnd: return "And";
583 case ocOr: return "Or";
584 case ocXor: return "Xor";
585 case ocIntersect: return "Intersect";
586 case ocUnion: return "Union";
587 case ocRange: return "Range";
588 case ocNot: return "Not";
589 case ocNeg: return "Neg";
590 case ocNegSub: return "NegSub";
591 case ocPi: return "Pi";
592 case ocRandom: return "Random";
593 case ocRandomNV: return "RandomNV";
594 case ocTrue: return "True";
595 case ocFalse: return "False";
596 case ocGetActDate: return "GetActDate";
597 case ocGetActTime: return "GetActTime";
598 case ocNotAvail: return "NotAvail";
599 case ocCurrent: return "Current";
600 case ocDeg: return "Deg";
601 case ocRad: return "Rad";
602 case ocSin: return "Sin";
603 case ocCos: return "Cos";
604 case ocTan: return "Tan";
605 case ocCot: return "Cot";
606 case ocArcSin: return "ArcSin";
607 case ocArcCos: return "ArcCos";
608 case ocArcTan: return "ArcTan";
609 case ocArcCot: return "ArcCot";
610 case ocSinHyp: return "SinHyp";
611 case ocCosHyp: return "CosHyp";
612 case ocTanHyp: return "TanHyp";
613 case ocCotHyp: return "CotHyp";
614 case ocArcSinHyp: return "ArcSinHyp";
615 case ocArcCosHyp: return "ArcCosHyp";
616 case ocArcTanHyp: return "ArcTanHyp";
617 case ocArcCotHyp: return "ArcCotHyp";
618 case ocCosecant: return "Cosecant";
619 case ocSecant: return "Secant";
620 case ocCosecantHyp: return "CosecantHyp";
621 case ocSecantHyp: return "SecantHyp";
622 case ocExp: return "Exp";
623 case ocLn: return "Ln";
624 case ocSqrt: return "Sqrt";
625 case ocFact: return "Fact";
626 case ocGetYear: return "GetYear";
627 case ocGetMonth: return "GetMonth";
628 case ocGetDay: return "GetDay";
629 case ocGetHour: return "GetHour";
630 case ocGetMin: return "GetMin";
631 case ocGetSec: return "GetSec";
632 case ocPlusMinus: return "PlusMinus";
633 case ocAbs: return "Abs";
634 case ocInt: return "Int";
635 case ocPhi: return "Phi";
636 case ocGauss: return "Gauss";
637 case ocIsEmpty: return "IsEmpty";
638 case ocIsString: return "IsString";
639 case ocIsNonString: return "IsNonString";
640 case ocIsLogical: return "IsLogical";
641 case ocType: return "Type";
642 case ocCell: return "Cell";
643 case ocIsRef: return "IsRef";
644 case ocIsValue: return "IsValue";
645 case ocIsFormula: return "IsFormula";
646 case ocIsNA: return "IsNA";
647 case ocIsErr: return "IsErr";
648 case ocIsError: return "IsError";
649 case ocIsEven: return "IsEven";
650 case ocIsOdd: return "IsOdd";
651 case ocN: return "N";
652 case ocGetDateValue: return "GetDateValue";
653 case ocGetTimeValue: return "GetTimeValue";
654 case ocCode: return "Code";
655 case ocTrim: return "Trim";
656 case ocUpper: return "Upper";
657 case ocProper: return "Proper";
658 case ocLower: return "Lower";
659 case ocLen: return "Len";
660 case ocT: return "T";
661 case ocValue: return "Value";
662 case ocClean: return "Clean";
663 case ocChar: return "Char";
664 case ocLog10: return "Log10";
665 case ocEven: return "Even";
666 case ocOdd: return "Odd";
667 case ocStdNormDist: return "StdNormDist";
668 case ocStdNormDist_MS: return "StdNormDist_MS";
669 case ocFisher: return "Fisher";
670 case ocFisherInv: return "FisherInv";
671 case ocSNormInv: return "SNormInv";
672 case ocSNormInv_MS: return "SNormInv_MS";
673 case ocGammaLn: return "GammaLn";
674 case ocGammaLn_MS: return "GammaLn_MS";
675 case ocGamma: return "Gamma";
676 case ocErrorType: return "ErrorType";
677 case ocErrorType_ODF: return "ErrorType_ODF";
678 case ocFormula: return "Formula";
679 case ocArabic: return "Arabic";
680 case ocInfo: return "Info";
681 case ocBahtText: return "BahtText";
682 case ocJis: return "Jis";
683 case ocAsc: return "Asc";
684 case ocUnicode: return "Unicode";
685 case ocUnichar: return "Unichar";
686 case ocArcTan2: return "ArcTan2";
687 case ocCeil: return "Ceil";
688 case ocCeil_MS: return "Ceil_MS";
689 case ocCeil_Precise: return "Ceil_Precise";
690 case ocCeil_ISO: return "Ceil_ISO";
691 case ocCeil_Math: return "Ceil_Math";
692 case ocFloor: return "Floor";
693 case ocFloor_MS: return "Floor_MS";
694 case ocFloor_Math: return "Floor_Math";
695 case ocFloor_Precise: return "Floor_Precise";
696 case ocRound: return "Round";
697 case ocRoundUp: return "RoundUp";
698 case ocRoundDown: return "RoundDown";
699 case ocTrunc: return "Trunc";
700 case ocLog: return "Log";
701 case ocPower: return "Power";
702 case ocGCD: return "GCD";
703 case ocLCM: return "LCM";
704 case ocMod: return "Mod";
705 case ocSumProduct: return "SumProduct";
706 case ocSumSQ: return "SumSQ";
707 case ocSumX2MY2: return "SumX2MY2";
708 case ocSumX2DY2: return "SumX2DY2";
709 case ocSumXMY2: return "SumXMY2";
710 case ocGetDate: return "GetDate";
711 case ocGetTime: return "GetTime";
712 case ocGetDiffDate: return "GetDiffDate";
713 case ocGetDiffDate360: return "GetDiffDate360";
714 case ocGetDateDif: return "GetDateDif";
715 case ocMin: return "Min";
716 case ocMax: return "Max";
717 case ocSum: return "Sum";
718 case ocProduct: return "Product";
719 case ocAverage: return "Average";
720 case ocCount: return "Count";
721 case ocCount2: return "Count2";
722 case ocNPV: return "NPV";
723 case ocIRR: return "IRR";
724 case ocMIRR: return "MIRR";
725 case ocISPMT: return "ISPMT";
726 case ocVar: return "Var";
727 case ocVarP: return "VarP";
728 case ocVarP_MS: return "VarP_MS";
729 case ocVarS: return "VarS";
730 case ocStDev: return "StDev";
731 case ocStDevP: return "StDevP";
732 case ocStDevP_MS: return "StDevP_MS";
733 case ocStDevS: return "StDevS";
734 case ocB: return "B";
735 case ocNormDist: return "NormDist";
736 case ocNormDist_MS: return "NormDist_MS";
737 case ocExpDist: return "ExpDist";
738 case ocExpDist_MS: return "ExpDist_MS";
739 case ocBinomDist: return "BinomDist";
740 case ocBinomDist_MS: return "BinomDist_MS";
741 case ocBinomInv: return "BinomInv";
742 case ocPoissonDist: return "PoissonDist";
743 case ocPoissonDist_MS: return "PoissonDist_MS";
744 case ocCombin: return "Combin";
745 case ocCombinA: return "CombinA";
746 case ocPermut: return "Permut";
747 case ocPermutationA: return "PermutationA";
748 case ocPV: return "PV";
749 case ocSYD: return "SYD";
750 case ocDDB: return "DDB";
751 case ocDB: return "DB";
752 case ocVBD: return "VBD";
753 case ocPDuration: return "PDuration";
754 case ocSLN: return "SLN";
755 case ocPMT: return "PMT";
756 case ocColumns: return "Columns";
757 case ocRows: return "Rows";
758 case ocColumn: return "Column";
759 case ocRow: return "Row";
760 case ocRRI: return "RRI";
761 case ocFV: return "FV";
762 case ocNper: return "Nper";
763 case ocRate: return "Rate";
764 case ocIpmt: return "Ipmt";
765 case ocPpmt: return "Ppmt";
766 case ocCumIpmt: return "CumIpmt";
767 case ocCumPrinc: return "CumPrinc";
768 case ocEffect: return "Effect";
769 case ocNominal: return "Nominal";
770 case ocSubTotal: return "SubTotal";
771 case ocRawSubtract: return "RawSubtract";
772 case ocIfs_MS: return "Ifs_MS";
773 case ocSwitch_MS: return "Switch_MS";
774 case ocMinIfs_MS: return "MinIfs_MS";
775 case ocMaxIfs_MS: return "MaxIfs_MS";
776 case ocRoundSig: return "RoundSig";
777 case ocDBSum: return "DBSum";
778 case ocDBCount: return "DBCount";
779 case ocDBCount2: return "DBCount2";
780 case ocDBAverage: return "DBAverage";
781 case ocDBGet: return "DBGet";
782 case ocDBMax: return "DBMax";
783 case ocDBMin: return "DBMin";
784 case ocDBProduct: return "DBProduct";
785 case ocDBStdDev: return "DBStdDev";
786 case ocDBStdDevP: return "DBStdDevP";
787 case ocDBVar: return "DBVar";
788 case ocDBVarP: return "DBVarP";
789 case ocIndirect: return "Indirect";
790 case ocAddress: return "Address";
791 case ocMatch: return "Match";
792 case ocCountEmptyCells: return "CountEmptyCells";
793 case ocCountIf: return "CountIf";
794 case ocSumIf: return "SumIf";
795 case ocAverageIf: return "AverageIf";
796 case ocSumIfs: return "SumIfs";
797 case ocAverageIfs: return "AverageIfs";
798 case ocCountIfs: return "CountIfs";
799 case ocLookup: return "Lookup";
800 case ocVLookup: return "VLookup";
801 case ocHLookup: return "HLookup";
802 case ocMultiArea: return "MultiArea";
803 case ocOffset: return "Offset";
804 case ocIndex: return "Index";
805 case ocAreas: return "Areas";
806 case ocCurrency: return "Currency";
807 case ocReplace: return "Replace";
808 case ocFixed: return "Fixed";
809 case ocFind: return "Find";
810 case ocExact: return "Exact";
811 case ocLeft: return "Left";
812 case ocRight: return "Right";
813 case ocSearch: return "Search";
814 case ocMid: return "Mid";
815 case ocText: return "Text";
816 case ocSubstitute: return "Substitute";
817 case ocRept: return "Rept";
818 case ocRegex: return "Regex";
819 case ocConcat: return "Concat";
820 case ocConcat_MS: return "Concat_MS";
821 case ocTextJoin_MS: return "TextJoin_MS";
822 case ocLenB: return "LenB";
823 case ocRightB: return "RightB";
824 case ocLeftB: return "LeftB";
825 case ocMidB: return "MidB";
826 case ocReplaceB: return "ReplaceB";
827 case ocFindB: return "FindB";
828 case ocSearchB: return "SearchB";
829 case ocNumberValue: return "NumberValue";
830 case ocMatValue: return "MatValue";
831 case ocMatDet: return "MatDet";
832 case ocMatInv: return "MatInv";
833 case ocMatMult: return "MatMult";
834 case ocMatTrans: return "MatTrans";
835 case ocMatrixUnit: return "MatrixUnit";
836 case ocBackSolver: return "BackSolver";
837 case ocHypGeomDist: return "HypGeomDist";
838 case ocHypGeomDist_MS: return "HypGeomDist_MS";
839 case ocLogNormDist: return "LogNormDist";
840 case ocLogNormDist_MS: return "LogNormDist_MS";
841 case ocTDist: return "TDist";
842 case ocTDist_MS: return "TDist_MS";
843 case ocTDist_RT: return "TDist_RT";
844 case ocTDist_2T: return "TDist_2T";
845 case ocFDist: return "FDist";
846 case ocFDist_LT: return "FDist_LT";
847 case ocFDist_RT: return "FDist_RT";
848 case ocChiDist: return "ChiDist";
849 case ocChiDist_MS: return "ChiDist_MS";
850 case ocChiSqDist: return "ChiSqDist";
851 case ocChiSqDist_MS: return "ChiSqDist_MS";
852 case ocChiSqInv: return "ChiSqInv";
853 case ocChiSqInv_MS: return "ChiSqInv_MS";
854 case ocWeibull: return "Weibull";
855 case ocWeibull_MS: return "Weibull_MS";
856 case ocNegBinomVert: return "NegBinomVert";
857 case ocNegBinomDist_MS: return "NegBinomDist_MS";
858 case ocCritBinom: return "CritBinom";
859 case ocKurt: return "Kurt";
860 case ocHarMean: return "HarMean";
861 case ocGeoMean: return "GeoMean";
862 case ocStandard: return "Standard";
863 case ocAveDev: return "AveDev";
864 case ocSkew: return "Skew";
865 case ocSkewp: return "Skewp";
866 case ocDevSq: return "DevSq";
867 case ocMedian: return "Median";
868 case ocModalValue: return "ModalValue";
869 case ocModalValue_MS: return "ModalValue_MS";
870 case ocModalValue_Multi: return "ModalValue_Multi";
871 case ocZTest: return "ZTest";
872 case ocZTest_MS: return "ZTest_MS";
873 case ocAggregate: return "Aggregate";
874 case ocTTest: return "TTest";
875 case ocTTest_MS: return "TTest_MS";
876 case ocRank: return "Rank";
877 case ocPercentile: return "Percentile";
878 case ocPercentrank: return "Percentrank";
879 case ocPercentile_Inc: return "Percentile_Inc";
880 case ocPercentrank_Inc: return "Percentrank_Inc";
881 case ocQuartile_Inc: return "Quartile_Inc";
882 case ocRank_Eq: return "Rank_Eq";
883 case ocPercentile_Exc: return "Percentile_Exc";
884 case ocPercentrank_Exc: return "Percentrank_Exc";
885 case ocQuartile_Exc: return "Quartile_Exc";
886 case ocRank_Avg: return "Rank_Avg";
887 case ocLarge: return "Large";
888 case ocSmall: return "Small";
889 case ocFrequency: return "Frequency";
890 case ocQuartile: return "Quartile";
891 case ocNormInv: return "NormInv";
892 case ocNormInv_MS: return "NormInv_MS";
893 case ocConfidence: return "Confidence";
894 case ocConfidence_N: return "Confidence_N";
895 case ocConfidence_T: return "Confidence_T";
896 case ocFTest: return "FTest";
897 case ocFTest_MS: return "FTest_MS";
898 case ocTrimMean: return "TrimMean";
899 case ocProb: return "Prob";
900 case ocCorrel: return "Correl";
901 case ocCovar: return "Covar";
902 case ocCovarianceP: return "CovarianceP";
903 case ocCovarianceS: return "CovarianceS";
904 case ocPearson: return "Pearson";
905 case ocRSQ: return "RSQ";
906 case ocSTEYX: return "STEYX";
907 case ocSlope: return "Slope";
908 case ocIntercept: return "Intercept";
909 case ocTrend: return "Trend";
910 case ocGrowth: return "Growth";
911 case ocLinest: return "Linest";
912 case ocLogest: return "Logest";
913 case ocForecast: return "Forecast";
914 case ocForecast_ETS_ADD: return "Forecast_ETS_ADD";
915 case ocForecast_ETS_SEA: return "Forecast_ETS_SEA";
916 case ocForecast_ETS_MUL: return "Forecast_ETS_MUL";
917 case ocForecast_ETS_PIA: return "Forecast_ETS_PIA";
918 case ocForecast_ETS_PIM: return "Forecast_ETS_PIM";
919 case ocForecast_ETS_STA: return "Forecast_ETS_STA";
920 case ocForecast_ETS_STM: return "Forecast_ETS_STM";
921 case ocForecast_LIN: return "Forecast_LIN";
922 case ocChiInv: return "ChiInv";
923 case ocChiInv_MS: return "ChiInv_MS";
924 case ocGammaDist: return "GammaDist";
925 case ocGammaDist_MS: return "GammaDist_MS";
926 case ocGammaInv: return "GammaInv";
927 case ocGammaInv_MS: return "GammaInv_MS";
928 case ocTInv: return "TInv";
929 case ocTInv_2T: return "TInv_2T";
930 case ocTInv_MS: return "TInv_MS";
931 case ocFInv: return "FInv";
932 case ocFInv_LT: return "FInv_LT";
933 case ocFInv_RT: return "FInv_RT";
934 case ocChiTest: return "ChiTest";
935 case ocChiTest_MS: return "ChiTest_MS";
936 case ocLogInv: return "LogInv";
937 case ocLogInv_MS: return "LogInv_MS";
938 case ocTableOp: return "TableOp";
939 case ocBetaDist: return "BetaDist";
940 case ocBetaInv: return "BetaInv";
941 case ocBetaDist_MS: return "BetaDist_MS";
942 case ocBetaInv_MS: return "BetaInv_MS";
943 case ocBitAnd: return "BitAnd";
944 case ocBitOr: return "BitOr";
945 case ocBitXor: return "BitXor";
946 case ocBitRshift: return "BitRshift";
947 case ocBitLshift: return "BitLshift";
948 case ocWeek: return "Week";
949 case ocIsoWeeknum: return "IsoWeeknum";
950 case ocWeeknumOOo: return "WeeknumOOo";
951 case ocGetDayOfWeek: return "GetDayOfWeek";
952 case ocNetWorkdays: return "NetWorkdays";
953 case ocNetWorkdays_MS: return "NetWorkdays_MS";
954 case ocWorkday_MS: return "Workday_MS";
955 case ocNoName: return "NoName";
956 case ocStyle: return "Style";
957 case ocDde: return "Dde";
958 case ocBase: return "Base";
959 case ocSheet: return "Sheet";
960 case ocSheets: return "Sheets";
961 case ocMinA: return "MinA";
962 case ocMaxA: return "MaxA";
963 case ocAverageA: return "AverageA";
964 case ocStDevA: return "StDevA";
965 case ocStDevPA: return "StDevPA";
966 case ocVarA: return "VarA";
967 case ocVarPA: return "VarPA";
968 case ocEasterSunday: return "EasterSunday";
969 case ocDecimal: return "Decimal";
970 case ocConvertOOo: return "ConvertOOo";
971 case ocRoman: return "Roman";
972 case ocHyperLink: return "HyperLink";
973 case ocGetPivotData: return "GetPivotData";
974 case ocEuroConvert: return "EuroConvert";
975 case ocFilterXML: return "FilterXML";
976 case ocWebservice: return "Webservice";
977 case ocColor: return "Color";
978 case ocErf_MS: return "Erf_MS";
979 case ocErfc_MS: return "Erfc_MS";
980 case ocEncodeURL: return "EncodeURL";
981 case ocFourier: return "Fourier";
982 case ocRandbetweenNV: return "RandbetweenNV";
983 case ocTTT: return "TTT";
984 case ocDebugVar: return "DebugVar";
985 case ocDataToken1: return "DataToken1";
986 case ocNone: return "None";
987 }
988 std::ostringstream os;
989 os << static_cast<int>(eCode);
990 return os.str();
991}
992
993#endif
994
995/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
#define SC_OPCODE_BAD
Definition: compiler.hxx:40
#define SC_OPCODE_SLN
Definition: compiler.hxx:263
#define SC_OPCODE_T_TEST
Definition: compiler.hxx:343
#define SC_OPCODE_GAUSS
Definition: compiler.hxx:157
#define SC_OPCODE_NPER
Definition: compiler.hxx:271
#define SC_OPCODE_PERMUT
Definition: compiler.hxx:255
#define SC_OPCODE_NO_VALUE
Definition: compiler.hxx:114
#define SC_OPCODE_REPLACE
Definition: compiler.hxx:306
#define SC_OPCODE_CONFIDENCE_N
Definition: compiler.hxx:441
#define SC_OPCODE_RANK_EQ
Definition: compiler.hxx:469
#define SC_OPCODE_ST_DEV_P_MS
Definition: compiler.hxx:428
#define SC_OPCODE_GREATER_EQUAL
Definition: compiler.hxx:89
#define SC_OPCODE_CURRENT
Definition: compiler.hxx:115
#define SC_OPCODE_NOMINAL
Definition: compiler.hxx:278
#define SC_OPCODE_INT
Definition: compiler.hxx:155
#define SC_OPCODE_BAHTTEXT
Definition: compiler.hxx:196
#define SC_OPCODE_ST_DEV_S
Definition: compiler.hxx:429
#define SC_OPCODE_SUM_PRODUCT
Definition: compiler.hxx:226
#define SC_OPCODE_LOWER
Definition: compiler.hxx:178
#define SC_OPCODE_EXP_DIST_MS
Definition: compiler.hxx:448
#define SC_OPCODE_NOT
Definition: compiler.hxx:208
#define SC_OPCODE_INDEX
Definition: compiler.hxx:303
#define SC_OPCODE_DEG
Definition: compiler.hxx:121
#define SC_OPCODE_ROUND
Definition: compiler.hxx:217
#define SC_OPCODE_GET_TIME_VALUE
Definition: compiler.hxx:173
#define SC_OPCODE_PERCENTILE_INC
Definition: compiler.hxx:466
#define SC_OPCODE_UNION
Definition: compiler.hxx:93
#define SC_OPCODE_F_DIST_LT
Definition: compiler.hxx:443
#define SC_OPCODE_WEEK
Definition: compiler.hxx:378
#define SC_OPCODE_DB_AREA
Definition: compiler.hxx:45
#define SC_OPCODE_BITXOR
Definition: compiler.hxx:410
#define SC_OPCODE_IF
Definition: compiler.hxx:32
#define SC_OPCODE_FILTERXML
Definition: compiler.hxx:424
#define SC_OPCODE_STEYX
Definition: compiler.hxx:360
#define SC_OPCODE_MISSING
Definition: compiler.hxx:39
#define SC_OPCODE_PROPER
Definition: compiler.hxx:177
#define SC_OPCODE_SEP
Definition: compiler.hxx:38
#define SC_OPCODE_RANDOM
Definition: compiler.hxx:109
#define SC_OPCODE_NEG_BINOM_VERT
Definition: compiler.hxx:331
#define SC_OPCODE_CHI_TEST_MS
Definition: compiler.hxx:438
#define SC_OPCODE_IS_EVEN
Definition: compiler.hxx:169
#define SC_OPCODE_EQUAL
Definition: compiler.hxx:84
#define SC_OPCODE_B
Definition: compiler.hxx:248
#define SC_OPCODE_GET_DATE
Definition: compiler.hxx:231
#define SC_OPCODE_RANDOM_NV
Definition: compiler.hxx:116
#define SC_OPCODE_QUARTILE_EXC
Definition: compiler.hxx:472
#define SC_OPCODE_DATA_TOKEN_1
Definition: compiler.hxx:525
#define SC_OPCODE_ADDRESS
Definition: compiler.hxx:293
#define SC_OPCODE_RANK_AVG
Definition: compiler.hxx:473
#define SC_OPCODE_DB_STD_DEV_P
Definition: compiler.hxx:289
#define SC_OPCODE_FORECAST_ETS_PIA
Definition: compiler.hxx:495
#define SC_OPCODE_FOURIER
Definition: compiler.hxx:511
#define SC_OPCODE_QUARTILE
Definition: compiler.hxx:350
#define SC_OPCODE_ARRAY_COL_SEP
Definition: compiler.hxx:54
#define SC_OPCODE_CHOOSE
Definition: compiler.hxx:35
#define SC_OPCODE_GAMMA
Definition: compiler.hxx:201
#define SC_OPCODE_SUM_XMY2
Definition: compiler.hxx:230
#define SC_OPCODE_LOG_INV
Definition: compiler.hxx:374
#define SC_OPCODE_LOG_NORM_DIST
Definition: compiler.hxx:326
#define SC_OPCODE_PI
Definition: compiler.hxx:108
#define SC_OPCODE_FACT
Definition: compiler.hxx:146
#define SC_OPCODE_AGGREGATE
Definition: compiler.hxx:483
#define SC_OPCODE_DB_VAR
Definition: compiler.hxx:290
#define SC_OPCODE_RIGHT
Definition: compiler.hxx:311
#define SC_OPCODE_PRODUCT
Definition: compiler.hxx:238
#define SC_OPCODE_TAN_HYP
Definition: compiler.hxx:133
#define SC_OPCODE_MID
Definition: compiler.hxx:313
#define SC_OPCODE_LOG_NORM_DIST_MS
Definition: compiler.hxx:454
#define SC_OPCODE_SKIP
Definition: compiler.hxx:63
#define SC_OPCODE_GET_YEAR
Definition: compiler.hxx:147
#define SC_OPCODE_LOG
Definition: compiler.hxx:221
#define SC_OPCODE_ARC_COT_HYP
Definition: compiler.hxx:138
#define SC_OPCODE_PEARSON
Definition: compiler.hxx:358
#define SC_OPCODE_CHAR
Definition: compiler.hxx:183
#define SC_OPCODE_ERROR_NAME
Definition: compiler.hxx:71
#define SC_OPCODE_EXACT
Definition: compiler.hxx:309
#define SC_OPCODE_DB_MIN
Definition: compiler.hxx:286
#define SC_OPCODE_SHEETS
Definition: compiler.hxx:385
#define SC_OPCODE_T_DIST_MS
Definition: compiler.hxx:460
#define SC_OPCODE_MAT_TRANS
Definition: compiler.hxx:322
#define SC_OPCODE_GAMMA_INV_MS
Definition: compiler.hxx:453
#define SC_OPCODE_REPLACEB
Definition: compiler.hxx:507
#define SC_OPCODE_MOD
Definition: compiler.hxx:225
#define SC_OPCODE_MODAL_VALUE_MS
Definition: compiler.hxx:474
#define SC_OPCODE_STANDARD
Definition: compiler.hxx:336
#define SC_OPCODE_VBD
Definition: compiler.hxx:261
#define SC_OPCODE_TABLE_REF_CLOSE
Definition: compiler.hxx:56
#define SC_OPCODE_FIND
Definition: compiler.hxx:308
#define SC_OPCODE_CLEAN
Definition: compiler.hxx:182
#define SC_OPCODE_SEARCHB
Definition: compiler.hxx:509
#define SC_OPCODE_MAT_INV
Definition: compiler.hxx:320
#define SC_OPCODE_T_TEST_MS
Definition: compiler.hxx:465
#define SC_OPCODE_GET_DIFF_DATE
Definition: compiler.hxx:233
#define SC_OPCODE_TEXT
Definition: compiler.hxx:314
#define SC_OPCODE_COUNT_IFS
Definition: compiler.hxx:418
#define SC_OPCODE_FISHER_INV
Definition: compiler.hxx:189
#define SC_OPCODE_TABLE_REF_ITEM_ALL
Definition: compiler.hxx:57
#define SC_OPCODE_LESS_EQUAL
Definition: compiler.hxx:88
#define SC_OPCODE_VALUE
Definition: compiler.hxx:181
#define SC_OPCODE_SMALL
Definition: compiler.hxx:348
#define SC_OPCODE_EXTERNAL
Definition: compiler.hxx:29
#define SC_OPCODE_TABLE_REF_ITEM_HEADERS
Definition: compiler.hxx:58
#define SC_OPCODE_MAT_REF
Definition: compiler.hxx:44
#define SC_OPCODE_DEBUG_VAR
Definition: compiler.hxx:521
#define SC_OPCODE_DB_COUNT
Definition: compiler.hxx:281
#define SC_OPCODE_ST_DEV_A
Definition: compiler.hxx:389
#define SC_OPCODE_ERFC_MS
Definition: compiler.hxx:204
#define SC_OPCODE_POISSON_DIST
Definition: compiler.hxx:252
#define SC_OPCODE_NEG_BINOM_DIST_MS
Definition: compiler.hxx:476
#define SC_OPCODE_COVARIANCE_P
Definition: compiler.hxx:427
#define SC_OPCODE_TABLE_REF_ITEM_TOTALS
Definition: compiler.hxx:60
#define SC_OPCODE_NONE
Definition: compiler.hxx:527
#define SC_OPCODE_VAR_S
Definition: compiler.hxx:431
#define SC_OPCODE_PMT
Definition: compiler.hxx:264
#define SC_OPCODE_TRUNC
Definition: compiler.hxx:220
#define SC_OPCODE_MATCH
Definition: compiler.hxx:294
#define SC_OPCODE_GEO_MEAN
Definition: compiler.hxx:335
#define SC_OPCODE_SHEET
Definition: compiler.hxx:384
#define SC_OPCODE_CORREL
Definition: compiler.hxx:356
#define SC_OPCODE_PERCENTILE_EXC
Definition: compiler.hxx:470
#define SC_OPCODE_MAT_DET
Definition: compiler.hxx:319
#define SC_OPCODE_TABLE_REF_ITEM_THIS_ROW
Definition: compiler.hxx:61
#define SC_OPCODE_HYPERLINK
Definition: compiler.hxx:400
#define SC_OPCODE_INTERNAL_BEGIN
Definition: compiler.hxx:519
#define SC_OPCODE_LARGE
Definition: compiler.hxx:347
#define SC_OPCODE_IS_ERROR
Definition: compiler.hxx:168
#define SC_OPCODE_IF_NA
Definition: compiler.hxx:34
#define SC_OPCODE_CEIL
Definition: compiler.hxx:215
#define SC_OPCODE_COSECANT_HYP
Definition: compiler.hxx:141
#define SC_OPCODE_QUARTILE_INC
Definition: compiler.hxx:468
#define SC_OPCODE_PERCENT_RANK_INC
Definition: compiler.hxx:467
#define SC_OPCODE_AREAS
Definition: compiler.hxx:304
#define SC_OPCODE_BINOM_DIST
Definition: compiler.hxx:251
#define SC_OPCODE_CURRENCY
Definition: compiler.hxx:305
#define SC_OPCODE_LOOKUP
Definition: compiler.hxx:298
#define SC_OPCODE_GET_HOUR
Definition: compiler.hxx:150
#define SC_OPCODE_GREATER
Definition: compiler.hxx:87
#define SC_OPCODE_ROUND_DOWN
Definition: compiler.hxx:219
#define SC_OPCODE_DIV
Definition: compiler.hxx:81
#define SC_OPCODE_ARABIC
Definition: compiler.hxx:194
#define SC_OPCODE_N
Definition: compiler.hxx:171
#define SC_OPCODE_CEIL_PRECISE
Definition: compiler.hxx:486
#define SC_OPCODE_LINEST
Definition: compiler.hxx:365
#define SC_OPCODE_MIRR
Definition: compiler.hxx:397
#define SC_OPCODE_GET_MONTH
Definition: compiler.hxx:148
#define SC_OPCODE_SUM_X2MY2
Definition: compiler.hxx:228
#define SC_OPCODE_GET_TIME
Definition: compiler.hxx:232
#define SC_OPCODE_COLUMNS
Definition: compiler.hxx:265
#define SC_OPCODE_T
Definition: compiler.hxx:180
#define SC_OPCODE_SECANT
Definition: compiler.hxx:140
#define SC_OPCODE_COL_ROW_NAME_AUTO
Definition: compiler.hxx:49
#define SC_OPCODE_MINIFS_MS
Definition: compiler.hxx:504
#define SC_OPCODE_AVERAGE_IFS
Definition: compiler.hxx:417
#define SC_OPCODE_MIN_A
Definition: compiler.hxx:386
#define SC_OPCODE_COLUMN
Definition: compiler.hxx:267
#define SC_OPCODE_NORM_DIST_MS
Definition: compiler.hxx:456
#define SC_OPCODE_S_NORM_INV_MS
Definition: compiler.hxx:459
#define SC_OPCODE_HAR_MEAN
Definition: compiler.hxx:334
#define SC_OPCODE_PERMUTATION_A
Definition: compiler.hxx:256
#define SC_OPCODE_ERROR_NA
Definition: compiler.hxx:73
#define SC_OPCODE_ARC_COT
Definition: compiler.hxx:130
#define SC_OPCODE_STOP
Definition: compiler.hxx:28
#define SC_OPCODE_COT_HYP
Definition: compiler.hxx:134
#define SC_OPCODE_TRIM_MEAN
Definition: compiler.hxx:354
#define SC_OPCODE_DB_SUM
Definition: compiler.hxx:280
#define SC_OPCODE_WHITESPACE
Definition: compiler.hxx:43
#define SC_OPCODE_IS_VALUE
Definition: compiler.hxx:164
#define SC_OPCODE_IS_NON_STRING
Definition: compiler.hxx:160
#define SC_OPCODE_IS_REF
Definition: compiler.hxx:163
#define SC_OPCODE_PHI
Definition: compiler.hxx:156
#define SC_OPCODE_COUNT_2
Definition: compiler.hxx:241
#define SC_OPCODE_OFFSET
Definition: compiler.hxx:302
#define SC_OPCODE_ARRAY_OPEN
Definition: compiler.hxx:51
#define SC_OPCODE_LENB
Definition: compiler.hxx:420
#define SC_OPCODE_FV
Definition: compiler.hxx:270
#define SC_OPCODE_NAME
Definition: compiler.hxx:30
#define SC_OPCODE_CEIL_MS
Definition: compiler.hxx:478
#define SC_OPCODE_STD_NORM_DIST_MS
Definition: compiler.hxx:458
#define SC_OPCODE_SQRT
Definition: compiler.hxx:145
#define SC_OPCODE_PERCENTILE
Definition: compiler.hxx:345
#define SC_OPCODE_INTERSECT
Definition: compiler.hxx:92
#define SC_OPCODE_MEDIAN
Definition: compiler.hxx:340
#define SC_OPCODE_RIGHTB
Definition: compiler.hxx:421
#define SC_OPCODE_F_TEST_MS
Definition: compiler.hxx:447
#define SC_OPCODE_ISOWEEKNUM
Definition: compiler.hxx:207
#define SC_OPCODE_STD_NORM_DIST
Definition: compiler.hxx:187
#define SC_OPCODE_FALSE
Definition: compiler.hxx:111
#define SC_OPCODE_ARRAY_CLOSE
Definition: compiler.hxx:52
#define SC_OPCODE_FREQUENCY
Definition: compiler.hxx:349
#define SC_OPCODE_ARC_TAN
Definition: compiler.hxx:129
#define SC_OPCODE_S_NORM_INV
Definition: compiler.hxx:190
#define SC_OPCODE_IS_LOGICAL
Definition: compiler.hxx:161
#define SC_OPCODE_ARC_COS_HYP
Definition: compiler.hxx:136
#define SC_OPCODE_FISHER
Definition: compiler.hxx:188
#define SC_OPCODE_T_DIST_2T
Definition: compiler.hxx:462
#define SC_OPCODE_F_INV_LT
Definition: compiler.hxx:445
#define SC_OPCODE_BETA_DIST_MS
Definition: compiler.hxx:432
#define SC_OPCODE_F_DIST_RT
Definition: compiler.hxx:444
#define SC_OPCODE_CLOSE
Definition: compiler.hxx:37
#define SC_OPCODE_XOR
Definition: compiler.hxx:414
#define SC_OPCODE_STYLE
Definition: compiler.hxx:381
#define SC_OPCODE_Z_TEST_MS
Definition: compiler.hxx:477
#define SC_OPCODE_BITAND
Definition: compiler.hxx:408
#define SC_OPCODE_RANGE
Definition: compiler.hxx:94
#define SC_OPCODE_MODAL_VALUE_MULTI
Definition: compiler.hxx:475
#define SC_OPCODE_JIS
Definition: compiler.hxx:197
#define SC_OPCODE_POW
Definition: compiler.hxx:83
#define SC_OPCODE_GCD
Definition: compiler.hxx:223
#define SC_OPCODE_COMBIN
Definition: compiler.hxx:253
#define SC_OPCODE_MUL
Definition: compiler.hxx:80
#define SC_OPCODE_DB
Definition: compiler.hxx:260
#define SC_OPCODE_COVAR
Definition: compiler.hxx:357
#define SC_OPCODE_WEEKNUM_OOO
Definition: compiler.hxx:491
#define SC_OPCODE_SPACES
Definition: compiler.hxx:42
#define SC_OPCODE_GROWTH
Definition: compiler.hxx:364
#define SC_OPCODE_SUBSTITUTE
Definition: compiler.hxx:315
#define SC_OPCODE_FORECAST_ETS_STM
Definition: compiler.hxx:498
#define SC_OPCODE_BASE
Definition: compiler.hxx:383
#define SC_OPCODE_IPMT
Definition: compiler.hxx:273
#define SC_OPCODE_CUM_PRINC
Definition: compiler.hxx:276
#define SC_OPCODE_COL_ROW_NAME
Definition: compiler.hxx:48
#define SC_OPCODE_LOGEST
Definition: compiler.hxx:366
#define SC_OPCODE_IS_ODD
Definition: compiler.hxx:170
#define SC_OPCODE_IS_FORMULA
Definition: compiler.hxx:165
#define SC_OPCODE_SUM
Definition: compiler.hxx:237
#define SC_OPCODE_MAX
Definition: compiler.hxx:236
#define SC_OPCODE_BITRSHIFT
Definition: compiler.hxx:411
#define SC_OPCODE_ISPMT
Definition: compiler.hxx:399
#define SC_OPCODE_CODE
Definition: compiler.hxx:174
#define SC_OPCODE_SEARCH
Definition: compiler.hxx:312
#define SC_OPCODE_AVERAGE
Definition: compiler.hxx:239
#define SC_OPCODE_T_INV
Definition: compiler.hxx:371
#define SC_OPCODE_ARC_SIN_HYP
Definition: compiler.hxx:135
#define SC_OPCODE_UNICHAR
Definition: compiler.hxx:200
#define SC_OPCODE_GAMMA_DIST_MS
Definition: compiler.hxx:452
#define SC_OPCODE_MULTI_AREA
Definition: compiler.hxx:301
#define SC_OPCODE_CUM_IPMT
Definition: compiler.hxx:275
#define SC_OPCODE_CHISQ_DIST_MS
Definition: compiler.hxx:439
#define SC_OPCODE_ENCODEURL
Definition: compiler.hxx:206
#define SC_OPCODE_SUB_TOTAL
Definition: compiler.hxx:279
#define SC_OPCODE_LOG_INV_MS
Definition: compiler.hxx:455
#define SC_OPCODE_WEBSERVICE
Definition: compiler.hxx:425
#define SC_OPCODE_COMBIN_A
Definition: compiler.hxx:254
#define SC_OPCODE_GET_DIFF_DATE_360
Definition: compiler.hxx:234
#define SC_OPCODE_BETA_DIST
Definition: compiler.hxx:376
#define SC_OPCODE_GAMMA_LN_MS
Definition: compiler.hxx:202
#define SC_OPCODE_GET_MIN
Definition: compiler.hxx:151
#define SC_OPCODE_GAMMA_LN
Definition: compiler.hxx:191
#define SC_OPCODE_GET_DAY_OF_WEEK
Definition: compiler.hxx:379
#define SC_OPCODE_PROB
Definition: compiler.hxx:355
#define SC_OPCODE_NORM_DIST
Definition: compiler.hxx:249
#define SC_OPCODE_FORECAST_ETS_STA
Definition: compiler.hxx:497
#define SC_OPCODE_T_DIST_RT
Definition: compiler.hxx:461
#define SC_OPCODE_PDURATION
Definition: compiler.hxx:262
#define SC_OPCODE_WEIBULL
Definition: compiler.hxx:330
#define SC_OPCODE_DDE
Definition: compiler.hxx:382
#define SC_OPCODE_COLOR
Definition: compiler.hxx:484
#define SC_OPCODE_PV
Definition: compiler.hxx:257
#define SC_OPCODE_UNICODE
Definition: compiler.hxx:199
#define SC_OPCODE_CHI_INV_MS
Definition: compiler.hxx:437
#define SC_OPCODE_FORECAST_ETS_ADD
Definition: compiler.hxx:492
#define SC_OPCODE_ARC_COS
Definition: compiler.hxx:128
#define SC_OPCODE_HYP_GEOM_DIST
Definition: compiler.hxx:325
#define SC_OPCODE_DB_GET
Definition: compiler.hxx:284
#define SC_OPCODE_FLOOR_MS
Definition: compiler.hxx:480
#define SC_OPCODE_MAXIFS_MS
Definition: compiler.hxx:505
#define SC_OPCODE_ROUND_UP
Definition: compiler.hxx:218
#define SC_OPCODE_ERF_MS
Definition: compiler.hxx:203
#define SC_OPCODE_ERROR_NUM
Definition: compiler.hxx:72
#define SC_OPCODE_CHI_DIST_MS
Definition: compiler.hxx:436
#define SC_OPCODE_VAR_P_MS
Definition: compiler.hxx:430
#define SC_OPCODE_SECANT_HYP
Definition: compiler.hxx:142
#define SC_OPCODE_BINOM_DIST_MS
Definition: compiler.hxx:434
#define SC_OPCODE_TABLE_REF
Definition: compiler.hxx:46
#define SC_OPCODE_INTERNAL_END
Definition: compiler.hxx:522
#define SC_OPCODE_BETA_INV
Definition: compiler.hxx:377
#define SC_OPCODE_TEXTJOIN_MS
Definition: compiler.hxx:501
#define SC_OPCODE_EUROCONVERT
Definition: compiler.hxx:404
#define SC_OPCODE_COSECANT
Definition: compiler.hxx:139
#define SC_OPCODE_F_INV
Definition: compiler.hxx:372
#define SC_OPCODE_VAR
Definition: compiler.hxx:244
#define SC_OPCODE_PLUS_MINUS
Definition: compiler.hxx:153
#define SC_OPCODE_NETWORKDAYS
Definition: compiler.hxx:487
#define SC_OPCODE_GAMMA_INV
Definition: compiler.hxx:370
#define SC_OPCODE_BETA_INV_MS
Definition: compiler.hxx:433
#define SC_OPCODE_SLOPE
Definition: compiler.hxx:361
#define SC_OPCODE_SUM_X2DY2
Definition: compiler.hxx:229
#define SC_OPCODE_REPT
Definition: compiler.hxx:316
#define SC_OPCODE_UPPER
Definition: compiler.hxx:176
#define SC_OPCODE_F_DIST
Definition: compiler.hxx:328
#define SC_OPCODE_NO_NAME
Definition: compiler.hxx:380
#define SC_OPCODE_VAR_A
Definition: compiler.hxx:391
#define SC_OPCODE_ST_DEV_P
Definition: compiler.hxx:247
#define SC_OPCODE_ARRAY_ROW_SEP
Definition: compiler.hxx:53
#define SC_OPCODE_MACRO
Definition: compiler.hxx:47
#define SC_OPCODE_BINOM_INV
Definition: compiler.hxx:435
#define SC_OPCODE_CONVERT_OOO
Definition: compiler.hxx:395
#define SC_OPCODE_AVERAGE_IF
Definition: compiler.hxx:415
#define SC_OPCODE_RRI
Definition: compiler.hxx:269
#define SC_OPCODE_FLOOR
Definition: compiler.hxx:216
#define SC_OPCODE_IFS_MS
Definition: compiler.hxx:502
#define SC_OPCODE_PERCENT_RANK_EXC
Definition: compiler.hxx:471
#define SC_OPCODE_RANDBETWEEN_NV
Definition: compiler.hxx:512
#define SC_OPCODE_MAX_A
Definition: compiler.hxx:387
#define SC_OPCODE_ARC_TAN_2
Definition: compiler.hxx:214
#define SC_OPCODE_ST_DEV_P_A
Definition: compiler.hxx:390
#define SC_OPCODE_COT
Definition: compiler.hxx:126
#define SC_OPCODE_T_INV_2T
Definition: compiler.hxx:463
#define SC_OPCODE_NOT_EQUAL
Definition: compiler.hxx:85
#define SC_OPCODE_TTT
Definition: compiler.hxx:520
#define SC_OPCODE_OPEN
Definition: compiler.hxx:36
#define SC_OPCODE_IS_STRING
Definition: compiler.hxx:159
#define SC_OPCODE_COUNT
Definition: compiler.hxx:240
#define SC_OPCODE_OR
Definition: compiler.hxx:91
#define SC_OPCODE_CHI_TEST
Definition: compiler.hxx:373
#define SC_OPCODE_INFO
Definition: compiler.hxx:195
#define SC_OPCODE_WEIBULL_MS
Definition: compiler.hxx:451
#define SC_OPCODE_CHI_DIST
Definition: compiler.hxx:329
#define SC_OPCODE_NETWORKDAYS_MS
Definition: compiler.hxx:481
#define SC_OPCODE_MODAL_VALUE
Definition: compiler.hxx:341
#define SC_OPCODE_DDB
Definition: compiler.hxx:259
#define SC_OPCODE_Z_TEST
Definition: compiler.hxx:342
#define SC_OPCODE_SKEWP
Definition: compiler.hxx:419
#define SC_OPCODE_MIN
Definition: compiler.hxx:235
#define SC_OPCODE_GET_ACT_DATE
Definition: compiler.hxx:112
#define SC_OPCODE_CONFIDENCE_T
Definition: compiler.hxx:442
#define SC_OPCODE_CRIT_BINOM
Definition: compiler.hxx:332
#define SC_OPCODE_GAMMA_DIST
Definition: compiler.hxx:369
#define SC_OPCODE_WORKDAY_MS
Definition: compiler.hxx:482
#define SC_OPCODE_GET_PIVOT_DATA
Definition: compiler.hxx:403
#define SC_OPCODE_ERROR_VALUE
Definition: compiler.hxx:69
#define SC_OPCODE_LN
Definition: compiler.hxx:144
#define SC_OPCODE_FIXED
Definition: compiler.hxx:307
#define SC_OPCODE_SIN_HYP
Definition: compiler.hxx:131
#define SC_OPCODE_ARC_SIN
Definition: compiler.hxx:127
#define SC_OPCODE_EASTERSUNDAY
Definition: compiler.hxx:393
#define SC_OPCODE_ST_DEV
Definition: compiler.hxx:246
#define SC_OPCODE_GET_ACT_TIME
Definition: compiler.hxx:113
#define SC_OPCODE_PUSH
Definition: compiler.hxx:26
#define SC_OPCODE_ERROR_TYPE
Definition: compiler.hxx:192
#define SC_OPCODE_COS
Definition: compiler.hxx:124
#define SC_OPCODE_NEG_SUB
Definition: compiler.hxx:101
#define SC_OPCODE_BITLSHIFT
Definition: compiler.hxx:412
#define SC_OPCODE_ADD
Definition: compiler.hxx:78
#define SC_OPCODE_LEFT
Definition: compiler.hxx:310
#define SC_OPCODE_ROMAN
Definition: compiler.hxx:396
#define SC_OPCODE_FORECAST_LIN
Definition: compiler.hxx:499
#define SC_OPCODE_PPMT
Definition: compiler.hxx:274
#define SC_OPCODE_CONCAT_MS
Definition: compiler.hxx:500
#define SC_OPCODE_NORM_INV
Definition: compiler.hxx:351
#define SC_OPCODE_DB_COUNT_2
Definition: compiler.hxx:282
#define SC_OPCODE_TRIM
Definition: compiler.hxx:175
#define SC_OPCODE_LOG10
Definition: compiler.hxx:184
#define SC_OPCODE_AVERAGE_A
Definition: compiler.hxx:388
#define SC_OPCODE_NEG
Definition: compiler.hxx:209
#define SC_OPCODE_EXP
Definition: compiler.hxx:143
#define SC_OPCODE_POISSON_DIST_MS
Definition: compiler.hxx:450
#define SC_OPCODE_RANK
Definition: compiler.hxx:344
#define SC_OPCODE_STRINGXML
Definition: compiler.hxx:41
#define SC_OPCODE_LCM
Definition: compiler.hxx:224
#define SC_OPCODE_ERROR_DIVZERO
Definition: compiler.hxx:68
#define SC_OPCODE_TRUE
Definition: compiler.hxx:110
#define SC_OPCODE_COS_HYP
Definition: compiler.hxx:132
#define SC_OPCODE_DECIMAL
Definition: compiler.hxx:394
#define SC_OPCODE_FORMULA
Definition: compiler.hxx:193
#define SC_OPCODE_DB_AVERAGE
Definition: compiler.hxx:283
#define SC_OPCODE_IS_ERR
Definition: compiler.hxx:167
#define SC_OPCODE_SWITCH_MS
Definition: compiler.hxx:503
#define SC_OPCODE_RATE
Definition: compiler.hxx:272
#define SC_OPCODE_SIN
Definition: compiler.hxx:123
#define SC_OPCODE_VAR_P_A
Definition: compiler.hxx:392
#define SC_OPCODE_NPV
Definition: compiler.hxx:242
#define SC_OPCODE_LEFTB
Definition: compiler.hxx:422
#define SC_OPCODE_BACK_SOLVER
Definition: compiler.hxx:324
#define SC_OPCODE_TABLE_OP
Definition: compiler.hxx:375
#define SC_OPCODE_MAT_VALUE
Definition: compiler.hxx:318
#define SC_OPCODE_GET_DATEDIF
Definition: compiler.hxx:413
#define SC_OPCODE_ERROR_NULL
Definition: compiler.hxx:67
#define SC_OPCODE_TAN
Definition: compiler.hxx:125
#define SC_OPCODE_DB_VAR_P
Definition: compiler.hxx:291
#define SC_OPCODE_CHISQ_INV_MS
Definition: compiler.hxx:440
#define SC_OPCODE_REGEX
Definition: compiler.hxx:510
#define SC_OPCODE_MATRIX_UNIT
Definition: compiler.hxx:323
#define SC_OPCODE_ROW
Definition: compiler.hxx:268
#define SC_OPCODE_SUB
Definition: compiler.hxx:79
#define SC_OPCODE_ROWS
Definition: compiler.hxx:266
#define SC_OPCODE_FORECAST_ETS_SEA
Definition: compiler.hxx:493
#define SC_OPCODE_FLOOR_PRECISE
Definition: compiler.hxx:489
#define SC_OPCODE_SUM_SQ
Definition: compiler.hxx:227
#define SC_OPCODE_GET_DATE_VALUE
Definition: compiler.hxx:172
#define SC_OPCODE_AND
Definition: compiler.hxx:90
#define SC_OPCODE_T_INV_MS
Definition: compiler.hxx:464
#define SC_OPCODE_ODD
Definition: compiler.hxx:186
#define SC_OPCODE_CEIL_MATH
Definition: compiler.hxx:485
#define SC_OPCODE_CHI_INV
Definition: compiler.hxx:368
#define SC_OPCODE_COVARIANCE_S
Definition: compiler.hxx:426
#define SC_OPCODE_EXP_DIST
Definition: compiler.hxx:250
#define SC_OPCODE_AVE_DEV
Definition: compiler.hxx:337
#define SC_OPCODE_POWER
Definition: compiler.hxx:222
#define SC_OPCODE_RAWSUBTRACT
Definition: compiler.hxx:490
#define SC_OPCODE_SKEW
Definition: compiler.hxx:338
#define SC_OPCODE_EFFECT
Definition: compiler.hxx:277
#define SC_OPCODE_CELL
Definition: compiler.hxx:398
#define SC_OPCODE_ROUNDSIG
Definition: compiler.hxx:506
#define SC_OPCODE_VAR_P
Definition: compiler.hxx:245
#define SC_OPCODE_LEN
Definition: compiler.hxx:179
#define SC_OPCODE_NUMBERVALUE
Definition: compiler.hxx:405
#define SC_OPCODE_FORECAST_ETS_MUL
Definition: compiler.hxx:494
#define SC_OPCODE_NORM_INV_MS
Definition: compiler.hxx:457
#define SC_OPCODE_CEIL_ISO
Definition: compiler.hxx:479
#define SC_OPCODE_DB_MAX
Definition: compiler.hxx:285
#define SC_OPCODE_COUNT_IF
Definition: compiler.hxx:296
#define SC_OPCODE_H_LOOKUP
Definition: compiler.hxx:300
#define SC_OPCODE_FORECAST_ETS_PIM
Definition: compiler.hxx:496
#define SC_OPCODE_IS_NV
Definition: compiler.hxx:166
#define SC_OPCODE_ASC
Definition: compiler.hxx:198
#define SC_OPCODE_KURT
Definition: compiler.hxx:333
#define SC_OPCODE_ERROR_TYPE_ODF
Definition: compiler.hxx:205
#define SC_OPCODE_RAD
Definition: compiler.hxx:122
#define SC_OPCODE_DEV_SQ
Definition: compiler.hxx:339
#define SC_OPCODE_CHISQ_DIST
Definition: compiler.hxx:406
#define SC_OPCODE_EVEN
Definition: compiler.hxx:185
#define SC_OPCODE_COUNT_EMPTY_CELLS
Definition: compiler.hxx:295
#define SC_OPCODE_SUM_IF
Definition: compiler.hxx:297
#define SC_OPCODE_GET_SEC
Definition: compiler.hxx:152
#define SC_OPCODE_HYP_GEOM_DIST_MS
Definition: compiler.hxx:449
#define SC_OPCODE_RSQ
Definition: compiler.hxx:359
#define SC_OPCODE_GET_DAY
Definition: compiler.hxx:149
#define SC_OPCODE_TABLE_REF_OPEN
Definition: compiler.hxx:55
#define SC_OPCODE_MAT_MULT
Definition: compiler.hxx:321
#define SC_OPCODE_CALL
Definition: compiler.hxx:27
#define SC_OPCODE_ABS
Definition: compiler.hxx:154
#define SC_OPCODE_PERCENT_SIGN
Definition: compiler.hxx:50
#define SC_OPCODE_CONCAT
Definition: compiler.hxx:317
#define SC_OPCODE_SYD
Definition: compiler.hxx:258
#define SC_OPCODE_TREND
Definition: compiler.hxx:363
#define SC_OPCODE_TYPE
Definition: compiler.hxx:162
#define SC_OPCODE_ARC_TAN_HYP
Definition: compiler.hxx:137
#define SC_OPCODE_TABLE_REF_ITEM_DATA
Definition: compiler.hxx:59
#define SC_OPCODE_LESS
Definition: compiler.hxx:86
#define SC_OPCODE_DB_STD_DEV
Definition: compiler.hxx:288
#define SC_OPCODE_INTERCEPT
Definition: compiler.hxx:362
#define SC_OPCODE_T_DIST
Definition: compiler.hxx:327
#define SC_OPCODE_FORECAST
Definition: compiler.hxx:367
#define SC_OPCODE_F_INV_RT
Definition: compiler.hxx:446
#define SC_OPCODE_V_LOOKUP
Definition: compiler.hxx:299
#define SC_OPCODE_IS_EMPTY
Definition: compiler.hxx:158
#define SC_OPCODE_PERCENT_RANK
Definition: compiler.hxx:346
#define SC_OPCODE_BITOR
Definition: compiler.hxx:409
#define SC_OPCODE_IRR
Definition: compiler.hxx:243
#define SC_OPCODE_F_TEST
Definition: compiler.hxx:353
#define SC_OPCODE_CONFIDENCE
Definition: compiler.hxx:352
#define SC_OPCODE_FLOOR_MATH
Definition: compiler.hxx:488
#define SC_OPCODE_SUM_IFS
Definition: compiler.hxx:416
#define SC_OPCODE_MIDB
Definition: compiler.hxx:423
#define SC_OPCODE_CHISQ_INV
Definition: compiler.hxx:407
#define SC_OPCODE_DB_PRODUCT
Definition: compiler.hxx:287
#define SC_OPCODE_FINDB
Definition: compiler.hxx:508
#define SC_OPCODE_INDIRECT
Definition: compiler.hxx:292
#define SC_OPCODE_IF_ERROR
Definition: compiler.hxx:33
#define SC_OPCODE_ERROR_REF
Definition: compiler.hxx:70
#define SC_OPCODE_AMPERSAND
Definition: compiler.hxx:82
std::string OpCodeEnumToString(OpCode eCode)
Definition: opcode.hxx:523
OpCode
Definition: opcode.hxx:29
@ ocSumProduct
Definition: opcode.hxx:221
@ ocGetTimeValue
Definition: opcode.hxx:168
@ ocModalValue
Definition: opcode.hxx:390
@ ocCurrent
Definition: opcode.hxx:109
@ ocArrayOpen
Definition: opcode.hxx:47
@ ocNot
Definition: opcode.hxx:112
@ ocBase
Definition: opcode.hxx:482
@ ocCosHyp
Definition: opcode.hxx:125
@ ocCombinA
Definition: opcode.hxx:261
@ ocCountIfs
Definition: opcode.hxx:316
@ ocNegSub
Definition: opcode.hxx:100
@ ocEasterSunday
Definition: opcode.hxx:492
@ ocChar
Definition: opcode.hxx:178
@ ocLen
Definition: opcode.hxx:174
@ ocSkew
Definition: opcode.hxx:386
@ ocQuartile_Exc
Definition: opcode.hxx:407
@ ocDebugVar
Definition: opcode.hxx:510
@ ocTableRefItemThisRow
Definition: opcode.hxx:62
@ ocRank_Avg
Definition: opcode.hxx:408
@ ocInternalBegin
Definition: opcode.hxx:508
@ ocPercentile_Exc
Definition: opcode.hxx:405
@ ocTanHyp
Definition: opcode.hxx:126
@ ocIsEven
Definition: opcode.hxx:163
@ ocSqrt
Definition: opcode.hxx:138
@ ocMatrixUnit
Definition: opcode.hxx:355
@ ocChiDist
Definition: opcode.hxx:370
@ ocB
Definition: opcode.hxx:250
@ ocNetWorkdays
Definition: opcode.hxx:476
@ ocBetaDist_MS
Definition: opcode.hxx:463
@ ocForecast_ETS_PIA
Definition: opcode.hxx:439
@ ocAsc
Definition: opcode.hxx:198
@ ocCeil_MS
Definition: opcode.hxx:204
@ ocChiSqInv_MS
Definition: opcode.hxx:375
@ ocTTT
Definition: opcode.hxx:509
@ ocBackSolver
Definition: opcode.hxx:357
@ ocDiv
Definition: opcode.hxx:84
@ ocAggregate
Definition: opcode.hxx:395
@ ocTableRef
Definition: opcode.hxx:66
@ ocSmall
Definition: opcode.hxx:410
@ ocColumns
Definition: opcode.hxx:272
@ ocConcat
Definition: opcode.hxx:337
@ ocSumIf
Definition: opcode.hxx:312
@ ocMod
Definition: opcode.hxx:220
@ ocTTest
Definition: opcode.hxx:396
@ ocCot
Definition: opcode.hxx:119
@ ocChiInv_MS
Definition: opcode.hxx:445
@ ocIRR
Definition: opcode.hxx:239
@ ocValue
Definition: opcode.hxx:176
@ ocDBCount
Definition: opcode.hxx:295
@ ocDBMax
Definition: opcode.hxx:299
@ ocTableRefItemHeaders
Definition: opcode.hxx:59
@ ocArcCosHyp
Definition: opcode.hxx:129
@ ocCountIf
Definition: opcode.hxx:311
@ ocCall
Definition: opcode.hxx:32
@ ocReplaceB
Definition: opcode.hxx:344
@ ocHypGeomDist
Definition: opcode.hxx:359
@ ocFalse
Definition: opcode.hxx:105
@ ocRoundUp
Definition: opcode.hxx:213
@ ocStyle
Definition: opcode.hxx:480
@ ocTrimMean
Definition: opcode.hxx:420
@ ocGauss
Definition: opcode.hxx:150
@ ocInfo
Definition: opcode.hxx:195
@ ocNPV
Definition: opcode.hxx:238
@ ocAmpersand
Definition: opcode.hxx:85
@ ocExpDist_MS
Definition: opcode.hxx:254
@ ocPercentrank_Inc
Definition: opcode.hxx:402
@ ocChiSqDist
Definition: opcode.hxx:372
@ ocStringXML
Definition: opcode.hxx:54
@ ocSecant
Definition: opcode.hxx:133
@ ocFInv_LT
Definition: opcode.hxx:454
@ ocIsEmpty
Definition: opcode.hxx:151
@ ocEven
Definition: opcode.hxx:180
@ ocDDB
Definition: opcode.hxx:266
@ ocWebservice
Definition: opcode.hxx:500
@ ocRSQ
Definition: opcode.hxx:427
@ ocUnichar
Definition: opcode.hxx:200
@ ocBetaInv_MS
Definition: opcode.hxx:464
@ ocUnicode
Definition: opcode.hxx:199
@ ocIsRef
Definition: opcode.hxx:157
@ ocDde
Definition: opcode.hxx:481
@ ocTrunc
Definition: opcode.hxx:215
@ ocPermut
Definition: opcode.hxx:262
@ ocIndex
Definition: opcode.hxx:322
@ ocTDist_MS
Definition: opcode.hxx:364
@ ocPearson
Definition: opcode.hxx:426
@ ocFind
Definition: opcode.hxx:328
@ ocStDev
Definition: opcode.hxx:246
@ ocAreas
Definition: opcode.hxx:323
@ ocGrowth
Definition: opcode.hxx:432
@ ocCell
Definition: opcode.hxx:156
@ ocMultiArea
Definition: opcode.hxx:320
@ ocLessEqual
Definition: opcode.hxx:91
@ ocGetYear
Definition: opcode.hxx:140
@ ocWeibull
Definition: opcode.hxx:376
@ ocConvertOOo
Definition: opcode.hxx:494
@ ocCosecantHyp
Definition: opcode.hxx:134
@ ocNone
Definition: opcode.hxx:515
@ ocOr
Definition: opcode.hxx:94
@ ocFisherInv
Definition: opcode.hxx:185
@ ocNotEqual
Definition: opcode.hxx:88
@ ocAbs
Definition: opcode.hxx:147
@ ocPoissonDist_MS
Definition: opcode.hxx:259
@ ocAddress
Definition: opcode.hxx:308
@ ocSin
Definition: opcode.hxx:116
@ ocAverageIfs
Definition: opcode.hxx:315
@ ocArcTan2
Definition: opcode.hxx:202
@ ocLeftB
Definition: opcode.hxx:342
@ ocIntercept
Definition: opcode.hxx:430
@ ocDBVarP
Definition: opcode.hxx:305
@ ocClose
Definition: opcode.hxx:43
@ ocDeg
Definition: opcode.hxx:114
@ ocPMT
Definition: opcode.hxx:271
@ ocColRowName
Definition: opcode.hxx:68
@ ocBetaInv
Definition: opcode.hxx:462
@ ocIsNA
Definition: opcode.hxx:160
@ ocFloor
Definition: opcode.hxx:208
@ ocCumIpmt
Definition: opcode.hxx:282
@ ocMatInv
Definition: opcode.hxx:352
@ ocN
Definition: opcode.hxx:165
@ ocSumSQ
Definition: opcode.hxx:222
@ ocHypGeomDist_MS
Definition: opcode.hxx:360
@ ocRegex
Definition: opcode.hxx:348
@ ocNormDist
Definition: opcode.hxx:251
@ ocIndirect
Definition: opcode.hxx:307
@ ocHLookup
Definition: opcode.hxx:319
@ ocSubTotal
Definition: opcode.hxx:286
@ ocChiSqInv
Definition: opcode.hxx:374
@ ocGeoMean
Definition: opcode.hxx:383
@ ocFV
Definition: opcode.hxx:277
@ ocBahtText
Definition: opcode.hxx:196
@ ocRound
Definition: opcode.hxx:212
@ ocLCM
Definition: opcode.hxx:219
@ ocVarS
Definition: opcode.hxx:245
@ ocArrayRowSep
Definition: opcode.hxx:49
@ ocFDist_LT
Definition: opcode.hxx:368
@ ocPpmt
Definition: opcode.hxx:281
@ ocRow
Definition: opcode.hxx:275
@ ocGetActTime
Definition: opcode.hxx:107
@ ocMacro
Definition: opcode.hxx:67
@ ocQuartile
Definition: opcode.hxx:412
@ ocRandomNV
Definition: opcode.hxx:110
@ ocNominal
Definition: opcode.hxx:285
@ ocProduct
Definition: opcode.hxx:234
@ ocForecast_ETS_ADD
Definition: opcode.hxx:436
@ ocGammaLn
Definition: opcode.hxx:188
@ ocSYD
Definition: opcode.hxx:265
@ ocGetMonth
Definition: opcode.hxx:141
@ ocChiSqDist_MS
Definition: opcode.hxx:373
@ ocExp
Definition: opcode.hxx:136
@ ocNegBinomDist_MS
Definition: opcode.hxx:379
@ ocAverageA
Definition: opcode.hxx:487
@ ocCode
Definition: opcode.hxx:169
@ ocRad
Definition: opcode.hxx:115
@ ocCountEmptyCells
Definition: opcode.hxx:310
@ ocCovarianceS
Definition: opcode.hxx:425
@ ocIsNonString
Definition: opcode.hxx:153
@ ocSLN
Definition: opcode.hxx:270
@ ocRept
Definition: opcode.hxx:336
@ ocAverage
Definition: opcode.hxx:235
@ ocStDevP_MS
Definition: opcode.hxx:248
@ ocMinA
Definition: opcode.hxx:485
@ ocSkewp
Definition: opcode.hxx:387
@ ocErrorType_ODF
Definition: opcode.hxx:192
@ ocTDist_RT
Definition: opcode.hxx:365
@ ocOffset
Definition: opcode.hxx:321
@ ocFixed
Definition: opcode.hxx:327
@ ocZTest_MS
Definition: opcode.hxx:394
@ ocWeibull_MS
Definition: opcode.hxx:377
@ ocNormDist_MS
Definition: opcode.hxx:252
@ ocIfNA
Definition: opcode.hxx:39
@ ocBetaDist
Definition: opcode.hxx:461
@ ocPermutationA
Definition: opcode.hxx:263
@ ocTrim
Definition: opcode.hxx:170
@ ocEncodeURL
Definition: opcode.hxx:504
@ ocXor
Definition: opcode.hxx:95
@ ocChiInv
Definition: opcode.hxx:444
@ ocStandard
Definition: opcode.hxx:384
@ ocMinIfs_MS
Definition: opcode.hxx:290
@ ocMatTrans
Definition: opcode.hxx:354
@ ocIsString
Definition: opcode.hxx:152
@ ocForecast_ETS_PIM
Definition: opcode.hxx:440
@ ocCeil_Precise
Definition: opcode.hxx:205
@ ocPow
Definition: opcode.hxx:86
@ ocGetDate
Definition: opcode.hxx:226
@ ocPercentile_Inc
Definition: opcode.hxx:401
@ ocArcSin
Definition: opcode.hxx:120
@ ocAdd
Definition: opcode.hxx:81
@ ocSNormInv
Definition: opcode.hxx:186
@ ocStop
Definition: opcode.hxx:33
@ ocPercentrank_Exc
Definition: opcode.hxx:406
@ ocPercentrank
Definition: opcode.hxx:400
@ ocTableRefItemTotals
Definition: opcode.hxx:61
@ ocSkip
Definition: opcode.hxx:63
@ ocRange
Definition: opcode.hxx:98
@ ocColor
Definition: opcode.hxx:501
@ ocUpper
Definition: opcode.hxx:171
@ ocGCD
Definition: opcode.hxx:218
@ ocWeek
Definition: opcode.hxx:472
@ ocLower
Definition: opcode.hxx:173
@ ocNormInv
Definition: opcode.hxx:413
@ ocCeil_ISO
Definition: opcode.hxx:206
@ ocCeil_Math
Definition: opcode.hxx:207
@ ocUnion
Definition: opcode.hxx:97
@ ocDBVar
Definition: opcode.hxx:304
@ ocFloor_Math
Definition: opcode.hxx:210
@ ocZTest
Definition: opcode.hxx:393
@ ocSecantHyp
Definition: opcode.hxx:135
@ ocHyperLink
Definition: opcode.hxx:496
@ ocErrName
Definition: opcode.hxx:77
@ ocSTEYX
Definition: opcode.hxx:428
@ ocRank
Definition: opcode.hxx:398
@ ocArcTan
Definition: opcode.hxx:122
@ ocChiTest_MS
Definition: opcode.hxx:457
@ ocEqual
Definition: opcode.hxx:87
@ ocLogest
Definition: opcode.hxx:434
@ ocQuartile_Inc
Definition: opcode.hxx:403
@ ocBinomInv
Definition: opcode.hxx:257
@ ocGammaLn_MS
Definition: opcode.hxx:189
@ ocFrequency
Definition: opcode.hxx:411
@ ocTextJoin_MS
Definition: opcode.hxx:339
@ ocTan
Definition: opcode.hxx:118
@ ocModalValue_Multi
Definition: opcode.hxx:392
@ ocSearch
Definition: opcode.hxx:332
@ ocForecast_ETS_STM
Definition: opcode.hxx:442
@ ocCosecant
Definition: opcode.hxx:132
@ ocSubstitute
Definition: opcode.hxx:335
@ ocNper
Definition: opcode.hxx:278
@ ocBitOr
Definition: opcode.hxx:467
@ ocGammaInv_MS
Definition: opcode.hxx:449
@ ocFInv
Definition: opcode.hxx:453
@ ocErrorType
Definition: opcode.hxx:191
@ ocDBGet
Definition: opcode.hxx:298
@ ocSlope
Definition: opcode.hxx:429
@ ocCumPrinc
Definition: opcode.hxx:283
@ ocMatMult
Definition: opcode.hxx:353
@ ocMatDet
Definition: opcode.hxx:351
@ ocIpmt
Definition: opcode.hxx:280
@ ocTInv_MS
Definition: opcode.hxx:452
@ ocLarge
Definition: opcode.hxx:409
@ ocRRI
Definition: opcode.hxx:276
@ ocGetActDate
Definition: opcode.hxx:106
@ ocErrValue
Definition: opcode.hxx:75
@ ocFact
Definition: opcode.hxx:139
@ ocOpen
Definition: opcode.hxx:42
@ ocSub
Definition: opcode.hxx:82
@ ocMIRR
Definition: opcode.hxx:240
@ ocDecimal
Definition: opcode.hxx:493
@ ocTrend
Definition: opcode.hxx:431
@ ocAverageIf
Definition: opcode.hxx:313
@ ocErf_MS
Definition: opcode.hxx:502
@ ocGetDay
Definition: opcode.hxx:142
@ ocInternalEnd
Definition: opcode.hxx:511
@ ocDBMin
Definition: opcode.hxx:300
@ ocVarPA
Definition: opcode.hxx:491
@ ocReplace
Definition: opcode.hxx:326
@ ocWeeknumOOo
Definition: opcode.hxx:474
@ ocLookup
Definition: opcode.hxx:317
@ ocFilterXML
Definition: opcode.hxx:499
@ ocFInv_RT
Definition: opcode.hxx:455
@ ocBinomDist_MS
Definition: opcode.hxx:256
@ ocGreater
Definition: opcode.hxx:90
@ ocHarMean
Definition: opcode.hxx:382
@ ocFloor_MS
Definition: opcode.hxx:209
@ ocRandom
Definition: opcode.hxx:103
@ ocStdNormDist
Definition: opcode.hxx:182
@ ocConfidence_T
Definition: opcode.hxx:417
@ ocCeil
Definition: opcode.hxx:203
@ ocColRowNameAuto
Definition: opcode.hxx:69
@ ocTrue
Definition: opcode.hxx:104
@ ocLinest
Definition: opcode.hxx:433
@ ocRows
Definition: opcode.hxx:273
@ ocArcCot
Definition: opcode.hxx:123
@ ocISPMT
Definition: opcode.hxx:241
@ ocGetHour
Definition: opcode.hxx:143
@ ocCorrel
Definition: opcode.hxx:422
@ ocTableRefItemData
Definition: opcode.hxx:60
@ ocArcTanHyp
Definition: opcode.hxx:130
@ ocExternal
Definition: opcode.hxx:34
@ ocNegBinomVert
Definition: opcode.hxx:378
@ ocSpaces
Definition: opcode.hxx:55
@ ocLogInv_MS
Definition: opcode.hxx:459
@ ocBitAnd
Definition: opcode.hxx:466
@ ocAnd
Definition: opcode.hxx:93
@ ocPercentile
Definition: opcode.hxx:399
@ ocInt
Definition: opcode.hxx:148
@ ocPercentSign
Definition: opcode.hxx:71
@ ocErrNull
Definition: opcode.hxx:73
@ ocCount2
Definition: opcode.hxx:237
@ ocArcSinHyp
Definition: opcode.hxx:128
@ ocTDist
Definition: opcode.hxx:363
@ ocLogNormDist_MS
Definition: opcode.hxx:362
@ ocMatValue
Definition: opcode.hxx:350
@ ocForecast_ETS_MUL
Definition: opcode.hxx:438
@ ocSep
Definition: opcode.hxx:46
@ ocMissing
Definition: opcode.hxx:52
@ ocConfidence_N
Definition: opcode.hxx:416
@ ocRandbetweenNV
Definition: opcode.hxx:506
@ ocTInv
Definition: opcode.hxx:450
@ ocMedian
Definition: opcode.hxx:389
@ ocBinomDist
Definition: opcode.hxx:255
@ ocVarP_MS
Definition: opcode.hxx:244
@ ocTableRefItemAll
Definition: opcode.hxx:58
@ ocFloor_Precise
Definition: opcode.hxx:211
@ ocVarP
Definition: opcode.hxx:243
@ ocDBCount2
Definition: opcode.hxx:296
@ ocLn
Definition: opcode.hxx:137
@ ocDevSq
Definition: opcode.hxx:388
@ ocForecast_LIN
Definition: opcode.hxx:443
@ ocVBD
Definition: opcode.hxx:268
@ ocIntersect
Definition: opcode.hxx:96
@ ocTInv_2T
Definition: opcode.hxx:451
@ ocStDevS
Definition: opcode.hxx:249
@ ocRoundSig
Definition: opcode.hxx:292
@ ocPlusMinus
Definition: opcode.hxx:146
@ ocNormInv_MS
Definition: opcode.hxx:414
@ ocPush
Definition: opcode.hxx:31
@ ocCotHyp
Definition: opcode.hxx:127
@ ocNumberValue
Definition: opcode.hxx:347
@ ocGreaterEqual
Definition: opcode.hxx:92
@ ocBad
Definition: opcode.hxx:53
@ ocArcCotHyp
Definition: opcode.hxx:131
@ ocForecast_ETS_SEA
Definition: opcode.hxx:437
@ ocIsError
Definition: opcode.hxx:162
@ ocErrNA
Definition: opcode.hxx:79
@ ocFTest
Definition: opcode.hxx:418
@ ocPDuration
Definition: opcode.hxx:269
@ ocDBArea
Definition: opcode.hxx:65
@ ocRawSubtract
Definition: opcode.hxx:287
@ ocRate
Definition: opcode.hxx:279
@ ocStDevP
Definition: opcode.hxx:247
@ ocType
Definition: opcode.hxx:155
@ ocForecast_ETS_STA
Definition: opcode.hxx:441
@ ocIfError
Definition: opcode.hxx:38
@ ocFDist_RT
Definition: opcode.hxx:369
@ ocErrNum
Definition: opcode.hxx:78
@ ocKurt
Definition: opcode.hxx:381
@ ocRightB
Definition: opcode.hxx:341
@ ocPower
Definition: opcode.hxx:217
@ ocJis
Definition: opcode.hxx:197
@ ocMid
Definition: opcode.hxx:333
@ ocSumXMY2
Definition: opcode.hxx:225
@ ocSheets
Definition: opcode.hxx:484
@ ocGetDateValue
Definition: opcode.hxx:167
@ ocWhitespace
Definition: opcode.hxx:56
@ ocTableRefClose
Definition: opcode.hxx:45
@ ocConfidence
Definition: opcode.hxx:415
@ ocRoundDown
Definition: opcode.hxx:214
@ ocMatRef
Definition: opcode.hxx:57
@ ocForecast
Definition: opcode.hxx:435
@ ocMin
Definition: opcode.hxx:231
@ ocFindB
Definition: opcode.hxx:345
@ ocLenB
Definition: opcode.hxx:340
@ ocLess
Definition: opcode.hxx:89
@ ocCurrency
Definition: opcode.hxx:325
@ ocSumX2MY2
Definition: opcode.hxx:223
@ ocFourier
Definition: opcode.hxx:505
@ ocPoissonDist
Definition: opcode.hxx:258
@ ocLogInv
Definition: opcode.hxx:458
@ ocIfs_MS
Definition: opcode.hxx:288
@ ocTTest_MS
Definition: opcode.hxx:397
@ ocErrDivZero
Definition: opcode.hxx:74
@ ocRight
Definition: opcode.hxx:331
@ ocNoName
Definition: opcode.hxx:479
@ ocGetSec
Definition: opcode.hxx:145
@ ocCovarianceP
Definition: opcode.hxx:424
@ ocDB
Definition: opcode.hxx:267
@ ocIsFormula
Definition: opcode.hxx:159
@ ocArcCos
Definition: opcode.hxx:121
@ ocDBProduct
Definition: opcode.hxx:301
@ ocArrayClose
Definition: opcode.hxx:48
@ ocEuroConvert
Definition: opcode.hxx:498
@ ocErrRef
Definition: opcode.hxx:76
@ ocNeg
Definition: opcode.hxx:113
@ ocLeft
Definition: opcode.hxx:330
@ ocDBAverage
Definition: opcode.hxx:297
@ ocBitLshift
Definition: opcode.hxx:470
@ ocGetPivotData
Definition: opcode.hxx:497
@ ocFisher
Definition: opcode.hxx:184
@ ocArrayColSep
Definition: opcode.hxx:50
@ ocCombin
Definition: opcode.hxx:260
@ ocMul
Definition: opcode.hxx:83
@ ocRoman
Definition: opcode.hxx:495
@ ocPV
Definition: opcode.hxx:264
@ ocMatch
Definition: opcode.hxx:309
@ ocVLookup
Definition: opcode.hxx:318
@ ocStDevA
Definition: opcode.hxx:488
@ ocGetTime
Definition: opcode.hxx:227
@ ocSumIfs
Definition: opcode.hxx:314
@ ocChiDist_MS
Definition: opcode.hxx:371
@ ocPhi
Definition: opcode.hxx:149
@ ocDataToken1
Definition: opcode.hxx:513
@ ocMaxIfs_MS
Definition: opcode.hxx:291
@ ocArabic
Definition: opcode.hxx:194
@ ocNetWorkdays_MS
Definition: opcode.hxx:477
@ ocTableOp
Definition: opcode.hxx:460
@ ocDBSum
Definition: opcode.hxx:294
@ ocChoose
Definition: opcode.hxx:40
@ ocErfc_MS
Definition: opcode.hxx:503
@ ocWorkday_MS
Definition: opcode.hxx:478
@ ocVarA
Definition: opcode.hxx:490
@ ocBitXor
Definition: opcode.hxx:468
@ ocVar
Definition: opcode.hxx:242
@ ocSwitch_MS
Definition: opcode.hxx:289
@ ocCovar
Definition: opcode.hxx:423
@ ocColumn
Definition: opcode.hxx:274
@ ocGammaDist_MS
Definition: opcode.hxx:447
@ ocGetMin
Definition: opcode.hxx:144
@ ocGetDiffDate
Definition: opcode.hxx:228
@ ocGetDateDif
Definition: opcode.hxx:230
@ ocGetDayOfWeek
Definition: opcode.hxx:475
@ ocNotAvail
Definition: opcode.hxx:108
@ ocRank_Eq
Definition: opcode.hxx:404
@ ocGamma
Definition: opcode.hxx:190
@ ocSNormInv_MS
Definition: opcode.hxx:187
@ ocOdd
Definition: opcode.hxx:181
@ ocGammaInv
Definition: opcode.hxx:448
@ ocModalValue_MS
Definition: opcode.hxx:391
@ ocDBStdDev
Definition: opcode.hxx:302
@ ocStdNormDist_MS
Definition: opcode.hxx:183
@ ocT
Definition: opcode.hxx:175
@ ocExact
Definition: opcode.hxx:329
@ ocIf
Definition: opcode.hxx:37
@ ocFTest_MS
Definition: opcode.hxx:419
@ ocBitRshift
Definition: opcode.hxx:469
@ ocIsValue
Definition: opcode.hxx:158
@ ocSumX2DY2
Definition: opcode.hxx:224
@ ocLog10
Definition: opcode.hxx:179
@ ocSheet
Definition: opcode.hxx:483
@ ocText
Definition: opcode.hxx:334
@ ocMidB
Definition: opcode.hxx:343
@ ocProb
Definition: opcode.hxx:421
@ ocGetDiffDate360
Definition: opcode.hxx:229
@ ocFormula
Definition: opcode.hxx:193
@ ocChiTest
Definition: opcode.hxx:456
@ ocTDist_2T
Definition: opcode.hxx:366
@ ocConcat_MS
Definition: opcode.hxx:338
@ ocDBStdDevP
Definition: opcode.hxx:303
@ ocIsOdd
Definition: opcode.hxx:164
@ ocIsErr
Definition: opcode.hxx:161
@ ocExpDist
Definition: opcode.hxx:253
@ ocGammaDist
Definition: opcode.hxx:446
@ ocIsoWeeknum
Definition: opcode.hxx:473
@ ocClean
Definition: opcode.hxx:177
@ ocLog
Definition: opcode.hxx:216
@ ocMaxA
Definition: opcode.hxx:486
@ ocFDist
Definition: opcode.hxx:367
@ ocStDevPA
Definition: opcode.hxx:489
@ ocLogNormDist
Definition: opcode.hxx:361
@ ocSearchB
Definition: opcode.hxx:346
@ ocIsLogical
Definition: opcode.hxx:154
@ ocSinHyp
Definition: opcode.hxx:124
@ ocEffect
Definition: opcode.hxx:284
@ ocTableRefOpen
Definition: opcode.hxx:44
@ ocSum
Definition: opcode.hxx:233
@ ocAveDev
Definition: opcode.hxx:385
@ ocPi
Definition: opcode.hxx:102
@ ocName
Definition: opcode.hxx:35
@ ocCount
Definition: opcode.hxx:236
@ ocCritBinom
Definition: opcode.hxx:380
@ ocProper
Definition: opcode.hxx:172
@ ocCos
Definition: opcode.hxx:117
@ ocMax
Definition: opcode.hxx:232