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
|
avmedia/source/vlc/wrapper/Types.hxx:37
libvlc_event_t type int
avmedia/source/vlc/wrapper/Types.hxx:51
libvlc_track_description_t i_id int
avmedia/source/vlc/wrapper/Types.hxx:53
libvlc_track_description_t p_next struct libvlc_track_description_t *
basegfx/source/polygon/b2dtrapezoid.cxx:205
basegfx::trapezoidhelper::(anonymous namespace)::PointBlockAllocator maFirstStackBlock class basegfx::B2DPoint [32]
basic/source/inc/expr.hxx:93
SbiExprNode::(anonymous) nTypeStrId sal_uInt16
bridges/source/cpp_uno/gcc3_linux_x86-64/callvirtualmethod.cxx:63
Data rdx sal_uInt64
bridges/source/cpp_uno/gcc3_linux_x86-64/callvirtualmethod.cxx:64
Data xmm0 double
bridges/source/cpp_uno/gcc3_linux_x86-64/callvirtualmethod.cxx:65
Data xmm1 double
bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx:114
__cxxabiv1::__cxa_exception exceptionType std::type_info *
bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx:115
__cxxabiv1::__cxa_exception exceptionDestructor void (*)(void *)
bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx:116
__cxxabiv1::__cxa_exception unexpectedHandler void (*)(void)
bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx:117
__cxxabiv1::__cxa_exception terminateHandler std::terminate_handler
bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx:118
__cxxabiv1::__cxa_exception nextException struct __cxxabiv1::__cxa_exception *
bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx:119
__cxxabiv1::__cxa_exception handlerCount int
bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx:120
__cxxabiv1::__cxa_exception handlerSwitchValue int
bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx:121
__cxxabiv1::__cxa_exception actionRecord const char *
bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx:122
__cxxabiv1::__cxa_exception languageSpecificData const char *
bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx:123
__cxxabiv1::__cxa_exception catchTemp void *
bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx:124
__cxxabiv1::__cxa_exception adjustedPtr void *
bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx:125
__cxxabiv1::__cxa_exception unwindHeader _Unwind_Exception
bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx:134
__cxxabiv1::__cxa_eh_globals caughtExceptions struct __cxxabiv1::__cxa_exception *
bridges/source/cpp_uno/gcc3_linux_x86-64/share.hxx:135
__cxxabiv1::__cxa_eh_globals uncaughtExceptions unsigned int
bridges/source/jni_uno/jni_info.h:68
jni_uno::JNI_type_info m_td ::com::sun::star::uno::TypeDescription
bridges/source/jni_uno/jni_java2uno.cxx:151
jni_uno::(anonymous namespace)::largest n sal_Int64
bridges/source/jni_uno/jni_java2uno.cxx:152
jni_uno::(anonymous namespace)::largest d double
bridges/source/jni_uno/jni_java2uno.cxx:153
jni_uno::(anonymous namespace)::largest p void *
bridges/source/jni_uno/jni_java2uno.cxx:154
jni_uno::(anonymous namespace)::largest a uno_Any
chart2/source/model/main/DataPoint.hxx:108
chart::DataPoint m_bNoParentPropAllowed _Bool
codemaker/source/javamaker/classfile.cxx:508
uint32Bytes sal_uInt32
codemaker/source/javamaker/classfile.cxx:540
uint64Bytes sal_uInt64
connectivity/inc/sdbcx/VCatalog.hxx:67
connectivity::sdbcx::OCatalog m_pViews std::unique_ptr<OCollection>
connectivity/inc/sdbcx/VCatalog.hxx:68
connectivity::sdbcx::OCatalog m_pGroups std::unique_ptr<OCollection>
connectivity/inc/sdbcx/VGroup.hxx:54
connectivity::sdbcx::OGroup m_pUsers std::unique_ptr<OUsers>
connectivity/inc/sdbcx/VKey.hxx:71
connectivity::sdbcx::OKey m_pColumns std::unique_ptr<OCollection>
connectivity/inc/sdbcx/VUser.hxx:54
connectivity::sdbcx::OUser m_pGroups std::unique_ptr<OGroups>
connectivity/qa/connectivity/resource/sharedresources_test.cxx:53
connectivity_test::SharedResourcesTest m_aResource ::connectivity::SharedResources
connectivity/source/drivers/evoab2/EApi.h:125
(anonymous) po char *
connectivity/source/drivers/evoab2/EApi.h:127
(anonymous) street char *
connectivity/source/drivers/evoab2/EApi.h:128
(anonymous) locality char *
connectivity/source/drivers/evoab2/EApi.h:129
(anonymous) region char *
connectivity/source/drivers/evoab2/EApi.h:130
(anonymous) code char *
connectivity/source/drivers/evoab2/EApi.h:131
(anonymous) country char *
connectivity/source/drivers/firebird/Driver.hxx:52
connectivity::firebird::FirebirdDriver m_firebirdTMPDirectory ::utl::TempFile
connectivity/source/drivers/firebird/Driver.hxx:53
connectivity::firebird::FirebirdDriver m_firebirdLockDirectory ::utl::TempFile
connectivity/source/inc/dbase/DIndexIter.hxx:36
connectivity::dbase::OIndexIterator m_pOperator file::OBoolOperator *
connectivity/source/inc/dbase/DIndexIter.hxx:37
connectivity::dbase::OIndexIterator m_pOperand const file::OOperand *
connectivity/source/inc/FDatabaseMetaDataResultSet.hxx:110
connectivity::ODatabaseMetaDataResultSet m_aEmptyValue class connectivity::ORowSetValue
connectivity/source/inc/OColumn.hxx:41
connectivity::OColumn m_AutoIncrement _Bool
connectivity/source/inc/OColumn.hxx:42
connectivity::OColumn m_CaseSensitive _Bool
connectivity/source/inc/OColumn.hxx:44
connectivity::OColumn m_Currency _Bool
connectivity/source/inc/OColumn.hxx:45
connectivity::OColumn m_Signed _Bool
connectivity/source/inc/OColumn.hxx:47
connectivity::OColumn m_Writable _Bool
connectivity/source/inc/OColumn.hxx:48
connectivity::OColumn m_DefinitelyWritable _Bool
connectivity/source/inc/TConnection.hxx:55
connectivity::OMetaConnection m_aResources class connectivity::SharedResources
connectivity/source/inc/writer/WTable.hxx:65
connectivity::writer::OWriterTable m_nStartCol sal_Int32
cppcanvas/source/mtfrenderer/textaction.cxx:1649
cppcanvas::internal::(anonymous namespace)::OutlineAction maTextFillColor const ::Color
cppu/source/helper/purpenv/helper_purpenv_Mapping.cxx:36
(anonymous namespace)::Mapping m_from uno::Environment
cppu/source/helper/purpenv/helper_purpenv_Mapping.cxx:37
(anonymous namespace)::Mapping m_to uno::Environment
cppu/source/helper/purpenv/Proxy.hxx:36
Proxy m_from css::uno::Environment
cppu/source/helper/purpenv/Proxy.hxx:37
Proxy m_to css::uno::Environment
cppu/source/uno/cascade_mapping.cxx:42
(anonymous namespace)::MediatorMapping m_from uno::Environment
cppu/source/uno/cascade_mapping.cxx:43
(anonymous namespace)::MediatorMapping m_interm uno::Environment
cppu/source/uno/cascade_mapping.cxx:44
(anonymous namespace)::MediatorMapping m_to uno::Environment
cppu/source/uno/check.cxx:38
(anonymous namespace)::C1 n1 sal_Int16
cppu/source/uno/check.cxx:67
(anonymous namespace)::D d sal_Int16
cppu/source/uno/check.cxx:68
(anonymous namespace)::D e sal_Int32
cppu/source/uno/check.cxx:72
(anonymous namespace)::E a sal_Bool
cppu/source/uno/check.cxx:73
(anonymous namespace)::E b sal_Bool
cppu/source/uno/check.cxx:74
(anonymous namespace)::E c sal_Bool
cppu/source/uno/check.cxx:75
(anonymous namespace)::E d sal_Int16
cppu/source/uno/check.cxx:76
(anonymous namespace)::E e sal_Int32
cppu/source/uno/check.cxx:81
(anonymous namespace)::M n sal_Int32
cppu/source/uno/check.cxx:82
(anonymous namespace)::M o sal_Int16
cppu/source/uno/check.cxx:91
(anonymous namespace)::N2 m struct (anonymous namespace)::M
cppu/source/uno/check.cxx:92
(anonymous namespace)::N2 p sal_Int16
cppu/source/uno/check.cxx:97
(anonymous namespace)::O p double
cppu/source/uno/check.cxx:98
(anonymous namespace)::O q sal_Int16
cppu/source/uno/check.cxx:107
(anonymous namespace)::P p2 double
cppu/source/uno/check.cxx:115
(anonymous namespace)::second a int
cppu/source/uno/check.cxx:126
(anonymous namespace)::Char1 c1 char
cppu/source/uno/check.cxx:130
(anonymous namespace)::Char2 c2 char
cppu/source/uno/check.cxx:134
(anonymous namespace)::Char3 c3 char
cppu/source/uno/check.cxx:138
(anonymous namespace)::Char4 chars struct (anonymous namespace)::Char3
cui/source/options/optcolor.cxx:255
(anonymous namespace)::ColorConfigWindow_Impl aModuleOptions class SvtModuleOptions
cui/source/options/optpath.cxx:65
OptPath_Impl m_aDefOpt class SvtDefaultOptions
dbaccess/source/core/api/RowSetBase.hxx:85
dbaccess::ORowSetBase m_aEmptyValue connectivity::ORowSetValue
dbaccess/source/core/api/RowSetBase.hxx:96
dbaccess::ORowSetBase m_aErrors ::connectivity::SQLError
dbaccess/source/core/dataaccess/documentcontainer.cxx:66
dbaccess::(anonymous namespace)::LocalNameApproval m_aErrors ::connectivity::SQLError
dbaccess/source/core/inc/ContentHelper.hxx:103
dbaccess::OContentHelper m_aErrorHelper const ::connectivity::SQLError
dbaccess/source/filter/hsqldb/parseschema.hxx:35
dbahsql::SchemaParser m_PrimaryKeys std::map<OUString, std::vector<OUString> >
dbaccess/source/ui/control/tabletree.cxx:226
dbaui::(anonymous namespace)::OViewSetter m_aEqualFunctor ::comphelper::UStringMixEqual
dbaccess/source/ui/inc/charsetlistbox.hxx:44
dbaui::CharSetListBox m_aCharSets class dbaui::OCharsetDisplay
dbaccess/source/ui/inc/directsql.hxx:69
dbaui::DirectSQLDialog m_aColorConfig const svtools::ColorConfig
dbaccess/source/ui/inc/WCopyTable.hxx:259
dbaui::OCopyTableWizard m_aLocale css::lang::Locale
drawinglayer/inc/processor3d/defaultprocessor3d.hxx:89
drawinglayer::processor3d::DefaultProcessor3D maDrawinglayerOpt const class SvtOptionsDrawinglayer
drawinglayer/source/processor2d/vclprocessor2d.hxx:77
drawinglayer::processor2d::VclProcessor2D maDrawinglayerOpt const class SvtOptionsDrawinglayer
editeng/source/editeng/impedit.hxx:457
ImpEditEngine maColorConfig svtools::ColorConfig
embeddedobj/source/inc/commonembobj.hxx:104
OCommonEmbeddedObject m_aClassName class rtl::OUString
embeddedobj/source/inc/oleembobj.hxx:124
OleEmbeddedObject m_pOleComponent class OleComponent *
embeddedobj/source/inc/oleembobj.hxx:144
OleEmbeddedObject m_xClosePreventer css::uno::Reference<css::util::XCloseListener>
embeddedobj/source/inc/oleembobj.hxx:166
OleEmbeddedObject m_bHasSizeToSet _Bool
embeddedobj/source/inc/oleembobj.hxx:167
OleEmbeddedObject m_aSizeToSet css::awt::Size
embeddedobj/source/inc/oleembobj.hxx:168
OleEmbeddedObject m_nAspectToSet sal_Int64
embeddedobj/source/inc/oleembobj.hxx:173
OleEmbeddedObject m_bGotStatus _Bool
embeddedobj/source/inc/oleembobj.hxx:174
OleEmbeddedObject m_nStatus sal_Int64
embeddedobj/source/inc/oleembobj.hxx:175
OleEmbeddedObject m_nStatusAspect sal_Int64
embeddedobj/source/inc/oleembobj.hxx:183
OleEmbeddedObject m_aLinkURL class rtl::OUString
embeddedobj/source/inc/oleembobj.hxx:189
OleEmbeddedObject m_bFromClipboard _Bool
extensions/source/propctrlr/eformshelper.hxx:61
pcr::EFormsHelper m_aSubmissionUINames pcr::MapStringToPropertySet
extensions/source/propctrlr/eformshelper.hxx:63
pcr::EFormsHelper m_aBindingUINames pcr::MapStringToPropertySet
filter/source/graphicfilter/eps/eps.cxx:114
(anonymous namespace)::PSWriter pVDev ScopedVclPtrInstance<class VirtualDevice>
filter/source/graphicfilter/icgm/cgm.hxx:58
CGM mbPicture _Bool
filter/source/graphicfilter/icgm/chart.hxx:49
DataNode nBoxX1 sal_Int16
filter/source/graphicfilter/icgm/chart.hxx:50
DataNode nBoxY1 sal_Int16
filter/source/graphicfilter/icgm/chart.hxx:51
DataNode nBoxX2 sal_Int16
filter/source/graphicfilter/icgm/chart.hxx:52
DataNode nBoxY2 sal_Int16
filter/source/graphicfilter/idxf/dxf2mtf.hxx:50
DXF2GDIMetaFile aDefaultLineInfo const class LineInfo
filter/source/graphicfilter/idxf/dxfreprd.hxx:76
DXFRepresentation aPalette class DXFPalette
filter/source/graphicfilter/iras/iras.cxx:55
(anonymous namespace)::RASReader mnRepCount sal_uInt8
filter/source/graphicfilter/itga/itga.cxx:54
(anonymous namespace)::TGAFileFooter nSignature sal_uInt32 [4]
filter/source/xsltdialog/xmlfiltersettingsdialog.hxx:86
XMLFilterSettingsDialog maModuleOpt class SvtModuleOptions
framework/inc/dispatch/dispatchprovider.hxx:77
framework::DispatchProvider m_aProtocolHandlerCache class framework::HandlerCache
framework/inc/helper/uiconfigelementwrapperbase.hxx:128
framework::UIConfigElementWrapperBase m_bConfigListening _Bool
framework/inc/xml/menudocumenthandler.hxx:188
framework::OReadMenuPopupHandler m_bMenuMode _Bool
framework/source/fwe/classes/addonsoptions.cxx:344
framework::AddonsOptions_Impl m_aEmptyAddonToolBar Sequence<Sequence<struct com::sun::star::beans::PropertyValue> >
framework/source/fwe/classes/addonsoptions.cxx:345
framework::AddonsOptions_Impl m_aEmptyAddonNotebookBar Sequence<Sequence<struct com::sun::star::beans::PropertyValue> >
i18npool/inc/textconversion.hxx:79
i18npool::(anonymous) code sal_Unicode
i18npool/inc/textconversion.hxx:80
i18npool::(anonymous) address sal_Int16
i18npool/inc/textconversion.hxx:81
i18npool::(anonymous) count sal_Int16
include/basic/codecompletecache.hxx:47
CodeCompleteOptions aMiscOptions class SvtMiscOptions
include/basic/sbstar.hxx:50
StarBASIC aErrorHdl Link<class StarBASIC *, _Bool>
include/basic/sbstar.hxx:51
StarBASIC aBreakHdl Link<class StarBASIC *, enum BasicDebugFlags>
include/comphelper/interfacecontainer3.hxx:232
comphelper::OInterfaceContainerHelper3::NotifySingleListener m_pMethod const comphelper::OInterfaceContainerHelper3::NotifySingleListener::NotificationMethod
include/comphelper/parallelsort.hxx:164
comphelper::(anonymous namespace)::Binner maLabels uint8_t [mnMaxStaticSize]
include/connectivity/DriversConfig.hxx:75
connectivity::DriversConfig m_aNode connectivity::DriversConfig::OSharedConfigNode
include/connectivity/sdbcx/VDescriptor.hxx:53
connectivity::sdbcx::ODescriptor m_aCase comphelper::UStringMixEqual
include/connectivity/sdbcx/VTable.hxx:78
connectivity::sdbcx::OTable m_xColumns rtl::Reference<OCollection>
include/connectivity/sdbcx/VTable.hxx:79
connectivity::sdbcx::OTable m_xIndexes rtl::Reference<OCollection>
include/connectivity/sqlparse.hxx:109
connectivity::OSQLParser_Data aErrors ::connectivity::SQLError
include/editeng/brushitem.hxx:51
SvxBrushItem maSecOptions class SvtSecurityOptions
include/filter/msfilter/svdfppt.hxx:706
PPTExtParaSheet aExtParaLevel struct PPTExtParaLevel [10]
include/filter/msfilter/svdfppt.hxx:877
ImplPPTParaPropSet nDontKnow1 sal_uInt32
include/filter/msfilter/svdfppt.hxx:878
ImplPPTParaPropSet nDontKnow2 sal_uInt32
include/filter/msfilter/svdfppt.hxx:879
ImplPPTParaPropSet nDontKnow2bit06 sal_uInt16
include/oox/core/contexthandler2.hxx:217
oox::core::ContextHandler2Helper mnRootStackSize size_t
include/oox/ole/axbinarywriter.hxx:151
oox::ole::AxBinaryPropertyWriter maStreamProps oox::ole::AxBinaryPropertyWriter::ComplexPropVector
include/registry/refltype.hxx:65
RTUik m_Data1 sal_uInt32
include/registry/refltype.hxx:66
RTUik m_Data2 sal_uInt16
include/registry/refltype.hxx:67
RTUik m_Data3 sal_uInt16
include/registry/refltype.hxx:68
RTUik m_Data4 sal_uInt32
include/registry/refltype.hxx:69
RTUik m_Data5 sal_uInt32
include/sfx2/msg.hxx:95
SfxTypeAttrib nAID sal_uInt16
include/sfx2/msg.hxx:96
SfxTypeAttrib pName const char *
include/sfx2/msg.hxx:105
SfxType createSfxPoolItemFunc std::function<SfxPoolItem *(void)>
include/sfx2/msg.hxx:106
SfxType pType const std::type_info *
include/sfx2/msg.hxx:107
SfxType nAttribs sal_uInt16
include/sfx2/msg.hxx:108
SfxType aAttrib struct SfxTypeAttrib [1]
include/sfx2/msg.hxx:118
SfxType0 pType const std::type_info *
include/sfx2/sidebar/ResourceManager.hxx:110
sfx2::sidebar::ResourceManager maMiscOptions class SvtMiscOptions
include/svl/ondemand.hxx:55
OnDemandLocaleDataWrapper aSysLocale class SvtSysLocale
include/svtools/editsyntaxhighlighter.hxx:32
MultiLineEditSyntaxHighlight m_aColorConfig svtools::ColorConfig
include/svx/graphctl.hxx:52
GraphCtrl xVD ScopedVclPtrInstance<class VirtualDevice>
include/svx/sdr/overlay/overlayanimatedbitmapex.hxx:51
sdr::overlay::OverlayAnimatedBitmapEx mbOverlayState _Bool
include/svx/sdr/overlay/overlaymanager.hxx:72
sdr::overlay::OverlayManager maDrawinglayerOpt class SvtOptionsDrawinglayer
include/svx/svdmark.hxx:141
SdrMarkList maPointName class rtl::OUString
include/svx/svdmark.hxx:142
SdrMarkList maGluePointName class rtl::OUString
include/svx/svdoedge.hxx:160
SdrEdgeObj mbBoundRectCalculationRunning _Bool
include/svx/svdpntv.hxx:160
SdrPaintView maDrawinglayerOpt class SvtOptionsDrawinglayer
include/unoidl/unoidl.hxx:443
unoidl::ConstantValue union unoidl::ConstantValue::(anonymous at /home/noel/libo2/include/unoidl/unoidl.hxx:443:5)
include/unoidl/unoidl.hxx:444
unoidl::ConstantValue::(anonymous) booleanValue _Bool
include/unoidl/unoidl.hxx:445
unoidl::ConstantValue::(anonymous) byteValue sal_Int8
include/unoidl/unoidl.hxx:446
unoidl::ConstantValue::(anonymous) shortValue sal_Int16
include/unoidl/unoidl.hxx:447
unoidl::ConstantValue::(anonymous) unsignedShortValue sal_uInt16
include/unoidl/unoidl.hxx:448
unoidl::ConstantValue::(anonymous) longValue sal_Int32
include/unoidl/unoidl.hxx:449
unoidl::ConstantValue::(anonymous) unsignedLongValue sal_uInt32
include/unoidl/unoidl.hxx:450
unoidl::ConstantValue::(anonymous) hyperValue sal_Int64
include/unoidl/unoidl.hxx:451
unoidl::ConstantValue::(anonymous) unsignedHyperValue sal_uInt64
include/unoidl/unoidl.hxx:452
unoidl::ConstantValue::(anonymous) floatValue float
include/unoidl/unoidl.hxx:453
unoidl::ConstantValue::(anonymous) doubleValue double
include/unotest/bootstrapfixturebase.hxx:52
test::BootstrapFixtureBase m_directories class test::Directories
include/vcl/opengl/OpenGLContext.hxx:48
OpenGLCapabilitySwitch mbLimitedShaderRegisters _Bool
include/vcl/opengl/OpenGLContext.hxx:167
OpenGLContext mpLastFramebuffer class OpenGLFramebuffer *
io/source/stm/odata.cxx:578
io_stm::(anonymous namespace)::ODataOutputStream::writeDouble(double)::(anonymous union)::(anonymous) n2 sal_uInt32
io/source/stm/odata.cxx:578
io_stm::(anonymous namespace)::ODataOutputStream::writeDouble(double)::(anonymous union)::(anonymous) n1 sal_uInt32
libreofficekit/qa/gtktiledviewer/gtv-lok-dialog.cxx:46
(anonymous namespace)::GtvLokDialogPrivate m_nChildKeyModifier guint32
libreofficekit/source/gtk/lokdocview.cxx:86
(anonymous namespace)::LOKDocViewPrivateImpl m_bIsLoading _Bool
lingucomponent/source/languageguessing/simpleguesser.cxx:78
(anonymous namespace)::textcat_t fprint void **
lingucomponent/source/languageguessing/simpleguesser.cxx:80
(anonymous namespace)::textcat_t size uint4
linguistic/source/dlistimp.hxx:55
DicList aOpt class LinguOptions
oox/qa/token/tokenmap-test.cxx:34
oox::TokenmapTest tokenMap class oox::TokenMap
oox/qa/unit/vba_compression.cxx:70
TestVbaCompression m_directories test::Directories
oox/source/drawingml/chart/objectformatter.cxx:717
oox::drawingml::chart::ObjectFormatterData maFromLocale struct com::sun::star::lang::Locale
registry/source/reflwrit.cxx:140
writeDouble(sal_uInt8 *, double)::(anonymous union)::(anonymous) b1 sal_uInt32
registry/source/reflwrit.cxx:141
writeDouble(sal_uInt8 *, double)::(anonymous union)::(anonymous) b2 sal_uInt32
registry/source/reflwrit.cxx:181
(anonymous namespace)::CPInfo::(anonymous) aUik struct RTUik *
reportdesign/source/ui/inc/ColorListener.hxx:35
rptui::OColorListener m_aColorConfig svtools::ColorConfig
sal/osl/unx/process.cxx:827
(anonymous namespace)::osl_procStat signal char [24]
sal/osl/unx/process.cxx:828
(anonymous namespace)::osl_procStat blocked char [24]
sal/osl/unx/process.cxx:829
(anonymous namespace)::osl_procStat sigignore char [24]
sal/osl/unx/process.cxx:830
(anonymous namespace)::osl_procStat sigcatch char [24]
sal/rtl/alloc_arena.hxx:100
rtl_arena_st m_hash_table_0 struct rtl_arena_segment_type *[64]
sal/rtl/digest.cxx:188
(anonymous namespace)::DigestContextMD2 m_state sal_uInt32 [16]
sal/rtl/digest.cxx:189
(anonymous namespace)::DigestContextMD2 m_chksum sal_uInt32 [16]
sal/rtl/uuid.cxx:66
(anonymous namespace)::UUID clock_seq_low sal_uInt8
sal/rtl/uuid.cxx:67
(anonymous namespace)::UUID node sal_uInt8 [6]
sc/inc/attarray.hxx:68
ScMergePatternState pItemSet std::unique_ptr<SfxItemSet>
sc/inc/compiler.hxx:129
ScRawToken::(anonymous union)::(anonymous) eItem class ScTableRefToken::Item
sc/inc/compiler.hxx:130
ScRawToken::(anonymous) table struct (anonymous struct at /home/noel/libo2/sc/inc/compiler.hxx:127:9)
sc/inc/compiler.hxx:135
ScRawToken::(anonymous) pMat class ScMatrix *
sc/inc/formulagroup.hxx:39
sc::FormulaGroupEntry::(anonymous) mpCells class ScFormulaCell **
sc/inc/reordermap.hxx:21
sc::ColRowReorderMapType maData sc::ColRowReorderMapType::DataType
sc/source/core/inc/adiasync.hxx:42
ScAddInAsync::(anonymous) pStr class rtl::OUString *
sc/source/core/inc/interpre.hxx:102
ScTokenStack pPointer const formula::FormulaToken *[512]
sc/source/filter/excel/xltoolbar.cxx:28
(anonymous namespace)::MSOExcelCommandConvertor msoToOOcmd IdToString
sc/source/filter/excel/xltoolbar.cxx:29
(anonymous namespace)::MSOExcelCommandConvertor tcidToOOcmd IdToString
sc/source/filter/inc/commentsbuffer.hxx:42
oox::xls::CommentModel maAnchor css::awt::Rectangle
sc/source/filter/inc/htmlexp.hxx:118
ScHTMLExport pFileNameMap ScHTMLExport::FileNameMapPtr
sc/source/filter/inc/htmlpars.hxx:56
ScHTMLStyles maEmpty const class rtl::OUString
sc/source/filter/inc/namebuff.hxx:81
RangeNameBufferWK3::Entry nAbsInd sal_uInt16
sc/source/filter/inc/qproform.hxx:55
QProToSc mnAddToken struct TokenId
sc/source/filter/inc/stylesbuffer.hxx:676
oox::xls::Dxf mxAlignment std::shared_ptr<Alignment>
sc/source/filter/inc/stylesbuffer.hxx:678
oox::xls::Dxf mxProtection std::shared_ptr<Protection>
sc/source/filter/inc/stylesbuffer.hxx:767
oox::xls::CellStyleBuffer maBuiltinStyles oox::xls::CellStyleBuffer::CellStyleVector
sc/source/filter/inc/stylesbuffer.hxx:768
oox::xls::CellStyleBuffer maUserStyles oox::xls::CellStyleBuffer::CellStyleVector
sc/source/filter/inc/XclExpChangeTrack.hxx:348
XclExpChTrAction pAddAction std::unique_ptr<XclExpChTrAction>
sc/source/filter/inc/xepage.hxx:122
XclExpChartPageSettings maData struct XclPageData
sc/source/filter/inc/xistyle.hxx:518
XclImpXFBuffer maBuiltinStyles XclImpXFBuffer::XclImpStyleList
sc/source/filter/inc/xistyle.hxx:519
XclImpXFBuffer maUserStyles XclImpXFBuffer::XclImpStyleList
sc/source/filter/inc/xltracer.hxx:82
XclTracer mbEnabled _Bool
sc/source/filter/xml/xmlcelli.hxx:96
ScXMLTableRowCellContext mbEditEngineHasText _Bool
sc/source/ui/inc/csvruler.hxx:39
ScCsvRuler maBackgrDev ScopedVclPtrInstance<class VirtualDevice>
sc/source/ui/inc/csvruler.hxx:40
ScCsvRuler maRulerDev ScopedVclPtrInstance<class VirtualDevice>
sc/source/ui/inc/inputhdl.hxx:67
ScInputHandler pColumnData std::unique_ptr<ScTypedCaseStrSet>
sc/source/ui/inc/inputhdl.hxx:68
ScInputHandler pFormulaData std::unique_ptr<ScTypedCaseStrSet>
sc/source/ui/inc/inputhdl.hxx:69
ScInputHandler pFormulaDataPara std::unique_ptr<ScTypedCaseStrSet>
sc/source/ui/inc/tabcont.hxx:38
ScTabControl bErrorShown _Bool
sc/source/ui/vba/vbaformatconditions.hxx:37
ScVbaFormatConditions mxSheetConditionalEntries css::uno::Reference<css::sheet::XSheetConditionalEntries>
sc/source/ui/vba/vbaformatconditions.hxx:38
ScVbaFormatConditions mxStyles css::uno::Reference<ov::excel::XStyles>
sc/source/ui/vba/vbaformatconditions.hxx:39
ScVbaFormatConditions mxRangeParent css::uno::Reference<ov::excel::XRange>
sc/source/ui/vba/vbaformatconditions.hxx:40
ScVbaFormatConditions mxParentRangePropertySet css::uno::Reference<css::beans::XPropertySet>
sc/source/ui/vba/vbaworksheet.hxx:50
ScVbaWorksheet mxButtons ::rtl::Reference<ScVbaSheetObjectsBase> [2]
sd/inc/Outliner.hxx:281
SdOutliner mpFirstObj class SdrObject *
sd/inc/sdmod.hxx:119
SdModule gImplImpressPropertySetInfoCache SdExtPropertySetInfoCache
sd/inc/sdmod.hxx:120
SdModule gImplDrawPropertySetInfoCache SdExtPropertySetInfoCache
sd/source/core/CustomAnimationCloner.cxx:70
sd::(anonymous namespace)::CustomAnimationClonerImpl maSourceNodeVector std::vector<Reference<XAnimationNode> >
sd/source/core/CustomAnimationCloner.cxx:71
sd::(anonymous namespace)::CustomAnimationClonerImpl maCloneNodeVector std::vector<Reference<XAnimationNode> >
sd/source/ui/inc/unopage.hxx:165
SdDrawPage maTypeSequence css::uno::Sequence<css::uno::Type>
sd/source/ui/inc/unopage.hxx:226
SdMasterPage maTypeSequence css::uno::Sequence<css::uno::Type>
sd/source/ui/sidebar/MasterPageContainer.cxx:142
sd::sidebar::MasterPageContainer::Implementation maLargePreviewBeingCreated class Image
sd/source/ui/sidebar/MasterPageContainer.cxx:143
sd::sidebar::MasterPageContainer::Implementation maSmallPreviewBeingCreated class Image
sd/source/ui/sidebar/MasterPageContainer.cxx:148
sd::sidebar::MasterPageContainer::Implementation maLargePreviewNotAvailable class Image
sd/source/ui/sidebar/MasterPageContainer.cxx:149
sd::sidebar::MasterPageContainer::Implementation maSmallPreviewNotAvailable class Image
sd/source/ui/slideshow/showwindow.hxx:99
sd::ShowWindow mbMouseCursorHidden _Bool
sd/source/ui/slidesorter/cache/SlsPageCacheManager.cxx:141
sd::slidesorter::cache::PageCacheManager::RecentlyUsedPageCaches maMap std::map<key_type, mapped_type>
sd/source/ui/slidesorter/inc/controller/SlsAnimator.hxx:97
sd::slidesorter::controller::Animator maElapsedTime ::canvas::tools::ElapsedTime
sdext/source/pdfimport/inc/pdfihelper.hxx:100
pdfi::GraphicsContext BlendMode sal_Int8
sdext/source/pdfimport/tree/style.hxx:43
pdfi::StyleContainer::Style Contents class rtl::OUString
sfx2/source/appl/lnkbase2.cxx:99
sfx2::(anonymous namespace)::ImplDdeItem pLink class sfx2::SvBaseLink *
slideshow/source/engine/slideshowimpl.cxx:132
(anonymous namespace)::FrameSynchronization maTimer canvas::tools::ElapsedTime
sot/source/sdstor/ucbstorage.cxx:403
UCBStorageStream_Impl m_aKey class rtl::OString
starmath/source/view.cxx:862
SmViewShell_Impl aOpts class SvtMiscOptions
store/source/storbios.cxx:59
(anonymous namespace)::OStoreSuperBlock m_aMarked (anonymous namespace)::OStoreSuperBlock::L
svl/source/crypto/cryptosign.cxx:283
(anonymous namespace)::PKIStatusInfo status SECItem
svl/source/crypto/cryptosign.cxx:303
(anonymous namespace)::TimeStampResp status struct (anonymous namespace)::PKIStatusInfo
svl/source/crypto/cryptosign.cxx:304
(anonymous namespace)::TimeStampResp timeStampToken SECItem
svl/source/misc/strmadpt.cxx:51
SvDataPipe_Impl::Page m_aBuffer sal_Int8 [1]
svl/source/uno/pathservice.cxx:37
(anonymous namespace)::PathService m_aOptions class SvtPathOptions
svtools/source/control/tabbar.cxx:200
ImplTabBarItem maHelpId class rtl::OString
svtools/source/dialogs/insdlg.cxx:46
(anonymous namespace)::OleObjectDescriptor cbSize sal_uInt32
svtools/source/dialogs/insdlg.cxx:47
(anonymous namespace)::OleObjectDescriptor clsid ClsId
svtools/source/dialogs/insdlg.cxx:48
(anonymous namespace)::OleObjectDescriptor dwDrawAspect sal_uInt32
svtools/source/dialogs/insdlg.cxx:49
(anonymous namespace)::OleObjectDescriptor sizel class Size
svtools/source/dialogs/insdlg.cxx:50
(anonymous namespace)::OleObjectDescriptor pointl class Point
svtools/source/dialogs/insdlg.cxx:51
(anonymous namespace)::OleObjectDescriptor dwStatus sal_uInt32
svtools/source/dialogs/insdlg.cxx:52
(anonymous namespace)::OleObjectDescriptor dwFullUserTypeName sal_uInt32
svtools/source/dialogs/insdlg.cxx:53
(anonymous namespace)::OleObjectDescriptor dwSrcOfCopy sal_uInt32
svtools/source/table/gridtablerenderer.cxx:71
svt::table::(anonymous namespace)::CachedSortIndicator m_sortAscending class BitmapEx
svtools/source/table/gridtablerenderer.cxx:72
svt::table::(anonymous namespace)::CachedSortIndicator m_sortDescending class BitmapEx
svx/inc/sdr/overlay/overlayrectangle.hxx:43
sdr::overlay::OverlayRectangle mbOverlayState _Bool
svx/source/inc/datanavi.hxx:214
svxform::XFormsPage m_aMethodString class svxform::MethodString
svx/source/inc/datanavi.hxx:215
svxform::XFormsPage m_aReplaceString class svxform::ReplaceString
svx/source/inc/datanavi.hxx:524
svxform::AddSubmissionDialog m_aMethodString class svxform::MethodString
svx/source/inc/datanavi.hxx:525
svxform::AddSubmissionDialog m_aReplaceString class svxform::ReplaceString
svx/source/inc/gridcell.hxx:527
DbPatternField m_pValueFormatter ::std::unique_ptr< ::dbtools::FormattedColumnValue>
svx/source/inc/gridcell.hxx:528
DbPatternField m_pPaintFormatter ::std::unique_ptr< ::dbtools::FormattedColumnValue>
svx/source/inc/svdpdf.hxx:69
ImpSdrPdfImport maDash class XDash
sw/inc/acmplwrd.hxx:42
SwAutoCompleteWord m_LookupTree editeng::Trie
sw/inc/breakit.hxx:38
SwBreakIt m_xLanguageTag std::unique_ptr<LanguageTag>
sw/inc/calc.hxx:197
SwCalc m_aSysLocale class SvtSysLocale
sw/inc/dpage.hxx:35
SwDPage pGridLst std::unique_ptr<SdrPageGridFrameList>
sw/inc/hints.hxx:230
SwAttrSetChg m_bDelSet _Bool
sw/inc/shellio.hxx:153
SwReader mpStg tools::SvRef<SotStorage>
sw/inc/swevent.hxx:71
SwCallMouseEvent::(anonymous union)::(anonymous) pFormat const class SwFrameFormat *
sw/source/core/access/accfrmobjmap.hxx:100
SwAccessibleChildMap maMap std::map<key_type, mapped_type, key_compare>
sw/source/core/access/acchypertextdata.hxx:40
SwAccessibleHyperTextData maMap std::map<key_type, mapped_type, key_compare>
sw/source/core/access/accmap.cxx:107
SwAccessibleContextMap_Impl maMap std::map<key_type, mapped_type, key_compare>
sw/source/core/access/accmap.cxx:290
SwAccessibleShapeMap_Impl maMap std::map<key_type, mapped_type, SwShapeFunc>
sw/source/core/access/accmap.cxx:647
SwAccessibleEventMap_Impl maMap std::map<key_type, mapped_type, key_compare>
sw/source/core/access/accmap.cxx:691
SwAccessibleSelectedParas_Impl maMap std::map<key_type, mapped_type, key_compare>
sw/source/core/doc/swstylemanager.cxx:60
(anonymous namespace)::SwStyleManager aAutoCharPool class StylePool
sw/source/core/doc/swstylemanager.cxx:61
(anonymous namespace)::SwStyleManager aAutoParaPool class StylePool
sw/source/core/inc/swblocks.hxx:69
SwImpBlocks m_bInPutMuchBlocks _Bool
sw/source/core/text/atrhndl.hxx:50
SwAttrHandler m_pFnt std::unique_ptr<SwFont>
sw/source/core/text/inftxt.cxx:565
(anonymous namespace)::SwTransparentTextGuard m_aContentVDev ScopedVclPtrInstance<class VirtualDevice>
sw/source/core/text/redlnitr.hxx:76
SwRedlineItr m_pSet std::unique_ptr<SfxItemSet>
sw/source/filter/html/htmltab.cxx:2835
CellSaveStruct m_xCnts std::shared_ptr<HTMLTableCnts>
sw/source/filter/inc/rtf.hxx:32
RTFSurround::(anonymous) nVal sal_uInt8
sw/source/filter/writer/writer.cxx:68
Writer_Impl pFileNameMap std::unique_ptr<std::map<OUString, OUString> >
sw/source/ui/dbui/dbinsdlg.cxx:100
DB_Column::(anonymous) pText class rtl::OUString *
sw/source/ui/dbui/dbinsdlg.cxx:102
DB_Column::(anonymous) nFormat sal_uInt32
sw/source/uibase/dbui/mmconfigitem.cxx:112
SwMailMergeConfigItem_Impl m_aFemaleGreetingLines std::vector<OUString>
sw/source/uibase/dbui/mmconfigitem.cxx:114
SwMailMergeConfigItem_Impl m_aMaleGreetingLines std::vector<OUString>
sw/source/uibase/dbui/mmconfigitem.cxx:116
SwMailMergeConfigItem_Impl m_aNeutralGreetingLines std::vector<OUString>
sw/source/uibase/inc/fldmgr.hxx:79
SwInsertField_Data m_aDBDataSource css::uno::Any
toolkit/source/awt/vclxtoolkit.cxx:434
(anonymous namespace)::VCLXToolkit mxSelection css::uno::Reference<css::datatransfer::clipboard::XClipboard>
ucb/source/ucp/gio/gio_mount.hxx:74
OOoMountOperationClass parent_class GMountOperationClass
ucb/source/ucp/gio/gio_mount.hxx:77
OOoMountOperationClass _gtk_reserved1 void (*)(void)
ucb/source/ucp/gio/gio_mount.hxx:78
OOoMountOperationClass _gtk_reserved2 void (*)(void)
ucb/source/ucp/gio/gio_mount.hxx:79
OOoMountOperationClass _gtk_reserved3 void (*)(void)
ucb/source/ucp/gio/gio_mount.hxx:80
OOoMountOperationClass _gtk_reserved4 void (*)(void)
ucb/source/ucp/hierarchy/hierarchydatasupplier.cxx:76
hierarchy_ucp::DataSupplier_Impl m_aIterator class HierarchyEntry::iterator
ucb/source/ucp/package/pkgprovider.hxx:51
package_ucp::ContentProvider m_pPackages std::unique_ptr<Packages>
ucbhelper/source/client/proxydecider.cxx:130
ucbhelper::proxydecider_impl::InternetProxyDecider_Impl m_aEmptyProxy const struct ucbhelper::InternetProxyServer
ucbhelper/source/provider/propertyvalueset.cxx:88
ucbhelper_impl::PropertyValue aString class rtl::OUString
ucbhelper/source/provider/propertyvalueset.cxx:89
ucbhelper_impl::PropertyValue bBoolean _Bool
ucbhelper/source/provider/propertyvalueset.cxx:90
ucbhelper_impl::PropertyValue nByte sal_Int8
ucbhelper/source/provider/propertyvalueset.cxx:91
ucbhelper_impl::PropertyValue nShort sal_Int16
ucbhelper/source/provider/propertyvalueset.cxx:92
ucbhelper_impl::PropertyValue nInt sal_Int32
ucbhelper/source/provider/propertyvalueset.cxx:93
ucbhelper_impl::PropertyValue nLong sal_Int64
ucbhelper/source/provider/propertyvalueset.cxx:97
ucbhelper_impl::PropertyValue aBytes Sequence<sal_Int8>
ucbhelper/source/provider/propertyvalueset.cxx:98
ucbhelper_impl::PropertyValue aDate struct com::sun::star::util::Date
ucbhelper/source/provider/propertyvalueset.cxx:99
ucbhelper_impl::PropertyValue aTime struct com::sun::star::util::Time
ucbhelper/source/provider/propertyvalueset.cxx:100
ucbhelper_impl::PropertyValue aTimestamp struct com::sun::star::util::DateTime
ucbhelper/source/provider/propertyvalueset.cxx:101
ucbhelper_impl::PropertyValue xBinaryStream Reference<class com::sun::star::io::XInputStream>
ucbhelper/source/provider/propertyvalueset.cxx:102
ucbhelper_impl::PropertyValue xCharacterStream Reference<class com::sun::star::io::XInputStream>
ucbhelper/source/provider/propertyvalueset.cxx:103
ucbhelper_impl::PropertyValue xRef Reference<class com::sun::star::sdbc::XRef>
ucbhelper/source/provider/propertyvalueset.cxx:104
ucbhelper_impl::PropertyValue xBlob Reference<class com::sun::star::sdbc::XBlob>
ucbhelper/source/provider/propertyvalueset.cxx:105
ucbhelper_impl::PropertyValue xClob Reference<class com::sun::star::sdbc::XClob>
ucbhelper/source/provider/propertyvalueset.cxx:106
ucbhelper_impl::PropertyValue xArray Reference<class com::sun::star::sdbc::XArray>
unoidl/source/sourceprovider-scanner.hxx:147
unoidl::detail::SourceProviderInterfaceTypeEntityPad directMandatoryBases std::vector<DirectBase>
unoidl/source/sourceprovider-scanner.hxx:148
unoidl::detail::SourceProviderInterfaceTypeEntityPad directOptionalBases std::vector<DirectBase>
unoidl/source/sourceprovider-scanner.hxx:247
unoidl::detail::SourceProviderAccumulationBasedServiceEntityPad directMandatoryBaseServices std::vector<unoidl::AnnotatedReference>
unoidl/source/sourceprovider-scanner.hxx:248
unoidl::detail::SourceProviderAccumulationBasedServiceEntityPad directOptionalBaseServices std::vector<unoidl::AnnotatedReference>
unoidl/source/sourceprovider-scanner.hxx:249
unoidl::detail::SourceProviderAccumulationBasedServiceEntityPad directMandatoryBaseInterfaces std::vector<unoidl::AnnotatedReference>
unoidl/source/sourceprovider-scanner.hxx:250
unoidl::detail::SourceProviderAccumulationBasedServiceEntityPad directOptionalBaseInterfaces std::vector<unoidl::AnnotatedReference>
unoidl/source/unoidl-read.cxx:146
(anonymous namespace)::Entity dependencies std::set<OUString>
unoidl/source/unoidl-read.cxx:147
(anonymous namespace)::Entity interfaceDependencies std::set<OUString>
unoidl/source/unoidlprovider.cxx:86
unoidl::detail::(anonymous namespace)::Memory16 byte unsigned char [2]
unoidl/source/unoidlprovider.cxx:96
unoidl::detail::(anonymous namespace)::Memory32 byte unsigned char [4]
unoidl/source/unoidlprovider.cxx:127
unoidl::detail::(anonymous namespace)::Memory64 byte unsigned char [8]
unoidl/source/unoidlprovider.cxx:455
unoidl::detail::MapEntry name struct unoidl::detail::(anonymous namespace)::Memory32
unoidl/source/unoidlprovider.cxx:456
unoidl::detail::MapEntry data struct unoidl::detail::(anonymous namespace)::Memory32
unotools/source/config/pathoptions.cxx:84
SvtPathOptions_Impl m_aEmptyString class rtl::OUString
unotools/source/config/saveopt.cxx:82
(anonymous namespace)::SvtSaveOptions_Impl bROUserAutoSave _Bool
vcl/inc/BitmapFastScaleFilter.hxx:31
BitmapFastScaleFilter maSize class Size
vcl/inc/ppdparser.hxx:130
psp::PPDParser::PPDConstraint m_pKey1 const class psp::PPDKey *
vcl/inc/printerinfomanager.hxx:75
psp::PrinterInfoManager::SystemPrintQueue m_aComment class rtl::OUString
vcl/inc/salwtype.hxx:157
SalWheelMouseEvent mbDeltaIsPixel _Bool
vcl/inc/salwtype.hxx:204
SalSurroundingTextSelectionChangeEvent mnStart sal_uLong
vcl/inc/salwtype.hxx:205
SalSurroundingTextSelectionChangeEvent mnEnd sal_uLong
vcl/inc/salwtype.hxx:211
SalQueryCharPositionEvent mnCharPos sal_uLong
vcl/inc/svdata.hxx:316
ImplSVNWFData mbMenuBarDockingAreaCommonBG _Bool
vcl/inc/toolbox.h:108
vcl::ToolBoxLayoutData m_aLineItemIds std::vector<sal_uInt16>
vcl/inc/unx/saldisp.hxx:281
SalDisplay m_aInvalidScreenData struct SalDisplay::ScreenData
vcl/inc/widgetdraw/WidgetDefinition.hxx:226
vcl::WidgetDefinitionStyle maDefaultButtonTextColor class Color
vcl/inc/widgetdraw/WidgetDefinition.hxx:230
vcl::WidgetDefinitionStyle maFlatButtonTextColor class Color
vcl/inc/widgetdraw/WidgetDefinition.hxx:231
vcl::WidgetDefinitionStyle maDefaultButtonRolloverTextColor class Color
vcl/inc/widgetdraw/WidgetDefinition.hxx:233
vcl::WidgetDefinitionStyle maDefaultActionButtonRolloverTextColor class Color
vcl/inc/widgetdraw/WidgetDefinition.hxx:235
vcl::WidgetDefinitionStyle maFlatButtonRolloverTextColor class Color
vcl/inc/widgetdraw/WidgetDefinition.hxx:236
vcl::WidgetDefinitionStyle maDefaultButtonPressedRolloverTextColor class Color
vcl/inc/widgetdraw/WidgetDefinition.hxx:237
vcl::WidgetDefinitionStyle maButtonPressedRolloverTextColor class Color
vcl/inc/widgetdraw/WidgetDefinition.hxx:238
vcl::WidgetDefinitionStyle maDefaultActionButtonPressedRolloverTextColor class Color
vcl/inc/widgetdraw/WidgetDefinition.hxx:239
vcl::WidgetDefinitionStyle maActionButtonPressedRolloverTextColor class Color
vcl/inc/widgetdraw/WidgetDefinition.hxx:240
vcl::WidgetDefinitionStyle maFlatButtonPressedRolloverTextColor class Color
vcl/inc/WidgetThemeLibrary.hxx:21
vcl::WidgetDrawStyle maFaceColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:22
vcl::WidgetDrawStyle maCheckedColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:23
vcl::WidgetDrawStyle maLightColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:24
vcl::WidgetDrawStyle maLightBorderColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:25
vcl::WidgetDrawStyle maShadowColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:26
vcl::WidgetDrawStyle maDarkShadowColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:27
vcl::WidgetDrawStyle maDefaultButtonTextColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:28
vcl::WidgetDrawStyle maButtonTextColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:29
vcl::WidgetDrawStyle maDefaultActionButtonTextColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:30
vcl::WidgetDrawStyle maActionButtonTextColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:31
vcl::WidgetDrawStyle maFlatButtonTextColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:32
vcl::WidgetDrawStyle maDefaultButtonRolloverTextColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:33
vcl::WidgetDrawStyle maButtonRolloverTextColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:34
vcl::WidgetDrawStyle maDefaultActionButtonRolloverTextColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:35
vcl::WidgetDrawStyle maActionButtonRolloverTextColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:36
vcl::WidgetDrawStyle maFlatButtonRolloverTextColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:37
vcl::WidgetDrawStyle maDefaultButtonPressedRolloverTextColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:38
vcl::WidgetDrawStyle maButtonPressedRolloverTextColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:39
vcl::WidgetDrawStyle maDefaultActionButtonPressedRolloverTextColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:40
vcl::WidgetDrawStyle maActionButtonPressedRolloverTextColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:41
vcl::WidgetDrawStyle maFlatButtonPressedRolloverTextColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:42
vcl::WidgetDrawStyle maRadioCheckTextColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:43
vcl::WidgetDrawStyle maGroupTextColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:44
vcl::WidgetDrawStyle maLabelTextColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:45
vcl::WidgetDrawStyle maWindowColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:46
vcl::WidgetDrawStyle maWindowTextColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:47
vcl::WidgetDrawStyle maDialogColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:48
vcl::WidgetDrawStyle maDialogTextColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:49
vcl::WidgetDrawStyle maWorkspaceColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:50
vcl::WidgetDrawStyle maMonoColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:51
vcl::WidgetDrawStyle maFieldColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:52
vcl::WidgetDrawStyle maFieldTextColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:53
vcl::WidgetDrawStyle maFieldRolloverTextColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:54
vcl::WidgetDrawStyle maActiveColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:55
vcl::WidgetDrawStyle maActiveTextColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:56
vcl::WidgetDrawStyle maActiveBorderColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:57
vcl::WidgetDrawStyle maDeactiveColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:58
vcl::WidgetDrawStyle maDeactiveTextColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:59
vcl::WidgetDrawStyle maDeactiveBorderColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:60
vcl::WidgetDrawStyle maMenuColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:61
vcl::WidgetDrawStyle maMenuBarColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:62
vcl::WidgetDrawStyle maMenuBarRolloverColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:63
vcl::WidgetDrawStyle maMenuBorderColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:64
vcl::WidgetDrawStyle maMenuTextColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:65
vcl::WidgetDrawStyle maMenuBarTextColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:66
vcl::WidgetDrawStyle maMenuBarRolloverTextColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:67
vcl::WidgetDrawStyle maMenuBarHighlightTextColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:68
vcl::WidgetDrawStyle maMenuHighlightColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:69
vcl::WidgetDrawStyle maMenuHighlightTextColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:70
vcl::WidgetDrawStyle maHighlightColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:71
vcl::WidgetDrawStyle maHighlightTextColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:72
vcl::WidgetDrawStyle maActiveTabColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:73
vcl::WidgetDrawStyle maInactiveTabColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:74
vcl::WidgetDrawStyle maTabTextColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:75
vcl::WidgetDrawStyle maTabRolloverTextColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:76
vcl::WidgetDrawStyle maTabHighlightTextColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:77
vcl::WidgetDrawStyle maDisableColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:78
vcl::WidgetDrawStyle maHelpColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:79
vcl::WidgetDrawStyle maHelpTextColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:80
vcl::WidgetDrawStyle maLinkColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:81
vcl::WidgetDrawStyle maVisitedLinkColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:82
vcl::WidgetDrawStyle maToolTextColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:83
vcl::WidgetDrawStyle maFontColor uint32_t
vcl/inc/WidgetThemeLibrary.hxx:121
vcl::WidgetThemeLibrary_t isNativeControlSupported _Bool (*)(enum ControlType, enum ControlPart)
vcl/inc/WidgetThemeLibrary.hxx:122
vcl::WidgetThemeLibrary_t getRegion _Bool (*)(enum ControlType, enum ControlPart, enum ControlState, const vcl::rectangle_t &, vcl::rectangle_t &, vcl::rectangle_t &)
vcl/inc/WidgetThemeLibrary.hxx:126
vcl::WidgetThemeLibrary_t drawPushButton _Bool (*)(const struct vcl::ControlDrawParameters &, long, long)
vcl/inc/WidgetThemeLibrary.hxx:127
vcl::WidgetThemeLibrary_t drawRadiobutton _Bool (*)(const struct vcl::ControlDrawParameters &, long, long)
vcl/inc/WidgetThemeLibrary.hxx:128
vcl::WidgetThemeLibrary_t drawCheckbox _Bool (*)(const struct vcl::ControlDrawParameters &, long, long)
vcl/inc/WidgetThemeLibrary.hxx:129
vcl::WidgetThemeLibrary_t drawCombobox _Bool (*)(const struct vcl::ControlDrawParameters &, long, long)
vcl/inc/WidgetThemeLibrary.hxx:130
vcl::WidgetThemeLibrary_t drawEditbox _Bool (*)(const struct vcl::ControlDrawParameters &, long, long)
vcl/inc/WidgetThemeLibrary.hxx:131
vcl::WidgetThemeLibrary_t drawScrollbar _Bool (*)(const struct vcl::ControlDrawParameters &, long, long)
vcl/inc/WidgetThemeLibrary.hxx:132
vcl::WidgetThemeLibrary_t drawSpinButtons _Bool (*)(const struct vcl::ControlDrawParameters &, long, long)
vcl/inc/WidgetThemeLibrary.hxx:133
vcl::WidgetThemeLibrary_t drawSpinbox _Bool (*)(const struct vcl::ControlDrawParameters &, long, long)
vcl/inc/WidgetThemeLibrary.hxx:134
vcl::WidgetThemeLibrary_t drawTabItem _Bool (*)(const struct vcl::ControlDrawParameters &, long, long)
vcl/inc/WidgetThemeLibrary.hxx:135
vcl::WidgetThemeLibrary_t drawTabPane _Bool (*)(const struct vcl::ControlDrawParameters &, long, long)
vcl/inc/WidgetThemeLibrary.hxx:136
vcl::WidgetThemeLibrary_t drawTabHeader _Bool (*)(const struct vcl::ControlDrawParameters &, long, long)
vcl/inc/WidgetThemeLibrary.hxx:137
vcl::WidgetThemeLibrary_t drawTabBody _Bool (*)(const struct vcl::ControlDrawParameters &, long, long)
vcl/inc/WidgetThemeLibrary.hxx:138
vcl::WidgetThemeLibrary_t drawSlider _Bool (*)(const struct vcl::ControlDrawParameters &, long, long)
vcl/inc/WidgetThemeLibrary.hxx:139
vcl::WidgetThemeLibrary_t drawFixedline _Bool (*)(const struct vcl::ControlDrawParameters &, long, long)
vcl/inc/WidgetThemeLibrary.hxx:140
vcl::WidgetThemeLibrary_t drawToolbar _Bool (*)(const struct vcl::ControlDrawParameters &, long, long)
vcl/inc/WidgetThemeLibrary.hxx:141
vcl::WidgetThemeLibrary_t drawProgress _Bool (*)(const struct vcl::ControlDrawParameters &, long, long)
vcl/inc/WidgetThemeLibrary.hxx:142
vcl::WidgetThemeLibrary_t drawWindowsBackground _Bool (*)(const struct vcl::ControlDrawParameters &, long, long)
vcl/inc/WidgetThemeLibrary.hxx:144
vcl::WidgetThemeLibrary_t drawListbox _Bool (*)(const struct vcl::ControlDrawParameters &, long, long)
vcl/inc/WidgetThemeLibrary.hxx:145
vcl::WidgetThemeLibrary_t drawFrame _Bool (*)(const struct vcl::ControlDrawParameters &, long, long)
vcl/inc/WidgetThemeLibrary.hxx:146
vcl::WidgetThemeLibrary_t drawListNode _Bool (*)(const struct vcl::ControlDrawParameters &, long, long)
vcl/inc/WidgetThemeLibrary.hxx:147
vcl::WidgetThemeLibrary_t drawListNet _Bool (*)(const struct vcl::ControlDrawParameters &, long, long)
vcl/inc/WidgetThemeLibrary.hxx:148
vcl::WidgetThemeLibrary_t drawListHeader _Bool (*)(const struct vcl::ControlDrawParameters &, long, long)
vcl/inc/WidgetThemeLibrary.hxx:150
vcl::WidgetThemeLibrary_t updateSettings _Bool (*)(struct vcl::WidgetDrawStyle &)
vcl/source/app/settings.cxx:196
ImplStyleData maDialogStyle struct DialogStyle
vcl/source/control/roadmapwizard.cxx:62
vcl::RoadmapWizardImpl aStateDescriptors vcl::(anonymous namespace)::StateDescriptions
vcl/source/control/tabctrl.cxx:79
ImplTabCtrlData maLayoutPageIdToLine std::unordered_map<int, int>
vcl/source/filter/jpeg/Exif.hxx:53
Exif::ExifIFD tag sal_uInt8 [2]
vcl/source/filter/jpeg/Exif.hxx:54
Exif::ExifIFD type sal_uInt8 [2]
vcl/source/filter/jpeg/Exif.hxx:55
Exif::ExifIFD count sal_uInt8 [4]
vcl/source/filter/jpeg/Exif.hxx:60
Exif::TiffHeader byteOrder sal_uInt16
vcl/source/filter/jpeg/transupp.h:132
(anonymous) slow_hflip boolean
vcl/source/filter/jpeg/transupp.h:144
(anonymous) crop_width_set JCROP_CODE
vcl/source/filter/jpeg/transupp.h:146
(anonymous) crop_height_set JCROP_CODE
vcl/source/filter/jpeg/transupp.h:148
(anonymous) crop_xoffset_set JCROP_CODE
vcl/source/filter/jpeg/transupp.h:150
(anonymous) crop_yoffset_set JCROP_CODE
vcl/source/fontsubset/sft.cxx:1051
vcl::(anonymous namespace)::subHeader2 firstCode sal_uInt16
vcl/source/fontsubset/sft.cxx:1052
vcl::(anonymous namespace)::subHeader2 entryCount sal_uInt16
vcl/source/fontsubset/sft.cxx:1053
vcl::(anonymous namespace)::subHeader2 idDelta sal_uInt16
vcl/source/gdi/dibtools.cxx:53
(anonymous namespace)::CIEXYZ aXyzX FXPT2DOT30
vcl/source/gdi/dibtools.cxx:54
(anonymous namespace)::CIEXYZ aXyzY FXPT2DOT30
vcl/source/gdi/dibtools.cxx:55
(anonymous namespace)::CIEXYZ aXyzZ FXPT2DOT30
vcl/source/gdi/dibtools.cxx:66
(anonymous namespace)::CIEXYZTriple aXyzRed struct (anonymous namespace)::CIEXYZ
vcl/source/gdi/dibtools.cxx:67
(anonymous namespace)::CIEXYZTriple aXyzGreen struct (anonymous namespace)::CIEXYZ
vcl/source/gdi/dibtools.cxx:68
(anonymous namespace)::CIEXYZTriple aXyzBlue struct (anonymous namespace)::CIEXYZ
vcl/source/gdi/dibtools.cxx:108
(anonymous namespace)::DIBV5Header nV5RedMask sal_uInt32
vcl/source/gdi/dibtools.cxx:109
(anonymous namespace)::DIBV5Header nV5GreenMask sal_uInt32
vcl/source/gdi/dibtools.cxx:110
(anonymous namespace)::DIBV5Header nV5BlueMask sal_uInt32
vcl/source/gdi/dibtools.cxx:111
(anonymous namespace)::DIBV5Header nV5AlphaMask sal_uInt32
vcl/source/gdi/dibtools.cxx:113
(anonymous namespace)::DIBV5Header aV5Endpoints struct (anonymous namespace)::CIEXYZTriple
vcl/source/gdi/dibtools.cxx:114
(anonymous namespace)::DIBV5Header nV5GammaRed sal_uInt32
vcl/source/gdi/dibtools.cxx:115
(anonymous namespace)::DIBV5Header nV5GammaGreen sal_uInt32
vcl/source/gdi/dibtools.cxx:116
(anonymous namespace)::DIBV5Header nV5GammaBlue sal_uInt32
vcl/source/gdi/dibtools.cxx:118
(anonymous namespace)::DIBV5Header nV5ProfileData sal_uInt32
vcl/source/gdi/dibtools.cxx:119
(anonymous namespace)::DIBV5Header nV5ProfileSize sal_uInt32
vcl/source/gdi/dibtools.cxx:120
(anonymous namespace)::DIBV5Header nV5Reserved sal_uInt32
vcl/source/gdi/pdfwriter_impl.hxx:266
vcl::pdf::TransparencyEmit m_pSoftMaskStream std::unique_ptr<SvMemoryStream>
vcl/source/treelist/headbar.cxx:41
ImplHeadItem maHelpId class rtl::OString
vcl/source/treelist/headbar.cxx:42
ImplHeadItem maImage class Image
vcl/source/window/menuitemlist.hxx:56
MenuItemData aAccessibleName class rtl::OUString
vcl/unx/gtk3/a11y/atkwrapper.hxx:47
AtkObjectWrapper aParent AtkObject
vcl/unx/gtk3/a11y/atkwrapper.hxx:75
AtkObjectWrapperClass aParentClass GtkWidgetAccessibleClass
vcl/unx/gtk3/gtk3glomenu.cxx:14
GLOMenu parent_instance const GMenuModel
vcl/unx/gtk3/gtk3gtkinst.cxx:1613
out gpointer *
writerfilter/source/ooxml/OOXMLFactory.hxx:58
writerfilter::ooxml::AttributeInfo m_nToken writerfilter::Token_t
writerfilter/source/ooxml/OOXMLFactory.hxx:59
writerfilter::ooxml::AttributeInfo m_nResource enum writerfilter::ooxml::ResourceType
writerfilter/source/ooxml/OOXMLFactory.hxx:60
writerfilter::ooxml::AttributeInfo m_nRef Id
xmloff/inc/MultiPropertySetHelper.hxx:78
MultiPropertySetHelper aEmptyAny css::uno::Any
xmloff/source/chart/SchXMLChartContext.cxx:444
(anonymous namespace)::NewDonutSeries msStyleName class rtl::OUString
xmloff/source/chart/SchXMLChartContext.hxx:52
SeriesDefaultsAndStyles maErrorIndicatorDefault css::uno::Any
xmloff/source/chart/SchXMLChartContext.hxx:53
SeriesDefaultsAndStyles maErrorCategoryDefault css::uno::Any
xmloff/source/chart/SchXMLChartContext.hxx:54
SeriesDefaultsAndStyles maConstantErrorLowDefault css::uno::Any
xmloff/source/chart/SchXMLChartContext.hxx:55
SeriesDefaultsAndStyles maConstantErrorHighDefault css::uno::Any
xmloff/source/chart/SchXMLChartContext.hxx:56
SeriesDefaultsAndStyles maPercentageErrorDefault css::uno::Any
xmloff/source/chart/SchXMLChartContext.hxx:57
SeriesDefaultsAndStyles maErrorMarginDefault css::uno::Any
xmloff/source/core/xmlexp.cxx:263
SvXMLExport_Impl maSaveOptions class SvtSaveOptions
|