1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414
|
basic/source/runtime/stdobj.cxx:45
enum (anonymous namespace)::Flags COMPTMASK_
chart2/source/controller/main/FeatureCommandDispatchBase.hxx:37
enum ChartCommandID DrawTextVertical
chart2/source/controller/main/FeatureCommandDispatchBase.hxx:39
enum ChartCommandID DrawCaptionVertical
chart2/source/inc/CharacterProperties.hxx:120
enum chart::CharacterProperties::(unnamed at /home/noel/libo-plugin/chart2/source/inc/CharacterProperties.hxx:41:5) FAST_PROPERTY_ID_END_CHAR_PROP
chart2/source/inc/TitleHelper.hxx:47
enum chart::TitleHelper::eTitleType NORMAL_TITLE_END
chart2/source/view/inc/ShapeFactory.hxx:49
enum chart::SymbolEnum Symbol_Square
chart2/source/view/inc/ShapeFactory.hxx:50
enum chart::SymbolEnum Symbol_Diamond
chart2/source/view/inc/ShapeFactory.hxx:51
enum chart::SymbolEnum Symbol_DownArrow
chart2/source/view/inc/ShapeFactory.hxx:52
enum chart::SymbolEnum Symbol_UpArrow
chart2/source/view/inc/ShapeFactory.hxx:53
enum chart::SymbolEnum Symbol_RightArrow
chart2/source/view/inc/ShapeFactory.hxx:54
enum chart::SymbolEnum Symbol_LeftArrow
chart2/source/view/inc/ShapeFactory.hxx:55
enum chart::SymbolEnum Symbol_Bowtie
chart2/source/view/inc/ShapeFactory.hxx:56
enum chart::SymbolEnum Symbol_Sandglass
chart2/source/view/inc/ShapeFactory.hxx:57
enum chart::SymbolEnum Symbol_Circle
chart2/source/view/inc/ShapeFactory.hxx:58
enum chart::SymbolEnum Symbol_Star
chart2/source/view/inc/ShapeFactory.hxx:59
enum chart::SymbolEnum Symbol_X
chart2/source/view/inc/ShapeFactory.hxx:60
enum chart::SymbolEnum Symbol_Plus
chart2/source/view/inc/ShapeFactory.hxx:61
enum chart::SymbolEnum Symbol_Asterisk
chart2/source/view/inc/ShapeFactory.hxx:62
enum chart::SymbolEnum Symbol_HorizontalBar
chart2/source/view/inc/ShapeFactory.hxx:63
enum chart::SymbolEnum Symbol_VerticalBar
configmgr/source/access.hxx:457
enum configmgr::Access::(unnamed at /home/noel/libo-plugin/configmgr/source/access.hxx:455:5) IS_GROUP_MEMBER
configmgr/source/access.hxx:457
enum configmgr::Access::(unnamed at /home/noel/libo-plugin/configmgr/source/access.hxx:455:5) IS_SET_MEMBER
configmgr/source/components.hxx:151
enum configmgr::Components::ModificationTarget Dconf
configmgr/source/parsemanager.hxx:43
enum configmgr::ParseManager::(unnamed at /home/noel/libo-plugin/configmgr/source/parsemanager.hxx:43:5) NAMESPACE_OOR
configmgr/source/parsemanager.hxx:43
enum configmgr::ParseManager::(unnamed at /home/noel/libo-plugin/configmgr/source/parsemanager.hxx:43:5) NAMESPACE_XS
configmgr/source/parsemanager.hxx:43
enum configmgr::ParseManager::(unnamed at /home/noel/libo-plugin/configmgr/source/parsemanager.hxx:43:5) NAMESPACE_XSI
connectivity/source/drivers/evoab2/NConnection.hxx:37
connectivity::evoab::SDBCAddress::sdbc_address_type Unknown
cui/source/options/optgenrl.cxx:67
enum (anonymous namespace)::RowType nRowCount
dbaccess/source/core/inc/SingleSelectQueryComposer.hxx:71
enum dbaccess::OSingleSelectQueryComposer::EColumnType SelectColumns
dbaccess/source/ui/inc/sqlmessage.hxx:56
enum dbaui::MessBoxStyle DefaultCancel
drawinglayer/source/tools/emfphelperdata.cxx:64
enum emfplushelper::(unnamed at /home/noel/libo-plugin/drawinglayer/source/tools/emfphelperdata.cxx:62:5) WrapModeTile
drawinglayer/source/tools/emfphelperdata.cxx:65
enum emfplushelper::(unnamed at /home/noel/libo-plugin/drawinglayer/source/tools/emfphelperdata.cxx:62:5) WrapModeTileFlipX
drawinglayer/source/tools/emfphelperdata.cxx:66
enum emfplushelper::(unnamed at /home/noel/libo-plugin/drawinglayer/source/tools/emfphelperdata.cxx:62:5) WrapModeTileFlipY
drawinglayer/source/tools/emfphelperdata.cxx:67
enum emfplushelper::(unnamed at /home/noel/libo-plugin/drawinglayer/source/tools/emfphelperdata.cxx:62:5) WrapModeTileFlipXY
drawinglayer/source/tools/emfphelperdata.hxx:108
enum emfplushelper::PixelOffsetMode PixelOffsetModeDefault
drawinglayer/source/tools/emfphelperdata.hxx:109
enum emfplushelper::PixelOffsetMode PixelOffsetModeHighSpeed
drawinglayer/source/tools/emfphelperdata.hxx:110
enum emfplushelper::PixelOffsetMode PixelOffsetModeHighQuality
drawinglayer/source/tools/emfphelperdata.hxx:112
enum emfplushelper::PixelOffsetMode PixelOffsetModeHalf
drawinglayer/source/tools/emfphelperdata.hxx:117
enum emfplushelper::SmoothingMode SmoothingModeDefault
drawinglayer/source/tools/emfphelperdata.hxx:118
enum emfplushelper::SmoothingMode SmoothingModeHighSpeed
drawinglayer/source/tools/emfphelperdata.hxx:119
enum emfplushelper::SmoothingMode SmoothingModeHighQuality
drawinglayer/source/tools/emfphelperdata.hxx:121
enum emfplushelper::SmoothingMode SmoothingModeAntiAlias8x4
drawinglayer/source/tools/emfphelperdata.hxx:122
enum emfplushelper::SmoothingMode SmoothingModeAntiAlias8x8
drawinglayer/source/tools/emfphelperdata.hxx:127
enum emfplushelper::InterpolationMode InterpolationModeDefault
drawinglayer/source/tools/emfphelperdata.hxx:128
enum emfplushelper::InterpolationMode InterpolationModeLowQuality
drawinglayer/source/tools/emfphelperdata.hxx:129
enum emfplushelper::InterpolationMode InterpolationModeHighQuality
drawinglayer/source/tools/emfphelperdata.hxx:130
enum emfplushelper::InterpolationMode InterpolationModeBilinear
drawinglayer/source/tools/emfphelperdata.hxx:131
enum emfplushelper::InterpolationMode InterpolationModeBicubic
drawinglayer/source/tools/emfphelperdata.hxx:132
enum emfplushelper::InterpolationMode InterpolationModeNearestNeighbor
drawinglayer/source/tools/emfphelperdata.hxx:133
enum emfplushelper::InterpolationMode InterpolationModeHighQualityBilinear
drawinglayer/source/tools/emfphelperdata.hxx:134
enum emfplushelper::InterpolationMode InterpolationModeHighQualityBicubic
drawinglayer/source/tools/emfphelperdata.hxx:139
enum emfplushelper::TextRenderingHint TextRenderingHintSystemDefault
drawinglayer/source/tools/emfphelperdata.hxx:140
enum emfplushelper::TextRenderingHint TextRenderingHintSingleBitPerPixelGridFit
drawinglayer/source/tools/emfphelperdata.hxx:141
enum emfplushelper::TextRenderingHint TextRenderingHintSingleBitPerPixel
drawinglayer/source/tools/emfphelperdata.hxx:142
enum emfplushelper::TextRenderingHint TextRenderingHintAntialiasGridFit
drawinglayer/source/tools/emfphelperdata.hxx:143
enum emfplushelper::TextRenderingHint TextRenderingHintAntialias
drawinglayer/source/tools/emfphelperdata.hxx:144
enum emfplushelper::TextRenderingHint TextRenderingHintClearTypeGridFit
drawinglayer/source/tools/emfphelperdata.hxx:149
enum emfplushelper::UnitType UnitTypeWorld
drawinglayer/source/tools/emfphelperdata.hxx:150
enum emfplushelper::UnitType UnitTypeDisplay
drawinglayer/source/tools/emfphelperdata.hxx:151
enum emfplushelper::UnitType UnitTypePixel
drawinglayer/source/tools/emfphelperdata.hxx:152
enum emfplushelper::UnitType UnitTypePoint
drawinglayer/source/tools/emfphelperdata.hxx:153
enum emfplushelper::UnitType UnitTypeInch
drawinglayer/source/tools/emfphelperdata.hxx:154
enum emfplushelper::UnitType UnitTypeDocument
drawinglayer/source/tools/emfphelperdata.hxx:155
enum emfplushelper::UnitType UnitTypeMillimeter
drawinglayer/source/tools/emfphelperdata.hxx:160
enum emfplushelper::EmfPlusCombineMode EmfPlusCombineModeReplace
drawinglayer/source/tools/emfphelperdata.hxx:161
enum emfplushelper::EmfPlusCombineMode EmfPlusCombineModeIntersect
drawinglayer/source/tools/emfphelperdata.hxx:162
enum emfplushelper::EmfPlusCombineMode EmfPlusCombineModeUnion
drawinglayer/source/tools/emfphelperdata.hxx:163
enum emfplushelper::EmfPlusCombineMode EmfPlusCombineModeXOR
drawinglayer/source/tools/emfphelperdata.hxx:164
enum emfplushelper::EmfPlusCombineMode EmfPlusCombineModeExclude
drawinglayer/source/tools/emfphelperdata.hxx:165
enum emfplushelper::EmfPlusCombineMode EmfPlusCombineModeComplement
drawinglayer/source/tools/emfpimage.hxx:31
emfplushelper::ImageDataType ImageDataTypeBitmap
drawinglayer/source/tools/emfpimage.hxx:32
emfplushelper::ImageDataType ImageDataTypeMetafile
drawinglayer/source/tools/emfppen.hxx:60
enum emfplushelper::LineCapType LineCapTypeFlat
drawinglayer/source/tools/emfppen.hxx:61
enum emfplushelper::LineCapType LineCapTypeSquare
drawinglayer/source/tools/emfppen.hxx:62
enum emfplushelper::LineCapType LineCapTypeRound
drawinglayer/source/tools/emfppen.hxx:63
enum emfplushelper::LineCapType LineCapTypeTriangle
drawinglayer/source/tools/emfppen.hxx:64
enum emfplushelper::LineCapType LineCapTypeNoAnchor
drawinglayer/source/tools/emfppen.hxx:65
enum emfplushelper::LineCapType LineCapTypeSquareAnchor
drawinglayer/source/tools/emfppen.hxx:66
enum emfplushelper::LineCapType LineCapTypeRoundAnchor
drawinglayer/source/tools/emfppen.hxx:67
enum emfplushelper::LineCapType LineCapTypeDiamondAnchor
drawinglayer/source/tools/emfppen.hxx:68
enum emfplushelper::LineCapType LineCapTypeArrowAnchor
drawinglayer/source/tools/emfppen.hxx:69
enum emfplushelper::LineCapType LineCapTypeAnchorMask
drawinglayer/source/tools/emfppen.hxx:70
enum emfplushelper::LineCapType LineCapTypeCustom
drawinglayer/source/tools/emfppen.hxx:83
enum emfplushelper::DashedLineCapType DashedLineCapTypeFlat
drawinglayer/source/tools/emfppen.hxx:84
enum emfplushelper::DashedLineCapType DashedLineCapTypeRound
drawinglayer/source/tools/emfppen.hxx:85
enum emfplushelper::DashedLineCapType DashedLineCapTypeTriangle
drawinglayer/source/tools/emfppen.hxx:90
enum emfplushelper::PenAlignment PenAlignmentCenter
drawinglayer/source/tools/emfppen.hxx:91
enum emfplushelper::PenAlignment PenAlignmentInset
drawinglayer/source/tools/emfppen.hxx:92
enum emfplushelper::PenAlignment PenAlignmentLeft
drawinglayer/source/tools/emfppen.hxx:93
enum emfplushelper::PenAlignment PenAlignmentOutset
drawinglayer/source/tools/emfppen.hxx:94
enum emfplushelper::PenAlignment PenAlignmentRight
drawinglayer/source/tools/emfpregion.hxx:28
emfplushelper::RegionNodeDataType RegionNodeDataTypeAnd
drawinglayer/source/tools/emfpregion.hxx:29
emfplushelper::RegionNodeDataType RegionNodeDataTypeOr
drawinglayer/source/tools/emfpregion.hxx:30
emfplushelper::RegionNodeDataType RegionNodeDataTypeXor
drawinglayer/source/tools/emfpregion.hxx:31
emfplushelper::RegionNodeDataType RegionNodeDataTypeExclude
drawinglayer/source/tools/emfpregion.hxx:32
emfplushelper::RegionNodeDataType RegionNodeDataTypeComplement
drawinglayer/source/tools/emfpregion.hxx:33
emfplushelper::RegionNodeDataType RegionNodeDataTypeRect
drawinglayer/source/tools/emfpregion.hxx:34
emfplushelper::RegionNodeDataType RegionNodeDataTypePath
drawinglayer/source/tools/emfpregion.hxx:35
emfplushelper::RegionNodeDataType RegionNodeDataTypeEmpty
drawinglayer/source/tools/emfpregion.hxx:36
emfplushelper::RegionNodeDataType RegionNodeDataTypeInfinite
drawinglayer/source/tools/emfpstringformat.hxx:39
enum emfplushelper::StringAlignment StringAlignmentNear
drawinglayer/source/tools/emfpstringformat.hxx:40
enum emfplushelper::StringAlignment StringAlignmentCenter
drawinglayer/source/tools/emfpstringformat.hxx:41
enum emfplushelper::StringAlignment StringAlignmentFar
drawinglayer/source/tools/emfpstringformat.hxx:46
enum emfplushelper::StringDigitSubstitution StringDigitSubstitutionUser
drawinglayer/source/tools/emfpstringformat.hxx:48
enum emfplushelper::StringDigitSubstitution StringDigitSubstitutionNational
drawinglayer/source/tools/emfpstringformat.hxx:49
enum emfplushelper::StringDigitSubstitution StringDigitSubstitutionTraditional
drawinglayer/source/tools/emfpstringformat.hxx:55
enum emfplushelper::HotkeyPrefix HotkeyPrefixShow
drawinglayer/source/tools/emfpstringformat.hxx:56
enum emfplushelper::HotkeyPrefix HotkeyPrefixHide
drawinglayer/source/tools/emfpstringformat.hxx:62
enum emfplushelper::StringTrimming StringTrimmingCharacter
drawinglayer/source/tools/emfpstringformat.hxx:63
enum emfplushelper::StringTrimming StringTrimmingWord
drawinglayer/source/tools/emfpstringformat.hxx:64
enum emfplushelper::StringTrimming StringTrimmingEllipsisCharacter
drawinglayer/source/tools/emfpstringformat.hxx:65
enum emfplushelper::StringTrimming StringTrimmingEllipsisWord
drawinglayer/source/tools/emfpstringformat.hxx:66
enum emfplushelper::StringTrimming StringTrimmingEllipsisPath
editeng/source/misc/SvXMLAutoCorrectTokenHandler.hxx:25
enum SvXMLAutoCorrectToken BLOCK
editeng/source/misc/SvXMLAutoCorrectTokenHandler.hxx:26
enum SvXMLAutoCorrectToken BLOCKLIST
emfio/inc/mtftools.hxx:38
enum emfio::RegionMode RGN_AND
emfio/inc/mtftools.hxx:39
enum emfio::RegionMode RGN_OR
emfio/inc/mtftools.hxx:40
enum emfio::RegionMode RGN_XOR
emfio/inc/mtftools.hxx:41
enum emfio::RegionMode RGN_DIFF
emfio/inc/mtftools.hxx:57
enum emfio::ModifyWorldTransformMode MWT_IDENTITY
emfio/inc/mtftools.hxx:58
enum emfio::ModifyWorldTransformMode MWT_LEFTMULTIPLY
emfio/inc/mtftools.hxx:59
enum emfio::ModifyWorldTransformMode MWT_RIGHTMULTIPLY
emfio/inc/mtftools.hxx:60
enum emfio::ModifyWorldTransformMode MWT_SET
emfio/inc/mtftools.hxx:69
enum emfio::StockObject WHITE_BRUSH
emfio/inc/mtftools.hxx:70
enum emfio::StockObject LTGRAY_BRUSH
emfio/inc/mtftools.hxx:71
enum emfio::StockObject GRAY_BRUSH
emfio/inc/mtftools.hxx:72
enum emfio::StockObject DKGRAY_BRUSH
emfio/inc/mtftools.hxx:73
enum emfio::StockObject BLACK_BRUSH
emfio/inc/mtftools.hxx:74
enum emfio::StockObject NULL_BRUSH
emfio/inc/mtftools.hxx:75
enum emfio::StockObject WHITE_PEN
emfio/inc/mtftools.hxx:76
enum emfio::StockObject BLACK_PEN
emfio/inc/mtftools.hxx:77
enum emfio::StockObject NULL_PEN
emfio/inc/mtftools.hxx:91
enum emfio::WMFRasterOp Nop
emfio/inc/mtftools.hxx:101
enum emfio::MappingMode MM_LOMETRIC
emfio/inc/mtftools.hxx:102
enum emfio::MappingMode MM_HIMETRIC
emfio/inc/mtftools.hxx:103
enum emfio::MappingMode MM_LOENGLISH
emfio/inc/mtftools.hxx:104
enum emfio::MappingMode MM_HIENGLISH
emfio/inc/mtftools.hxx:105
enum emfio::MappingMode MM_TWIPS
emfio/inc/mtftools.hxx:106
enum emfio::MappingMode MM_ISOTROPIC
emfio/inc/mtftools.hxx:118
enum emfio::GraphicsMode GM_ADVANCED
emfio/inc/mtftools.hxx:174
enum emfio::TextAlignmentMode TA_UPDATECP
emfio/inc/mtftools.hxx:178
enum emfio::TextAlignmentMode TA_RIGHT_CENTER
emfio/inc/mtftools.hxx:180
enum emfio::TextAlignmentMode TA_BOTTOM
emfio/inc/mtftools.hxx:183
enum emfio::TextAlignmentMode TA_BASELINE
emfio/inc/mtftools.hxx:184
enum emfio::TextAlignmentMode TA_RTLREADING
emfio/inc/mtftools.hxx:193
enum emfio::TernaryRasterOperation SRCPAINT
emfio/inc/mtftools.hxx:198
enum emfio::TernaryRasterOperation PATINVERT
emfio/inc/mtftools.hxx:207
enum emfio::PenStyle PS_SOLID
emfio/inc/mtftools.hxx:208
enum emfio::PenStyle PS_DASH
emfio/inc/mtftools.hxx:209
enum emfio::PenStyle PS_DOT
emfio/inc/mtftools.hxx:210
enum emfio::PenStyle PS_DASHDOT
emfio/inc/mtftools.hxx:211
enum emfio::PenStyle PS_DASHDOTDOT
emfio/inc/mtftools.hxx:212
enum emfio::PenStyle PS_NULL
emfio/inc/mtftools.hxx:213
enum emfio::PenStyle PS_INSIDEFRAME
emfio/inc/mtftools.hxx:216
enum emfio::PenStyle PS_STYLE_MASK
emfio/inc/mtftools.hxx:218
enum emfio::PenStyle PS_ENDCAP_ROUND
emfio/inc/mtftools.hxx:219
enum emfio::PenStyle PS_ENDCAP_SQUARE
emfio/inc/mtftools.hxx:220
enum emfio::PenStyle PS_ENDCAP_FLAT
emfio/inc/mtftools.hxx:221
enum emfio::PenStyle PS_ENDCAP_STYLE_MASK
emfio/inc/mtftools.hxx:223
enum emfio::PenStyle PS_JOIN_ROUND
emfio/inc/mtftools.hxx:224
enum emfio::PenStyle PS_JOIN_BEVEL
emfio/inc/mtftools.hxx:225
enum emfio::PenStyle PS_JOIN_MITER
emfio/inc/mtftools.hxx:226
enum emfio::PenStyle PS_JOIN_STYLE_MASK
emfio/inc/mtftools.hxx:228
enum emfio::PenStyle PS_GEOMETRIC
emfio/inc/mtftools.hxx:236
enum emfio::CharacterSet DEFAULT_CHARSET
emfio/inc/mtftools.hxx:261
enum emfio::ExtTextOutOptions ETO_OPAQUE
emfio/inc/mtftools.hxx:262
enum emfio::ExtTextOutOptions ETO_CLIPPED
emfio/inc/mtftools.hxx:264
enum emfio::ExtTextOutOptions ETO_GLYPH_INDEX
emfio/inc/mtftools.hxx:265
enum emfio::ExtTextOutOptions ETO_RTLREADING
emfio/inc/mtftools.hxx:267
enum emfio::ExtTextOutOptions ETO_NO_RECT
emfio/inc/mtftools.hxx:268
enum emfio::ExtTextOutOptions ETO_PDY
emfio/inc/mtftools.hxx:276
enum emfio::PitchFont FIXED_PITCH
emfio/inc/mtftools.hxx:277
enum emfio::PitchFont VARIABLE_PITCH
emfio/inc/mtftools.hxx:285
enum emfio::FamilyFont FF_SWISS
emfio/inc/mtftools.hxx:286
enum emfio::FamilyFont FF_MODERN
emfio/inc/mtftools.hxx:287
enum emfio::FamilyFont FF_SCRIPT
emfio/inc/mtftools.hxx:288
enum emfio::FamilyFont FF_DECORATIVE
emfio/inc/mtftools.hxx:293
enum emfio::WeightFont FW_THIN
emfio/inc/mtftools.hxx:295
enum emfio::WeightFont FW_LIGHT
emfio/inc/mtftools.hxx:297
enum emfio::WeightFont FW_MEDIUM
emfio/inc/mtftools.hxx:298
enum emfio::WeightFont FW_SEMIBOLD
emfio/inc/mtftools.hxx:299
enum emfio::WeightFont FW_BOLD
emfio/inc/mtftools.hxx:301
enum emfio::WeightFont FW_ULTRALIGHT
emfio/inc/mtftools.hxx:302
enum emfio::WeightFont FW_ULTRABOLD
emfio/inc/mtftools.hxx:309
enum emfio::BrushStyle BS_SOLID
emfio/inc/mtftools.hxx:310
enum emfio::BrushStyle BS_NULL
emfio/inc/mtftools.hxx:311
enum emfio::BrushStyle BS_HOLLOW
emfio/inc/mtftools.hxx:313
enum emfio::BrushStyle BS_PATTERN
emfio/source/reader/emfreader.cxx:182
enum (anonymous namespace)::EMFPointTypes PT_CLOSEFIGURE
emfio/source/reader/emfreader.cxx:183
enum (anonymous namespace)::EMFPointTypes PT_LINETO
emfio/source/reader/emfreader.cxx:184
enum (anonymous namespace)::EMFPointTypes PT_BEZIERTO
emfio/source/reader/emfreader.cxx:185
enum (anonymous namespace)::EMFPointTypes PT_MOVETO
emfio/source/reader/wmfreader.cxx:48
enum (anonymous namespace)::WMFRecords W_META_EOF
emfio/source/reader/wmfreader.cxx:49
enum (anonymous namespace)::WMFRecords W_META_SETBKCOLOR
emfio/source/reader/wmfreader.cxx:50
enum (anonymous namespace)::WMFRecords W_META_SETBKMODE
emfio/source/reader/wmfreader.cxx:51
enum (anonymous namespace)::WMFRecords W_META_SETMAPMODE
emfio/source/reader/wmfreader.cxx:52
enum (anonymous namespace)::WMFRecords W_META_SETROP2
emfio/source/reader/wmfreader.cxx:53
enum (anonymous namespace)::WMFRecords W_META_SETRELABS
emfio/source/reader/wmfreader.cxx:54
enum (anonymous namespace)::WMFRecords W_META_SETPOLYFILLMODE
emfio/source/reader/wmfreader.cxx:55
enum (anonymous namespace)::WMFRecords W_META_SETSTRETCHBLTMODE
emfio/source/reader/wmfreader.cxx:56
enum (anonymous namespace)::WMFRecords W_META_SETTEXTCHAREXTRA
emfio/source/reader/wmfreader.cxx:57
enum (anonymous namespace)::WMFRecords W_META_SETTEXTCOLOR
emfio/source/reader/wmfreader.cxx:58
enum (anonymous namespace)::WMFRecords W_META_SETTEXTJUSTIFICATION
emfio/source/reader/wmfreader.cxx:59
enum (anonymous namespace)::WMFRecords W_META_SETWINDOWORG
emfio/source/reader/wmfreader.cxx:60
enum (anonymous namespace)::WMFRecords W_META_SETWINDOWEXT
emfio/source/reader/wmfreader.cxx:61
enum (anonymous namespace)::WMFRecords W_META_SETVIEWPORTORG
emfio/source/reader/wmfreader.cxx:62
enum (anonymous namespace)::WMFRecords W_META_SETVIEWPORTEXT
emfio/source/reader/wmfreader.cxx:63
enum (anonymous namespace)::WMFRecords W_META_OFFSETWINDOWORG
emfio/source/reader/wmfreader.cxx:64
enum (anonymous namespace)::WMFRecords W_META_SCALEWINDOWEXT
emfio/source/reader/wmfreader.cxx:65
enum (anonymous namespace)::WMFRecords W_META_OFFSETVIEWPORTORG
emfio/source/reader/wmfreader.cxx:66
enum (anonymous namespace)::WMFRecords W_META_SCALEVIEWPORTEXT
emfio/source/reader/wmfreader.cxx:67
enum (anonymous namespace)::WMFRecords W_META_LINETO
emfio/source/reader/wmfreader.cxx:68
enum (anonymous namespace)::WMFRecords W_META_MOVETO
emfio/source/reader/wmfreader.cxx:69
enum (anonymous namespace)::WMFRecords W_META_EXCLUDECLIPRECT
emfio/source/reader/wmfreader.cxx:70
enum (anonymous namespace)::WMFRecords W_META_INTERSECTCLIPRECT
emfio/source/reader/wmfreader.cxx:71
enum (anonymous namespace)::WMFRecords W_META_ARC
emfio/source/reader/wmfreader.cxx:72
enum (anonymous namespace)::WMFRecords W_META_ELLIPSE
emfio/source/reader/wmfreader.cxx:73
enum (anonymous namespace)::WMFRecords W_META_FLOODFILL
emfio/source/reader/wmfreader.cxx:74
enum (anonymous namespace)::WMFRecords W_META_PIE
emfio/source/reader/wmfreader.cxx:75
enum (anonymous namespace)::WMFRecords W_META_RECTANGLE
emfio/source/reader/wmfreader.cxx:76
enum (anonymous namespace)::WMFRecords W_META_ROUNDRECT
emfio/source/reader/wmfreader.cxx:77
enum (anonymous namespace)::WMFRecords W_META_PATBLT
emfio/source/reader/wmfreader.cxx:78
enum (anonymous namespace)::WMFRecords W_META_SAVEDC
emfio/source/reader/wmfreader.cxx:79
enum (anonymous namespace)::WMFRecords W_META_SETPIXEL
emfio/source/reader/wmfreader.cxx:80
enum (anonymous namespace)::WMFRecords W_META_OFFSETCLIPRGN
emfio/source/reader/wmfreader.cxx:81
enum (anonymous namespace)::WMFRecords W_META_TEXTOUT
emfio/source/reader/wmfreader.cxx:82
enum (anonymous namespace)::WMFRecords W_META_BITBLT
emfio/source/reader/wmfreader.cxx:83
enum (anonymous namespace)::WMFRecords W_META_STRETCHBLT
emfio/source/reader/wmfreader.cxx:84
enum (anonymous namespace)::WMFRecords W_META_POLYGON
emfio/source/reader/wmfreader.cxx:85
enum (anonymous namespace)::WMFRecords W_META_POLYLINE
emfio/source/reader/wmfreader.cxx:86
enum (anonymous namespace)::WMFRecords W_META_ESCAPE
emfio/source/reader/wmfreader.cxx:87
enum (anonymous namespace)::WMFRecords W_META_RESTOREDC
emfio/source/reader/wmfreader.cxx:88
enum (anonymous namespace)::WMFRecords W_META_FILLREGION
emfio/source/reader/wmfreader.cxx:89
enum (anonymous namespace)::WMFRecords W_META_FRAMEREGION
emfio/source/reader/wmfreader.cxx:90
enum (anonymous namespace)::WMFRecords W_META_INVERTREGION
emfio/source/reader/wmfreader.cxx:91
enum (anonymous namespace)::WMFRecords W_META_PAINTREGION
emfio/source/reader/wmfreader.cxx:92
enum (anonymous namespace)::WMFRecords W_META_SELECTCLIPREGION
emfio/source/reader/wmfreader.cxx:93
enum (anonymous namespace)::WMFRecords W_META_SELECTOBJECT
emfio/source/reader/wmfreader.cxx:94
enum (anonymous namespace)::WMFRecords W_META_SETTEXTALIGN
emfio/source/reader/wmfreader.cxx:95
enum (anonymous namespace)::WMFRecords W_META_DRAWTEXT
emfio/source/reader/wmfreader.cxx:96
enum (anonymous namespace)::WMFRecords W_META_CHORD
emfio/source/reader/wmfreader.cxx:97
enum (anonymous namespace)::WMFRecords W_META_SETMAPPERFLAGS
emfio/source/reader/wmfreader.cxx:98
enum (anonymous namespace)::WMFRecords W_META_EXTTEXTOUT
emfio/source/reader/wmfreader.cxx:99
enum (anonymous namespace)::WMFRecords W_META_SETDIBTODEV
emfio/source/reader/wmfreader.cxx:100
enum (anonymous namespace)::WMFRecords W_META_SELECTPALETTE
emfio/source/reader/wmfreader.cxx:101
enum (anonymous namespace)::WMFRecords W_META_REALIZEPALETTE
emfio/source/reader/wmfreader.cxx:102
enum (anonymous namespace)::WMFRecords W_META_ANIMATEPALETTE
emfio/source/reader/wmfreader.cxx:103
enum (anonymous namespace)::WMFRecords W_META_SETPALENTRIES
emfio/source/reader/wmfreader.cxx:104
enum (anonymous namespace)::WMFRecords W_META_POLYPOLYGON
emfio/source/reader/wmfreader.cxx:105
enum (anonymous namespace)::WMFRecords W_META_RESIZEPALETTE
emfio/source/reader/wmfreader.cxx:106
enum (anonymous namespace)::WMFRecords W_META_DIBBITBLT
emfio/source/reader/wmfreader.cxx:107
enum (anonymous namespace)::WMFRecords W_META_DIBSTRETCHBLT
emfio/source/reader/wmfreader.cxx:108
enum (anonymous namespace)::WMFRecords W_META_DIBCREATEPATTERNBRUSH
emfio/source/reader/wmfreader.cxx:109
enum (anonymous namespace)::WMFRecords W_META_STRETCHDIB
emfio/source/reader/wmfreader.cxx:110
enum (anonymous namespace)::WMFRecords W_META_EXTFLOODFILL
emfio/source/reader/wmfreader.cxx:111
enum (anonymous namespace)::WMFRecords W_META_RESETDC
emfio/source/reader/wmfreader.cxx:112
enum (anonymous namespace)::WMFRecords W_META_STARTDOC
emfio/source/reader/wmfreader.cxx:113
enum (anonymous namespace)::WMFRecords W_META_STARTPAGE
emfio/source/reader/wmfreader.cxx:114
enum (anonymous namespace)::WMFRecords W_META_ENDPAGE
emfio/source/reader/wmfreader.cxx:115
enum (anonymous namespace)::WMFRecords W_META_ABORTDOC
emfio/source/reader/wmfreader.cxx:116
enum (anonymous namespace)::WMFRecords W_META_ENDDOC
emfio/source/reader/wmfreader.cxx:117
enum (anonymous namespace)::WMFRecords W_META_DELETEOBJECT
emfio/source/reader/wmfreader.cxx:118
enum (anonymous namespace)::WMFRecords W_META_CREATEPALETTE
emfio/source/reader/wmfreader.cxx:119
enum (anonymous namespace)::WMFRecords W_META_CREATEBRUSH
emfio/source/reader/wmfreader.cxx:120
enum (anonymous namespace)::WMFRecords W_META_CREATEPATTERNBRUSH
emfio/source/reader/wmfreader.cxx:121
enum (anonymous namespace)::WMFRecords W_META_CREATEPENINDIRECT
emfio/source/reader/wmfreader.cxx:122
enum (anonymous namespace)::WMFRecords W_META_CREATEFONTINDIRECT
emfio/source/reader/wmfreader.cxx:123
enum (anonymous namespace)::WMFRecords W_META_CREATEBRUSHINDIRECT
emfio/source/reader/wmfreader.cxx:124
enum (anonymous namespace)::WMFRecords W_META_CREATEBITMAPINDIRECT
emfio/source/reader/wmfreader.cxx:125
enum (anonymous namespace)::WMFRecords W_META_CREATEBITMAP
emfio/source/reader/wmfreader.cxx:126
enum (anonymous namespace)::WMFRecords W_META_CREATEREGION
extensions/source/update/check/updatehdl.hxx:63
enum UpdateState UPDATESTATE_AUTO_START
filter/source/msfilter/msdffimp.cxx:180
enum (anonymous namespace)::OfficeArtBlipRecInstance EMF
filter/source/msfilter/msdffimp.cxx:181
enum (anonymous namespace)::OfficeArtBlipRecInstance WMF
filter/source/msfilter/msdffimp.cxx:182
enum (anonymous namespace)::OfficeArtBlipRecInstance PICT
filter/source/msfilter/msdffimp.cxx:183
enum (anonymous namespace)::OfficeArtBlipRecInstance JPEG_RGB
filter/source/msfilter/msdffimp.cxx:184
enum (anonymous namespace)::OfficeArtBlipRecInstance JPEG_CMYK
filter/source/msfilter/msdffimp.cxx:185
enum (anonymous namespace)::OfficeArtBlipRecInstance PNG
filter/source/msfilter/msdffimp.cxx:186
enum (anonymous namespace)::OfficeArtBlipRecInstance DIB
filter/source/msfilter/msdffimp.cxx:187
enum (anonymous namespace)::OfficeArtBlipRecInstance TIFF
forms/source/misc/limitedformats.cxx:52
enum frm::(anonymous namespace)::LocaleType ltSystem
framework/inc/xml/imagesdocumenthandler.hxx:41
enum framework::OReadImagesDocumentHandler::Image_XML_Entry IMG_ELEMENT_IMAGECONTAINER
framework/inc/xml/imagesdocumenthandler.hxx:42
enum framework::OReadImagesDocumentHandler::Image_XML_Entry IMG_ELEMENT_IMAGES
framework/inc/xml/imagesdocumenthandler.hxx:43
enum framework::OReadImagesDocumentHandler::Image_XML_Entry IMG_ELEMENT_ENTRY
framework/inc/xml/imagesdocumenthandler.hxx:48
enum framework::OReadImagesDocumentHandler::Image_XML_Entry IMG_ATTRIBUTE_COMMAND
framework/inc/xml/statusbardocumenthandler.hxx:45
enum framework::OReadStatusBarDocumentHandler::StatusBar_XML_Entry SB_ELEMENT_STATUSBAR
framework/inc/xml/statusbardocumenthandler.hxx:46
enum framework::OReadStatusBarDocumentHandler::StatusBar_XML_Entry SB_ELEMENT_STATUSBARITEM
framework/inc/xml/statusbardocumenthandler.hxx:47
enum framework::OReadStatusBarDocumentHandler::StatusBar_XML_Entry SB_ATTRIBUTE_URL
framework/inc/xml/statusbardocumenthandler.hxx:48
enum framework::OReadStatusBarDocumentHandler::StatusBar_XML_Entry SB_ATTRIBUTE_ALIGN
framework/inc/xml/statusbardocumenthandler.hxx:49
enum framework::OReadStatusBarDocumentHandler::StatusBar_XML_Entry SB_ATTRIBUTE_STYLE
framework/inc/xml/statusbardocumenthandler.hxx:50
enum framework::OReadStatusBarDocumentHandler::StatusBar_XML_Entry SB_ATTRIBUTE_AUTOSIZE
framework/inc/xml/statusbardocumenthandler.hxx:51
enum framework::OReadStatusBarDocumentHandler::StatusBar_XML_Entry SB_ATTRIBUTE_OWNERDRAW
framework/inc/xml/statusbardocumenthandler.hxx:52
enum framework::OReadStatusBarDocumentHandler::StatusBar_XML_Entry SB_ATTRIBUTE_WIDTH
framework/inc/xml/statusbardocumenthandler.hxx:53
enum framework::OReadStatusBarDocumentHandler::StatusBar_XML_Entry SB_ATTRIBUTE_OFFSET
framework/inc/xml/statusbardocumenthandler.hxx:54
enum framework::OReadStatusBarDocumentHandler::StatusBar_XML_Entry SB_ATTRIBUTE_HELPURL
framework/inc/xml/statusbardocumenthandler.hxx:55
enum framework::OReadStatusBarDocumentHandler::StatusBar_XML_Entry SB_ATTRIBUTE_MANDATORY
framework/inc/xml/toolboxdocumenthandler.hxx:45
enum framework::OReadToolBoxDocumentHandler::ToolBox_XML_Entry TB_ELEMENT_TOOLBAR
framework/inc/xml/toolboxdocumenthandler.hxx:46
enum framework::OReadToolBoxDocumentHandler::ToolBox_XML_Entry TB_ELEMENT_TOOLBARITEM
framework/inc/xml/toolboxdocumenthandler.hxx:47
enum framework::OReadToolBoxDocumentHandler::ToolBox_XML_Entry TB_ELEMENT_TOOLBARSPACE
framework/inc/xml/toolboxdocumenthandler.hxx:48
enum framework::OReadToolBoxDocumentHandler::ToolBox_XML_Entry TB_ELEMENT_TOOLBARBREAK
framework/inc/xml/toolboxdocumenthandler.hxx:49
enum framework::OReadToolBoxDocumentHandler::ToolBox_XML_Entry TB_ELEMENT_TOOLBARSEPARATOR
framework/inc/xml/toolboxdocumenthandler.hxx:50
enum framework::OReadToolBoxDocumentHandler::ToolBox_XML_Entry TB_ATTRIBUTE_TEXT
framework/inc/xml/toolboxdocumenthandler.hxx:51
enum framework::OReadToolBoxDocumentHandler::ToolBox_XML_Entry TB_ATTRIBUTE_URL
framework/inc/xml/toolboxdocumenthandler.hxx:52
enum framework::OReadToolBoxDocumentHandler::ToolBox_XML_Entry TB_ATTRIBUTE_VISIBLE
framework/inc/xml/toolboxdocumenthandler.hxx:53
enum framework::OReadToolBoxDocumentHandler::ToolBox_XML_Entry TB_ATTRIBUTE_STYLE
framework/inc/xml/toolboxdocumenthandler.hxx:54
enum framework::OReadToolBoxDocumentHandler::ToolBox_XML_Entry TB_ATTRIBUTE_UINAME
include/comphelper/errcode.hxx:157
enum DialogMask ButtonsYesNo
include/comphelper/errcode.hxx:160
enum DialogMask ButtonDefaultsCancel
include/comphelper/errcode.hxx:161
enum DialogMask ButtonDefaultsYes
include/comphelper/errcode.hxx:162
enum DialogMask ButtonDefaultsNo
include/connectivity/dbtools.hxx:821
enum connectivity::dbase::DBFType dBaseIII
include/connectivity/dbtools.hxx:822
enum connectivity::dbase::DBFType dBaseIV
include/connectivity/dbtools.hxx:823
enum connectivity::dbase::DBFType dBaseV
include/connectivity/dbtools.hxx:824
enum connectivity::dbase::DBFType VisualFoxPro
include/connectivity/dbtools.hxx:825
enum connectivity::dbase::DBFType VisualFoxProAuto
include/connectivity/dbtools.hxx:826
enum connectivity::dbase::DBFType dBaseFS
include/connectivity/dbtools.hxx:827
enum connectivity::dbase::DBFType dBaseFSMemo
include/connectivity/dbtools.hxx:828
enum connectivity::dbase::DBFType dBaseIIIMemo
include/connectivity/dbtools.hxx:830
enum connectivity::dbase::DBFType dBaseIVMemoSQL
include/connectivity/dbtools.hxx:831
enum connectivity::dbase::DBFType FoxProMemo
include/connectivity/sqliterator.hxx:42
enum connectivity::TraversalParts TableNames
include/desktop/exithelper.h:30
int EXITHELPER_CRASH_WITH_RESTART
include/desktop/exithelper.h:32
int EXITHELPER_NORMAL_RESTART
include/docmodel/color/ComplexColor.hxx:30
enum model::ColorType Palette
include/docmodel/theme/FormatScheme.hxx:211
enum model::BlipEffectType AlphaBiLevel
include/docmodel/theme/FormatScheme.hxx:212
enum model::BlipEffectType AlphaCeiling
include/docmodel/theme/FormatScheme.hxx:213
enum model::BlipEffectType AlphaFloor
include/docmodel/theme/FormatScheme.hxx:214
enum model::BlipEffectType AlphaInverse
include/docmodel/theme/FormatScheme.hxx:215
enum model::BlipEffectType AlphaModulate
include/docmodel/theme/FormatScheme.hxx:217
enum model::BlipEffectType AlphaReplace
include/docmodel/theme/FormatScheme.hxx:219
enum model::BlipEffectType Blur
include/docmodel/theme/FormatScheme.hxx:221
enum model::BlipEffectType ColorReplace
include/docmodel/theme/FormatScheme.hxx:222
enum model::BlipEffectType DuoTone
include/docmodel/theme/FormatScheme.hxx:223
enum model::BlipEffectType FillOverlay
include/docmodel/theme/FormatScheme.hxx:225
enum model::BlipEffectType HSL
include/docmodel/theme/FormatScheme.hxx:227
enum model::BlipEffectType Tint
include/editeng/editeng.hxx:132
enum GetAttribsFlags STYLESHEET
include/editeng/editeng.hxx:133
enum GetAttribsFlags PARAATTRIBS
include/editeng/editstat.hxx:47
enum EEControlBits AUTOCOMPLETE
include/editeng/flditem.hxx:92
enum SvxDateFormat System
include/editeng/flditem.hxx:261
enum SvxTimeFormat System
include/editeng/flditem.hxx:269
enum SvxTimeFormat HH12_MM_AMPM
include/editeng/flditem.hxx:270
enum SvxTimeFormat HH12_MM_SS_AMPM
include/editeng/flditem.hxx:271
enum SvxTimeFormat HH12_MM_SS_00_AMPM
include/editeng/flditem.hxx:358
enum SvxAuthorFormat LastName
include/editeng/flditem.hxx:359
enum SvxAuthorFormat FirstName
include/framework/framelistanalyzer.hxx:39
enum FrameAnalyzerFlags Model
include/framework/framelistanalyzer.hxx:44
enum FrameAnalyzerFlags Zombie
include/i18nutil/casefolding.hxx:41
enum MappingType CasedLetterMask
include/i18nutil/casefolding.hxx:42
enum MappingType NotValue
include/LibreOfficeKit/LibreOfficeKitEnums.h:33
LibreOfficeKitPartMode LOK_PARTMODE_SLIDES
include/LibreOfficeKit/LibreOfficeKitEnums.h:34
LibreOfficeKitPartMode LOK_PARTMODE_NOTES
include/LibreOfficeKit/LibreOfficeKitEnums.h:40
LibreOfficeKitTileMode LOK_TILEMODE_RGBA
include/LibreOfficeKit/LibreOfficeKitEnums.h:99
LibreOfficeKitOptionalFeatures LOK_FEATURE_RANGE_HEADERS
include/LibreOfficeKit/LibreOfficeKitEnums.h:900
LibreOfficeKitCallbackType LOK_CALLBACK_MEDIA_SHAPE
include/o3tl/unit_conversion.hxx:46
enum o3tl::Length count
include/oox/core/filterbase.hxx:81
enum oox::core::OoxmlVersion ISOIEC_29500_2008
include/sfx2/lnkbase.hxx:54
enum sfx2::SvBaseLinkObjectType DdeExternal
include/svl/ctloptions.hxx:67
enum SvtCTLOptions::TextNumerals NUMERALS_HINDI
include/svl/ctloptions.hxx:68
enum SvtCTLOptions::TextNumerals NUMERALS_SYSTEM
include/svl/ctloptions.hxx:69
enum SvtCTLOptions::TextNumerals NUMERALS_CONTEXT
include/svl/ctloptions.hxx:77
enum SvtCTLOptions::EOption E_CTLSEQUENCECHECKING
include/svl/ctloptions.hxx:78
enum SvtCTLOptions::EOption E_CTLCURSORMOVEMENT
include/svl/ctloptions.hxx:79
enum SvtCTLOptions::EOption E_CTLTEXTNUMERALS
include/svl/ctloptions.hxx:80
enum SvtCTLOptions::EOption E_CTLSEQUENCECHECKINGRESTRICTED
include/svl/ctloptions.hxx:81
enum SvtCTLOptions::EOption E_CTLSEQUENCECHECKINGTYPEANDREPLACE
include/svl/ctloptions.hxx:82
enum SvtCTLOptions::EOption E_CTLVERTICALTEXT
include/svl/lockfilecommon.hxx:36
enum LockFileComponent EDITTIME
include/svl/lockfilecommon.hxx:36
enum LockFileComponent LOCALHOST
include/svl/lockfilecommon.hxx:36
enum LockFileComponent OOOUSERNAME
include/svl/lockfilecommon.hxx:36
enum LockFileComponent SYSUSERNAME
include/svl/srchdefs.hxx:40
enum SearchOptionFlags WILDCARD
include/svx/ColorSets.hxx:27
enum svx::ColorSets::IdenticalNameAction Overwrite
include/svx/diagram/datamodel.hxx:43
enum svx::diagram::TypeConstant XML_doc
include/svx/EnhancedCustomShapeGeometry.hxx:47
enum SvxMSDffHandleFlags MIRRORED_X
include/svx/EnhancedCustomShapeGeometry.hxx:48
enum SvxMSDffHandleFlags MIRRORED_Y
include/svx/EnhancedCustomShapeGeometry.hxx:51
enum SvxMSDffHandleFlags MAP
include/svx/EnhancedCustomShapeGeometry.hxx:57
enum SvxMSDffHandleFlags CENTER_X_IS_SPECIAL
include/svx/EnhancedCustomShapeGeometry.hxx:58
enum SvxMSDffHandleFlags CENTER_Y_IS_SPECIAL
include/svx/flagsdef.hxx:109
enum TabulatorDisableFlags TypeRight
include/svx/flagsdef.hxx:110
enum TabulatorDisableFlags TypeCenter
include/svx/flagsdef.hxx:111
enum TabulatorDisableFlags TypeDecimal
include/svx/flagsdef.hxx:115
enum TabulatorDisableFlags FillPoint
include/svx/flagsdef.hxx:116
enum TabulatorDisableFlags FillDashLine
include/svx/flagsdef.hxx:117
enum TabulatorDisableFlags FillSolidLine
include/svx/flagsdef.hxx:118
enum TabulatorDisableFlags FillSpecial
include/svx/ruler.hxx:60
enum SvxRulerDragFlags OBJECT_LEFT_INDENT_ONLY
include/svx/sdtakitm.hxx:31
enum SdrTextAniKind Blink
include/svx/svdhdl.hxx:106
enum BitmapMarkerKind RectPlus_7x7
include/svx/svdobjkind.hxx:71
enum SdrObjKind E3D_INVENTOR_FIRST
include/svx/svdobjkind.hxx:72
enum SdrObjKind E3D_INVENTOR_LAST
include/svx/svdograf.hxx:42
enum SdrGrafObjTransformsAttrs ROTATE
include/svx/swframeposstrings.hxx:79
enum SvxSwFramePosString::StringId STR_MAX
include/svx/swframetypes.hxx:41
enum RndStdIds HEADERR
include/tools/inetmsg.hxx:72
enum InetMessageMime NUMHDR
include/unotools/extendedsecurityoptions.hxx:27
enum SvtExtendedSecurityOptions::OpenHyperlinkMode OPEN_NEVER
include/unotools/fontcfg.hxx:50
enum ImplFontAttrs Default
include/unotools/fontcfg.hxx:51
enum ImplFontAttrs Standard
include/unotools/fontcfg.hxx:58
enum ImplFontAttrs Special
include/unotools/fontcfg.hxx:67
enum ImplFontAttrs CTL
include/unotools/fontcfg.hxx:68
enum ImplFontAttrs NoneLatin
include/unotools/fontcfg.hxx:69
enum ImplFontAttrs Full
include/unotools/fontcfg.hxx:82
enum ImplFontAttrs CJK_AllLang
include/unotools/fontcfg.hxx:84
enum ImplFontAttrs AllSubscript
include/unotools/fontcfg.hxx:85
enum ImplFontAttrs AllSerifStyle
include/unotools/fontdefs.hxx:73
enum DefaultFontType LATIN_DISPLAY
include/unotools/fontdefs.hxx:74
enum DefaultFontType LATIN_FIXED
include/unotools/fontdefs.hxx:84
enum DefaultFontType CTL_DISPLAY
include/unotools/moduleoptions.hxx:62
enum SvtModuleOptions::EModule BASIC
include/vcl/animate/AnimationFrame.hxx:33
enum Blend Source
include/vcl/gfxlink.hxx:54
enum GfxLinkType NativeFirst
include/vcl/gfxlink.hxx:55
enum GfxLinkType NativeLast
include/vcl/GraphicObject.hxx:36
enum GraphicAdjustmentFlags DRAWMODE
include/vcl/GraphicObject.hxx:37
enum GraphicAdjustmentFlags COLORS
include/vcl/GraphicObject.hxx:38
enum GraphicAdjustmentFlags MIRROR
include/vcl/GraphicObject.hxx:39
enum GraphicAdjustmentFlags ROTATE
include/vcl/GraphicObject.hxx:40
enum GraphicAdjustmentFlags TRANSPARENCY
include/vcl/graphictools.hxx:227
enum SvtGraphicFill::FillType fillSolid
include/vcl/headbar.hxx:187
enum HeaderBarItemBits RIGHTIMAGE
include/vcl/help.hxx:41
enum QuickHelpFlags NoAutoPos
include/vcl/keycod.hxx:28
enum KeyFuncType REDO
include/vcl/keycodes.hxx:178
enum ModKeyFlags Mod1Msk
include/vcl/keycodes.hxx:179
enum ModKeyFlags Mod2Msk
include/vcl/menu.hxx:75
enum PopupMenuFlags ExecuteUp
include/vcl/pdf/PDFAnnotAActionType.hxx:18
enum vcl::pdf::PDFAnnotAActionType Format
include/vcl/pdf/PDFAnnotAActionType.hxx:19
enum vcl::pdf::PDFAnnotAActionType Validate
include/vcl/pdf/PDFAnnotAActionType.hxx:20
enum vcl::pdf::PDFAnnotAActionType Calculate
include/vcl/pdf/PDFAnnotationSubType.hxx:17
enum vcl::pdf::PDFAnnotationSubType Unknown
include/vcl/pdf/PDFAnnotationSubType.hxx:25
enum vcl::pdf::PDFAnnotationSubType Polyline
include/vcl/pdf/PDFAnnotationSubType.hxx:27
enum vcl::pdf::PDFAnnotationSubType Underline
include/vcl/pdf/PDFAnnotationSubType.hxx:28
enum vcl::pdf::PDFAnnotationSubType Squiggly
include/vcl/pdf/PDFAnnotationSubType.hxx:29
enum vcl::pdf::PDFAnnotationSubType Strikeout
include/vcl/pdf/PDFAnnotationSubType.hxx:30
enum vcl::pdf::PDFAnnotationSubType Stamp
include/vcl/pdf/PDFAnnotationSubType.hxx:31
enum vcl::pdf::PDFAnnotationSubType Caret
include/vcl/pdf/PDFAnnotationSubType.hxx:34
enum vcl::pdf::PDFAnnotationSubType FileAttachment
include/vcl/pdf/PDFAnnotationSubType.hxx:35
enum vcl::pdf::PDFAnnotationSubType Sound
include/vcl/pdf/PDFAnnotationSubType.hxx:36
enum vcl::pdf::PDFAnnotationSubType Movie
include/vcl/pdf/PDFAnnotationSubType.hxx:38
enum vcl::pdf::PDFAnnotationSubType Screen
include/vcl/pdf/PDFAnnotationSubType.hxx:39
enum vcl::pdf::PDFAnnotationSubType Printermark
include/vcl/pdf/PDFAnnotationSubType.hxx:40
enum vcl::pdf::PDFAnnotationSubType Trapnet
include/vcl/pdf/PDFAnnotationSubType.hxx:41
enum vcl::pdf::PDFAnnotationSubType Watermark
include/vcl/pdf/PDFAnnotationSubType.hxx:42
enum vcl::pdf::PDFAnnotationSubType Threed
include/vcl/pdf/PDFAnnotationSubType.hxx:43
enum vcl::pdf::PDFAnnotationSubType Richmedia
include/vcl/pdf/PDFAnnotationSubType.hxx:44
enum vcl::pdf::PDFAnnotationSubType XFAWidget
include/vcl/pdf/PDFAnnotationSubType.hxx:45
enum vcl::pdf::PDFAnnotationSubType Redact
include/vcl/pdf/PDFBitmapType.hxx:17
enum vcl::pdf::PDFBitmapType Unknown
include/vcl/pdf/PDFBitmapType.hxx:18
enum vcl::pdf::PDFBitmapType Gray
include/vcl/pdf/PDFBitmapType.hxx:19
enum vcl::pdf::PDFBitmapType BGR
include/vcl/pdf/PDFBitmapType.hxx:20
enum vcl::pdf::PDFBitmapType BGRx
include/vcl/pdf/PDFBitmapType.hxx:21
enum vcl::pdf::PDFBitmapType BGRA
include/vcl/pdf/PDFErrorType.hxx:17
enum vcl::pdf::PDFErrorType Success
include/vcl/pdf/PDFErrorType.hxx:18
enum vcl::pdf::PDFErrorType Unknown
include/vcl/pdf/PDFErrorType.hxx:19
enum vcl::pdf::PDFErrorType File
include/vcl/pdf/PDFErrorType.hxx:20
enum vcl::pdf::PDFErrorType Format
include/vcl/pdf/PDFErrorType.hxx:21
enum vcl::pdf::PDFErrorType Password
include/vcl/pdf/PDFErrorType.hxx:22
enum vcl::pdf::PDFErrorType Security
include/vcl/pdf/PDFErrorType.hxx:23
enum vcl::pdf::PDFErrorType Page
include/vcl/pdf/PDFFillMode.hxx:19
enum vcl::pdf::PDFFillMode Winding
include/vcl/pdf/PDFFindFlags.hxx:22
enum vcl::pdf::PDFFindFlags Consecutive
include/vcl/pdf/PDFFormFieldType.hxx:17
enum vcl::pdf::PDFFormFieldType Unknown
include/vcl/pdf/PDFFormFieldType.hxx:18
enum vcl::pdf::PDFFormFieldType PushButton
include/vcl/pdf/PDFFormFieldType.hxx:20
enum vcl::pdf::PDFFormFieldType RadioButton
include/vcl/pdf/PDFFormFieldType.hxx:22
enum vcl::pdf::PDFFormFieldType ListBox
include/vcl/pdf/PDFFormFieldType.hxx:24
enum vcl::pdf::PDFFormFieldType Signature
include/vcl/pdf/PDFObjectType.hxx:17
enum vcl::pdf::PDFObjectType Unknown
include/vcl/pdf/PDFObjectType.hxx:18
enum vcl::pdf::PDFObjectType Boolean
include/vcl/pdf/PDFObjectType.hxx:19
enum vcl::pdf::PDFObjectType Number
include/vcl/pdf/PDFObjectType.hxx:21
enum vcl::pdf::PDFObjectType Name
include/vcl/pdf/PDFObjectType.hxx:22
enum vcl::pdf::PDFObjectType Array
include/vcl/pdf/PDFObjectType.hxx:23
enum vcl::pdf::PDFObjectType Dictionary
include/vcl/pdf/PDFObjectType.hxx:24
enum vcl::pdf::PDFObjectType Stream
include/vcl/pdf/PDFObjectType.hxx:25
enum vcl::pdf::PDFObjectType Nullobj
include/vcl/pdf/PDFObjectType.hxx:26
enum vcl::pdf::PDFObjectType Reference
include/vcl/pdf/PDFPageObjectType.hxx:17
enum vcl::pdf::PDFPageObjectType Unknown
include/vcl/pdf/PDFPageObjectType.hxx:21
enum vcl::pdf::PDFPageObjectType Shading
include/vcl/pdf/PDFSegmentType.hxx:17
enum vcl::pdf::PDFSegmentType Unknown
include/vcl/pdf/PDFSegmentType.hxx:19
enum vcl::pdf::PDFSegmentType Bezierto
include/vcl/pdf/PDFTextRenderMode.hxx:17
enum vcl::pdf::PDFTextRenderMode Unknown
include/vcl/pdf/PDFTextRenderMode.hxx:19
enum vcl::pdf::PDFTextRenderMode Stroke
include/vcl/pdf/PDFTextRenderMode.hxx:20
enum vcl::pdf::PDFTextRenderMode FillStroke
include/vcl/pdf/PDFTextRenderMode.hxx:21
enum vcl::pdf::PDFTextRenderMode Invisible
include/vcl/pdf/PDFTextRenderMode.hxx:22
enum vcl::pdf::PDFTextRenderMode FillClip
include/vcl/pdf/PDFTextRenderMode.hxx:23
enum vcl::pdf::PDFTextRenderMode StrokeClip
include/vcl/pdf/PDFTextRenderMode.hxx:24
enum vcl::pdf::PDFTextRenderMode FillStrokeClip
include/vcl/pdf/PDFTextRenderMode.hxx:25
enum vcl::pdf::PDFTextRenderMode Clip
include/vcl/prntypes.hxx:37
enum PrintQueueFlags Ready
include/vcl/prntypes.hxx:38
enum PrintQueueFlags Paused
include/vcl/prntypes.hxx:39
enum PrintQueueFlags PendingDeletion
include/vcl/prntypes.hxx:40
enum PrintQueueFlags Busy
include/vcl/prntypes.hxx:41
enum PrintQueueFlags Initializing
include/vcl/prntypes.hxx:42
enum PrintQueueFlags Waiting
include/vcl/prntypes.hxx:43
enum PrintQueueFlags WarmingUp
include/vcl/prntypes.hxx:44
enum PrintQueueFlags Processing
include/vcl/prntypes.hxx:45
enum PrintQueueFlags Printing
include/vcl/prntypes.hxx:46
enum PrintQueueFlags Offline
include/vcl/prntypes.hxx:47
enum PrintQueueFlags Error
include/vcl/prntypes.hxx:48
enum PrintQueueFlags StatusUnknown
include/vcl/prntypes.hxx:49
enum PrintQueueFlags PaperJam
include/vcl/prntypes.hxx:50
enum PrintQueueFlags PaperOut
include/vcl/prntypes.hxx:51
enum PrintQueueFlags ManualFeed
include/vcl/prntypes.hxx:52
enum PrintQueueFlags PaperProblem
include/vcl/prntypes.hxx:53
enum PrintQueueFlags IOActive
include/vcl/prntypes.hxx:54
enum PrintQueueFlags OutputBinFull
include/vcl/prntypes.hxx:55
enum PrintQueueFlags TonerLow
include/vcl/prntypes.hxx:56
enum PrintQueueFlags NoToner
include/vcl/prntypes.hxx:57
enum PrintQueueFlags PagePunt
include/vcl/prntypes.hxx:58
enum PrintQueueFlags UserIntervention
include/vcl/prntypes.hxx:59
enum PrintQueueFlags OutOfMemory
include/vcl/prntypes.hxx:60
enum PrintQueueFlags DoorOpen
include/vcl/prntypes.hxx:61
enum PrintQueueFlags PowerSave
include/vcl/ptrstyle.hxx:56
enum PointerStyle Pen
include/vcl/rendercontext/DrawImageFlags.hxx:29
enum DrawImageFlags Highlight
include/vcl/rendercontext/DrawImageFlags.hxx:30
enum DrawImageFlags Deactive
include/vcl/salnativewidgets.hxx:392
enum TabBarPosition Right
include/vcl/salnativewidgets.hxx:393
enum TabBarPosition Bottom
include/vcl/Scanline.hxx:40
enum ScanlineFormat N32BitTcXbgr
include/vcl/Scanline.hxx:42
enum ScanlineFormat N32BitTcXrgb
include/vcl/skia/SkiaHelper.hxx:31
enum SkiaHelper::RenderMethod RenderMetal
include/vcl/themecolors.hxx:19
enum ThemeState DISABLED
include/vcl/vclenum.hxx:39
enum MenuItemBits POPUPSELECT
include/vcl/vclenum.hxx:112
enum WindowBorderStyle NWF
include/vcl/vclenum.hxx:132
enum ExtTimeFieldFormat Long24H
include/vcl/vclenum.hxx:132
enum ExtTimeFieldFormat Short24H
include/vcl/vclenum.hxx:133
enum ExtTimeFieldFormat Long12H
include/vcl/vclenum.hxx:133
enum ExtTimeFieldFormat Short12H
include/vcl/vclenum.hxx:134
enum ExtTimeFieldFormat ShortDuration
include/vcl/vclenum.hxx:292
enum NavbarButtonSize Auto
include/vcl/vclenum.hxx:293
enum NavbarButtonSize Small
include/vcl/vclenum.hxx:294
enum NavbarButtonSize Large
include/vcl/vclenum.hxx:295
enum NavbarButtonSize XLarge
include/vcl/vclevent.hxx:117
enum VclEventId TabpageRemovedAll
include/vcl/wall.hxx:34
enum WallpaperStyle Center
include/vcl/wall.hxx:36
enum WallpaperStyle TopLeft
include/vcl/wall.hxx:37
enum WallpaperStyle Top
include/vcl/wall.hxx:38
enum WallpaperStyle TopRight
include/vcl/wall.hxx:39
enum WallpaperStyle Left
include/vcl/wall.hxx:40
enum WallpaperStyle Right
include/vcl/wall.hxx:41
enum WallpaperStyle BottomLeft
include/vcl/wall.hxx:42
enum WallpaperStyle Bottom
include/xmloff/families.hxx:64
enum XmlStyleFamily TEXT_ENDNOTECONFIG
include/xmloff/xmlimp.hxx:118
enum SvXMLImportFlags EMBEDDED
linguistic/source/convdicxml.hxx:67
enum ConvDicXMLToken TEXT_CONVERSION_DICTIONARY
linguistic/source/convdicxml.hxx:68
enum ConvDicXMLToken RIGHT_TEXT
linguistic/source/convdicxml.hxx:69
enum ConvDicXMLToken ENTRY
o3tl/qa/test-enumarray.cxx:28
enum MyEnum ONE
o3tl/qa/test-enumarray.cxx:28
enum MyEnum TWO
o3tl/qa/test-typed_flags.cxx:20
enum (anonymous namespace)::ConfigurationChangedHint TWO
reportdesign/inc/conditionalexpression.hxx:79
enum rptui::ComparisonOperation eNotBetween
reportdesign/inc/conditionalexpression.hxx:80
enum rptui::ComparisonOperation eEqualTo
reportdesign/inc/conditionalexpression.hxx:81
enum rptui::ComparisonOperation eNotEqualTo
reportdesign/inc/conditionalexpression.hxx:82
enum rptui::ComparisonOperation eGreaterThan
reportdesign/inc/conditionalexpression.hxx:83
enum rptui::ComparisonOperation eLessThan
reportdesign/inc/conditionalexpression.hxx:84
enum rptui::ComparisonOperation eGreaterOrEqual
reportdesign/inc/conditionalexpression.hxx:85
enum rptui::ComparisonOperation eLessOrEqual
sal/qa/osl/file/osl_File.cxx:281
enum (anonymous namespace)::oslCheckMode Exist
sc/inc/queryiter.hxx:161
enum ScQueryCellIteratorBase::StopOnMismatchBits nStopOnMismatchExecuted
sc/inc/queryiter.hxx:161
enum ScQueryCellIteratorBase<ScQueryCellIteratorAccess::Direct, ScQueryCellIteratorType::CountIf>::StopOnMismatchBits nStopOnMismatchExecuted
sc/inc/queryiter.hxx:161
enum ScQueryCellIteratorBase<ScQueryCellIteratorAccess::Direct, ScQueryCellIteratorType::Generic>::StopOnMismatchBits nStopOnMismatchExecuted
sc/inc/queryiter.hxx:161
enum ScQueryCellIteratorBase<ScQueryCellIteratorAccess::SortedCache, ScQueryCellIteratorType::CountIf>::StopOnMismatchBits nStopOnMismatchExecuted
sc/inc/queryiter.hxx:161
enum ScQueryCellIteratorBase<ScQueryCellIteratorAccess::SortedCache, ScQueryCellIteratorType::Generic>::StopOnMismatchBits nStopOnMismatchExecuted
sc/inc/queryiter.hxx:169
enum ScQueryCellIteratorBase::TestEqualConditionBits nTestEqualConditionFulfilled
sc/inc/queryiter.hxx:169
enum ScQueryCellIteratorBase<ScQueryCellIteratorAccess::Direct, ScQueryCellIteratorType::CountIf>::TestEqualConditionBits nTestEqualConditionFulfilled
sc/inc/queryiter.hxx:169
enum ScQueryCellIteratorBase<ScQueryCellIteratorAccess::Direct, ScQueryCellIteratorType::Generic>::TestEqualConditionBits nTestEqualConditionFulfilled
sc/inc/queryiter.hxx:169
enum ScQueryCellIteratorBase<ScQueryCellIteratorAccess::SortedCache, ScQueryCellIteratorType::CountIf>::TestEqualConditionBits nTestEqualConditionFulfilled
sc/inc/queryiter.hxx:169
enum ScQueryCellIteratorBase<ScQueryCellIteratorAccess::SortedCache, ScQueryCellIteratorType::Generic>::TestEqualConditionBits nTestEqualConditionFulfilled
sc/inc/token.hxx:215
enum ScTableRefToken::Item HEADERS_DATA
sc/inc/token.hxx:216
enum ScTableRefToken::Item DATA_TOTALS
sc/inc/types.hxx:37
enum ScMatValType NonvalueMask
sc/inc/types.hxx:60
enum ScFormulaVectorState FormulaVectorUnknown
sc/qa/unit/ucalc_copypaste.cxx:44
enum TestCopyPaste::CalcMode RecalcAtEnd
sc/source/core/inc/interpre.hxx:59
enum MatchMode regex
sc/source/core/inc/interpre.hxx:59
enum MatchMode wildcard
sc/source/core/inc/interpre.hxx:60
enum SearchMode searchrev
sc/source/core/inc/interpre.hxx:61
enum IgnoreValues ALL
sc/source/core/inc/interpre.hxx:61
enum IgnoreValues BLANKS
sc/source/core/inc/interpre.hxx:61
enum IgnoreValues ERRORS
sc/source/ui/inc/viewdata.hxx:42
enum ScSplitMode SC_SPLIT_MODE_MAX_ENUM
sc/source/ui/inc/viewdata.hxx:44
enum ScSplitPos SC_SPLIT_POS_MAX_ENUM
sc/source/ui/StatisticsDialogs/RegressionDialog.cxx:102
enum (anonymous namespace)::ScRegType LOGARITHMIC
sc/source/ui/StatisticsDialogs/RegressionDialog.cxx:103
enum (anonymous namespace)::ScRegType POWER
sc/source/ui/unoobj/condformatuno.cxx:273
enum (anonymous namespace)::DateProperties Date_StyleName
sc/source/ui/unoobj/condformatuno.cxx:274
enum (anonymous namespace)::DateProperties DateType
sc/source/ui/view/viewfun2.cxx:267
enum (anonymous namespace)::ScAutoSum ScAutoSumEnd
scaddins/source/datefunc/datefunc.hxx:41
enum ScaCategory Finance
scaddins/source/datefunc/datefunc.hxx:42
enum ScaCategory Inf
scaddins/source/datefunc/datefunc.hxx:43
enum ScaCategory Math
scaddins/source/datefunc/datefunc.hxx:44
enum ScaCategory Tech
scaddins/source/pricing/pricing.hxx:47
enum sca::pricing::ScaCategory DateTime
scaddins/source/pricing/pricing.hxx:48
enum sca::pricing::ScaCategory Text
scaddins/source/pricing/pricing.hxx:50
enum sca::pricing::ScaCategory Inf
scaddins/source/pricing/pricing.hxx:51
enum sca::pricing::ScaCategory Math
scaddins/source/pricing/pricing.hxx:52
enum sca::pricing::ScaCategory Tech
sd/source/ui/inc/SlideshowLayerRenderer.hxx:46
enum sd::RenderStage TextFields
sd/source/ui/inc/unomodel.hxx:420
enum SdLinkTargetType Page
sd/source/ui/inc/unomodel.hxx:421
enum SdLinkTargetType Notes
sd/source/ui/inc/unomodel.hxx:422
enum SdLinkTargetType Handout
sd/source/ui/inc/unomodel.hxx:423
enum SdLinkTargetType MasterPage
sd/source/ui/slidesorter/cache/SlsRequestPriorityClass.hxx:39
enum sd::slidesorter::cache::RequestPriorityClass MAX_CLASS
slideshow/source/engine/shapes/viewshape.hxx:276
enum slideshow::internal::ViewShape::(unnamed at /home/noel/libo-plugin/slideshow/source/engine/shapes/viewshape.hxx:276:13) MAX_RENDER_CACHE_ENTRIES
slideshow/source/engine/slideview.cxx:244
enum slideshow::internal::(anonymous namespace)::LayerSpriteContainer::(unnamed at /home/noel/libo-plugin/slideshow/source/engine/slideview.cxx:244:5) SPRITE_ULLAGE
slideshow/source/engine/slideview.cxx:721
enum slideshow::internal::(anonymous namespace)::SlideView::(unnamed at /home/noel/libo-plugin/slideshow/source/engine/slideview.cxx:721:5) LAYER_ULLAGE
slideshow/source/inc/box2dtools.hxx:46
enum box2d::utils::box2DNonsimulatedShapeUpdateType BOX2D_UPDATE_SIZE
soltools/cpp/cpp.h:42
int WS
starmath/inc/mathml/def.hxx:56
enum SmMlElementType NMlStructural
starmath/inc/mathml/def.hxx:57
enum SmMlElementType NMlSmNode
svgio/inc/svgstyleattributes.hxx:62
enum svgio::svgreader::FontSize notset
svl/source/numbers/zformat.cxx:311
enum (anonymous namespace)::BracketFormatSymbolType BRACKET_SYMBOLTYPE_DBNUM2
svl/source/numbers/zformat.cxx:312
enum (anonymous namespace)::BracketFormatSymbolType BRACKET_SYMBOLTYPE_DBNUM3
svl/source/numbers/zformat.cxx:313
enum (anonymous namespace)::BracketFormatSymbolType BRACKET_SYMBOLTYPE_DBNUM4
svl/source/numbers/zformat.cxx:314
enum (anonymous namespace)::BracketFormatSymbolType BRACKET_SYMBOLTYPE_DBNUM5
svl/source/numbers/zformat.cxx:315
enum (anonymous namespace)::BracketFormatSymbolType BRACKET_SYMBOLTYPE_DBNUM6
svl/source/numbers/zformat.cxx:316
enum (anonymous namespace)::BracketFormatSymbolType BRACKET_SYMBOLTYPE_DBNUM7
svl/source/numbers/zformat.cxx:317
enum (anonymous namespace)::BracketFormatSymbolType BRACKET_SYMBOLTYPE_DBNUM8
svl/source/numbers/zformat.cxx:318
enum (anonymous namespace)::BracketFormatSymbolType BRACKET_SYMBOLTYPE_DBNUM9
svl/source/numbers/zformat.cxx:321
enum (anonymous namespace)::BracketFormatSymbolType BRACKET_SYMBOLTYPE_NATNUM1
svl/source/numbers/zformat.cxx:322
enum (anonymous namespace)::BracketFormatSymbolType BRACKET_SYMBOLTYPE_NATNUM2
svl/source/numbers/zformat.cxx:323
enum (anonymous namespace)::BracketFormatSymbolType BRACKET_SYMBOLTYPE_NATNUM3
svl/source/numbers/zformat.cxx:324
enum (anonymous namespace)::BracketFormatSymbolType BRACKET_SYMBOLTYPE_NATNUM4
svl/source/numbers/zformat.cxx:325
enum (anonymous namespace)::BracketFormatSymbolType BRACKET_SYMBOLTYPE_NATNUM5
svl/source/numbers/zformat.cxx:326
enum (anonymous namespace)::BracketFormatSymbolType BRACKET_SYMBOLTYPE_NATNUM6
svl/source/numbers/zformat.cxx:327
enum (anonymous namespace)::BracketFormatSymbolType BRACKET_SYMBOLTYPE_NATNUM7
svl/source/numbers/zformat.cxx:328
enum (anonymous namespace)::BracketFormatSymbolType BRACKET_SYMBOLTYPE_NATNUM8
svl/source/numbers/zformat.cxx:329
enum (anonymous namespace)::BracketFormatSymbolType BRACKET_SYMBOLTYPE_NATNUM9
svl/source/numbers/zformat.cxx:330
enum (anonymous namespace)::BracketFormatSymbolType BRACKET_SYMBOLTYPE_NATNUM10
svl/source/numbers/zformat.cxx:331
enum (anonymous namespace)::BracketFormatSymbolType BRACKET_SYMBOLTYPE_NATNUM11
svl/source/numbers/zformat.cxx:332
enum (anonymous namespace)::BracketFormatSymbolType BRACKET_SYMBOLTYPE_NATNUM12
svl/source/numbers/zformat.cxx:333
enum (anonymous namespace)::BracketFormatSymbolType BRACKET_SYMBOLTYPE_NATNUM13
svl/source/numbers/zformat.cxx:334
enum (anonymous namespace)::BracketFormatSymbolType BRACKET_SYMBOLTYPE_NATNUM14
svl/source/numbers/zformat.cxx:335
enum (anonymous namespace)::BracketFormatSymbolType BRACKET_SYMBOLTYPE_NATNUM15
svl/source/numbers/zformat.cxx:336
enum (anonymous namespace)::BracketFormatSymbolType BRACKET_SYMBOLTYPE_NATNUM16
svl/source/numbers/zformat.cxx:337
enum (anonymous namespace)::BracketFormatSymbolType BRACKET_SYMBOLTYPE_NATNUM17
svl/source/numbers/zformat.cxx:338
enum (anonymous namespace)::BracketFormatSymbolType BRACKET_SYMBOLTYPE_NATNUM18
svl/source/numbers/zformat.cxx:339
enum (anonymous namespace)::BracketFormatSymbolType BRACKET_SYMBOLTYPE_NATNUM19
svx/source/inc/docrecovery.hxx:77
enum EDocStates TryLoadBackup
svx/source/inc/docrecovery.hxx:78
enum EDocStates TryLoadOriginal
svx/source/inc/docrecovery.hxx:83
enum EDocStates Damaged
svx/source/inc/docrecovery.hxx:85
enum EDocStates Incomplete
svx/source/inc/docrecovery.hxx:87
enum EDocStates Succeeded
svx/source/tbxctrls/fillctrl.cxx:55
enum (anonymous namespace)::eFillStyle SOLID
svx/source/tbxctrls/fillctrl.cxx:56
enum (anonymous namespace)::eFillStyle GRADIENT
svx/source/tbxctrls/fillctrl.cxx:57
enum (anonymous namespace)::eFillStyle HATCH
svx/source/tbxctrls/fillctrl.cxx:58
enum (anonymous namespace)::eFillStyle BITMAP
sw/inc/accmap.hxx:74
enum AccessibleStates OPAQUE
sw/inc/authfld.hxx:172
enum SwAuthorityField::TargetType UseTargetURL
sw/inc/crstate.hxx:31
enum SwFillMode Space
sw/inc/crstate.hxx:32
enum SwFillMode Margin
sw/inc/crstate.hxx:33
enum SwFillMode Indent
sw/inc/dbmgr.hxx:487
enum sw::DBConnURIType MSACE
sw/inc/docary.hxx:72
enum SwVectorModifyBase<class SwFrameFormat *>::DestructorPolicy FreeElements
sw/inc/docary.hxx:72
enum SwVectorModifyBase<class SwGrfFormatColl *>::DestructorPolicy FreeElements
sw/inc/docary.hxx:72
enum SwVectorModifyBase<class SwTextFormatColl *>::DestructorPolicy FreeElements
sw/inc/docufld.hxx:117
enum SwExtUserSubType EU_FATHERSNAME
sw/inc/docufld.hxx:118
enum SwExtUserSubType EU_APARTMENT
sw/inc/ndtyp.hxx:42
enum SwNodeType ContentMask
sw/inc/SwCapConfigProp.hxx:23
enum CapConfigProp PROP_CAP_OBJECT_ENABLE
sw/inc/undobj.hxx:137
enum DelContentType Fly
sw/inc/undobj.hxx:138
enum DelContentType Bkm
sw/inc/viewsh.hxx:70
enum LockPaintReason ViewLayout
sw/source/core/inc/dbg_lay.hxx:28
enum PROT Init
sw/source/core/inc/SwXMLBlockImport.hxx:78
enum SwXMLTextBlockToken OFFICE_BODY
sw/source/core/inc/SwXMLBlockImport.hxx:79
enum SwXMLTextBlockToken OFFICE_TEXT
sw/source/core/inc/SwXMLBlockImport.hxx:80
enum SwXMLTextBlockToken OFFICE_DOCUMENT
sw/source/core/inc/SwXMLBlockImport.hxx:81
enum SwXMLTextBlockToken OFFICE_DOCUMENT_CONTENT
sw/source/core/inc/SwXMLBlockImport.hxx:82
enum SwXMLTextBlockToken TEXT_P
sw/source/core/inc/SwXMLBlockImport.hxx:103
enum SwXMLBlockListToken BLOCK
sw/source/core/inc/SwXMLBlockImport.hxx:104
enum SwXMLBlockListToken BLOCK_LIST
sw/source/core/text/pormulti.hxx:47
enum RubyPosition RIGHT
sw/source/filter/ww8/ww8scan.hxx:603
enum WW8PLCFx_Fc_FKP::Limits eMaxCache
sw/source/uibase/inc/envimg.hxx:31
enum SwEnvAlign ENV_HOR_CNTR
sw/source/uibase/inc/envimg.hxx:32
enum SwEnvAlign ENV_HOR_RGHT
sw/source/uibase/inc/envimg.hxx:33
enum SwEnvAlign ENV_VER_LEFT
sw/source/uibase/inc/envimg.hxx:34
enum SwEnvAlign ENV_VER_CNTR
sw/source/uibase/shells/textsh1.cxx:2469
enum ContentFilterType INDEX
sw/source/uibase/shells/textsh1.cxx:2470
enum ContentFilterType TAG
sw/source/uibase/shells/textsh1.cxx:2471
enum ContentFilterType ALIAS
sw/source/uibase/shells/textsh1.cxx:2472
enum ContentFilterType ID
sw/source/uibase/shells/textsh1.cxx:2491
enum ChartFilterType INDEX
sw/source/uibase/shells/textsh1.cxx:2492
enum ChartFilterType NAME
sw/source/uibase/shells/textsh1.cxx:2493
enum ChartFilterType TITLE
sw/source/uibase/shells/textsh1.cxx:2494
enum ChartFilterType SUBTITLE
sw/source/writerfilter/ooxml/OOXMLFactory.hxx:33
enum writerfilter::ooxml::ResourceType List
sw/source/writerfilter/ooxml/OOXMLFactory.hxx:34
enum writerfilter::ooxml::ResourceType Integer
sw/source/writerfilter/ooxml/OOXMLFactory.hxx:36
enum writerfilter::ooxml::ResourceType Hex
sw/source/writerfilter/ooxml/OOXMLFactory.hxx:37
enum writerfilter::ooxml::ResourceType HexColor
sw/source/writerfilter/ooxml/OOXMLFactory.hxx:38
enum writerfilter::ooxml::ResourceType String
sw/source/writerfilter/ooxml/OOXMLFactory.hxx:40
enum writerfilter::ooxml::ResourceType Boolean
sw/source/writerfilter/ooxml/OOXMLFactory.hxx:49
enum writerfilter::ooxml::ResourceType TwipsMeasure_asSigned
sw/source/writerfilter/ooxml/OOXMLFactory.hxx:50
enum writerfilter::ooxml::ResourceType TwipsMeasure_asZero
sw/source/writerfilter/ooxml/OOXMLFactory.hxx:51
enum writerfilter::ooxml::ResourceType HpsMeasure
sw/source/writerfilter/ooxml/OOXMLFactory.hxx:52
enum writerfilter::ooxml::ResourceType MeasurementOrPercent
toolkit/inc/controls/table/tablemodel.hxx:49
enum ColumnAttributeGroup ALL
tools/source/generic/poly.cxx:1123
enum (unnamed at /home/noel/libo-plugin/tools/source/generic/poly.cxx:1123:5) maxRecursionDepth
ucb/source/ucp/webdav-curl/DAVTypes.hxx:183
enum http_dav_ucp::Depth DAVINFINITY
ucbhelper/source/client/proxydecider.cxx:126
enum ucbhelper::proxydecider_impl::InternetProxyDecider_Impl::ProxyType Automatic
vcl/inc/dndhelper.hxx:31
enum vcl::DragOrDrop Drag
vcl/inc/driverblocklist.hxx:62
enum DriverBlocklist::OperatingSystem DRIVER_OS_WINDOWS_LAST
vcl/inc/driverblocklist.hxx:70
enum DriverBlocklist::OperatingSystem DRIVER_OS_OSX_LAST
vcl/inc/fontsubset.hxx:41
enum FontType ANY_TYPE1
vcl/inc/pdf/pdfwriter_impl.hxx:77
enum vcl::pdf::GraphicsStateUpdateFlags MapMode
vcl/inc/pdf/pdfwriter_impl.hxx:82
enum vcl::pdf::GraphicsStateUpdateFlags TransparentPercent
vcl/inc/printerinfomanager.hxx:69
enum psp::PrinterInfoManager::Type CPD
vcl/inc/salptype.hxx:45
enum SalPrinterError Abort
vcl/source/app/svapp.cxx:1186
enum (unnamed at /home/noel/libo-plugin/vcl/source/app/svapp.cxx:1186:1) hwEnv
vcl/source/app/svapp.cxx:1186
enum (unnamed at /home/noel/libo-plugin/vcl/source/app/svapp.cxx:1186:1) hwUI
vcl/source/filter/jpeg/Exif.hxx:40
enum Tag ORIENTATION
vcl/source/window/printdlg.cxx:59
enum (unnamed at /home/noel/libo-plugin/vcl/source/window/printdlg.cxx:56:1) ORIENTATION_PORTRAIT
xmlsecurity/source/helper/ooxmlsecparser.cxx:964
enum OOXMLSecParser::DsSignaturePropertyContext::SignatureProperty Info
|