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
|
connectivity/source/inc/java/lang/Object.hxx:109
int connectivity::java_lang_Object::callIntMethodWithIntArg_ThrowRuntime(const char *,struct _jmethodID *&,int) const
connectivity/source/inc/odbc/OConnection.hxx:75
short connectivity::odbc::OConnection::Construct(const rtl::OUString &,const com::sun::star::uno::Sequence<struct com::sun::star::beans::PropertyValue> &)
connectivity/source/inc/odbc/OFunctions.hxx:88
short connectivity::odbc::Functions::SetEnvAttr(void *,int,void *,int) const
connectivity/source/inc/odbc/OFunctions.hxx:101
short connectivity::odbc::Functions::GetStmtAttr(void *,int,void *,int,int *) const
connectivity/source/inc/odbc/OFunctions.hxx:164
short connectivity::odbc::Functions::SetCursorName(void *,unsigned char *,short) const
connectivity/source/inc/odbc/OFunctions.hxx:167
short connectivity::odbc::Functions::SetCursorNameW(void *,unsigned short *,short) const
connectivity/source/inc/odbc/OFunctions.hxx:184
short connectivity::odbc::Functions::NumParams(void *,short *) const
connectivity/source/inc/odbc/OFunctions.hxx:186
short connectivity::odbc::Functions::PutData(void *,void *,long) const
connectivity/source/inc/odbc/OFunctions.hxx:434
short connectivity::odbc::Functions::CloseCursor(void *) const
connectivity/source/inc/odbc/OFunctions.hxx:435
short connectivity::odbc::Functions::Cancel(void *) const
connectivity/source/inc/odbc/OFunctions.hxx:442
short connectivity::odbc::Functions::GetCursorName(void *,unsigned char *,short,short *) const
connectivity/source/inc/odbc/OFunctions.hxx:446
short connectivity::odbc::Functions::GetCursorNameW(void *,unsigned short *,short,short *) const
connectivity/source/inc/odbc/OStatement.hxx:114
_Bool connectivity::odbc::OStatement_Base::lockIfNecessary(const rtl::OUString &)
cppuhelper/inc/interfacecontainer4.hxx:170
int cppuhelper::OInterfaceContainerHelper4::addInterface(std::unique_lock<std::mutex> &,const Reference<type-parameter-?-?> &)
cppuhelper/inc/interfacecontainer4.hxx:181
int cppuhelper::OInterfaceContainerHelper4::removeInterface(std::unique_lock<std::mutex> &,const Reference<type-parameter-?-?> &)
cui/source/inc/cfg.hxx:645
_Bool SvxIconSelectorDialog::ReplaceGraphicItem(const rtl::OUString &)
cui/source/inc/iconcdlg.hxx:54
_Bool IconChoicePage::FillItemSet(SfxItemSet *)
dbaccess/source/ui/app/AppSwapWindow.hxx:84
_Bool dbaui::OApplicationSwapWindow::onContainerSelected(enum dbaui::ElementType)
extensions/source/scanner/sane.hxx:105
_Bool Sane::CheckConsistency(const char *,_Bool)
extensions/source/scanner/sane.hxx:148
_Bool Sane::GetOptionValue(int,double *)
extensions/source/scanner/sane.hxx:155
_Bool Sane::ActivateButtonOption(int)
extensions/source/scanner/sane.hxx:161
_Bool Sane::Open(int)
extensions/source/scanner/sanedlg.hxx:87
_Bool SaneDlg::LoadState()
extensions/source/scanner/sanedlg.hxx:101
_Bool SaneDlg::SetAdjustedNumericalValue(const char *,double,int)
formula/source/ui/dlg/funcpage.hxx:103
_Bool formula::FuncPage::UpdateFavouritesList()
framework/source/fwe/classes/addonsoptions.cxx:281
_Bool framework::AddonsOptions_Impl::ReadToolBarItemSet(const rtl::OUString &,com::sun::star::uno::Sequence<com::sun::star::uno::Sequence<struct com::sun::star::beans::PropertyValue> > &)
framework/source/fwe/classes/addonsoptions.cxx:283
_Bool framework::AddonsOptions_Impl::ReadNotebookBarItemSet(const rtl::OUString &,com::sun::star::uno::Sequence<com::sun::star::uno::Sequence<struct com::sun::star::beans::PropertyValue> > &)
i18nlangtag/source/languagetag/languagetag.cxx:304
const rtl::OUString & LanguageTagImpl::getBcp47() const
include/avmedia/mediaitem.hxx:121
_Bool avmedia::MediaItem::setFallbackURL(const rtl::OUString &)
include/basegfx/range/b2dconnectedranges.hxx:214
type-parameter-?-? basegfx::B2DConnectedRanges::forEachAggregate(type-parameter-?-?) const
include/basegfx/vector/b3dvector.hxx:135
basegfx::B3DVector & basegfx::B3DVector::setLength(double)
include/basegfx/vector/b3dvector.hxx:160
basegfx::B3DVector & basegfx::B3DVector::normalize()
include/basic/sbstar.hxx:62
_Bool StarBASIC::RTError(ErrCode,const rtl::OUString &,int,int,int)
include/comphelper/backupfilehelper.hxx:204
_Bool comphelper::BackupFileHelper::tryPush_extensionInfo(std::basic_string_view<char16_t>)
include/comphelper/crypto/Crypto.hxx:75
_Bool comphelper::ICryptoImplementation::cryptoHashFinalize(std::vector<unsigned char> &)
include/comphelper/crypto/Crypto.hxx:127
_Bool comphelper::CryptoHash::update(std::vector<unsigned char> &,unsigned int)
include/comphelper/interfacecontainer3.hxx:44
OInterfaceIteratorHelper3<ListenerT> comphelper::<deduction guide for OInterfaceIteratorHelper3>(OInterfaceIteratorHelper3<ListenerT>)
include/comphelper/interfacecontainer3.hxx:59
OInterfaceIteratorHelper3<ListenerT> comphelper::<deduction guide for OInterfaceIteratorHelper3>(OInterfaceContainerHelper3<type-parameter-?-?> &)
include/comphelper/interfacecontainer3.hxx:88
OInterfaceIteratorHelper3<ListenerT> comphelper::<deduction guide for OInterfaceIteratorHelper3>(const OInterfaceIteratorHelper3<ListenerT> &)
include/comphelper/interfacecontainer3.hxx:166
const Reference<type-parameter-?-?> & comphelper::OInterfaceContainerHelper3::getInterface(int) const
include/comphelper/interfacecontainer4.hxx:46
OInterfaceIteratorHelper4<ListenerT> comphelper::<deduction guide for OInterfaceIteratorHelper4>(OInterfaceIteratorHelper4<ListenerT>)
include/comphelper/interfacecontainer4.hxx:63
OInterfaceIteratorHelper4<ListenerT> comphelper::<deduction guide for OInterfaceIteratorHelper4>(std::unique_lock<std::mutex> &,OInterfaceContainerHelper4<type-parameter-?-?> &)
include/comphelper/interfacecontainer4.hxx:97
OInterfaceIteratorHelper4<ListenerT> comphelper::<deduction guide for OInterfaceIteratorHelper4>(const OInterfaceIteratorHelper4<ListenerT> &)
include/comphelper/multicontainer2.hxx:88
int comphelper::OMultiTypeInterfaceContainerHelper2::addInterface(const com::sun::star::uno::Type &,const com::sun::star::uno::Reference<com::sun::star::uno::XInterface> &)
include/editeng/editeng.hxx:231
EditView * EditEngine::RemoveView(EditView *)
include/editeng/editview.hxx:288
ErrCode EditView::Read(SvStream &,enum EETextFormat,SvKeyValueIterator *)
include/editeng/outliner.hxx:287
_Bool OutlinerView::Command(const CommandEvent &)
include/editeng/outliner.hxx:320
_Bool OutlinerView::IsBulletOrNumbering(_Bool &,_Bool &)
include/editeng/outliner.hxx:880
_Bool Outliner::UpdateFields()
include/editeng/svxacorr.hxx:294
_Bool SvxAutoCorrectLanguageLists::MakeCombinedChanges(std::vector<SvxAutocorrWord> &,std::vector<SvxAutocorrWord> &)
include/formula/tokenarray.hxx:484
formula::FormulaToken * formula::FormulaTokenArray::AddStringName(const svl::SharedString &)
include/o3tl/sorted_vector.hxx:47
sorted_vector<Value, Compare, Find> o3tl::<deduction guide for sorted_vector>(sorted_vector<Value, Compare, Find>)
include/o3tl/sorted_vector.hxx:60
sorted_vector<Value, Compare, Find> o3tl::<deduction guide for sorted_vector>(initializer_list<type-parameter-?-?>)
include/o3tl/sorted_vector.hxx:65
sorted_vector<Value, Compare, Find> o3tl::<deduction guide for sorted_vector>()
include/o3tl/sorted_vector.hxx:66
sorted_vector<Value, Compare, Find> o3tl::<deduction guide for sorted_vector>(const sorted_vector<Value, Compare, Find> &)
include/o3tl/sorted_vector.hxx:67
sorted_vector<Value, Compare, Find> o3tl::<deduction guide for sorted_vector>(sorted_vector<Value, Compare, Find> &&)
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<(anonymous namespace)::SwContent *const *, std::__cxx1998::vector<(anonymous namespace)::SwContent *> >, std::vector<(anonymous namespace)::SwContent *> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<LwpCellLayout *const *, std::__cxx1998::vector<LwpCellLayout *> >, std::vector<LwpCellLayout *> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<LwpCellList *const *, std::__cxx1998::vector<LwpCellList *> >, std::vector<LwpCellList *> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<LwpColumnLayout *const *, std::__cxx1998::vector<LwpColumnLayout *> >, std::vector<LwpColumnLayout *> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<LwpDocument *const *, std::__cxx1998::vector<LwpDocument *> >, std::vector<LwpDocument *> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<LwpObjectID *const *, std::__cxx1998::vector<LwpObjectID *> >, std::vector<LwpObjectID *> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<LwpPageHint *const *, std::__cxx1998::vector<LwpPageHint *> >, std::vector<LwpPageHint *> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<LwpPara *const *, std::__cxx1998::vector<LwpPara *> >, std::vector<LwpPara *> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<LwpRowLayout *const *, std::__cxx1998::vector<LwpRowLayout *> >, std::vector<LwpRowLayout *> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<LwpRowList *const *, std::__cxx1998::vector<LwpRowList *> >, std::vector<LwpRowList *> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<LwpSilverBullet *const *, std::__cxx1998::vector<LwpSilverBullet *> >, std::vector<LwpSilverBullet *> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<LwpStory *const *, std::__cxx1998::vector<LwpStory *> >, std::vector<LwpStory *> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<LwpTableRange *const *, std::__cxx1998::vector<LwpTableRange *> >, std::vector<LwpTableRange *> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<LwpVirtualLayout *const *, std::__cxx1998::vector<LwpVirtualLayout *> >, std::vector<LwpVirtualLayout *> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SalFrame *const *, std::__cxx1998::vector<SalFrame *> >, std::vector<SalFrame *> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<ScDPObject *const *, std::__cxx1998::vector<ScDPObject *> >, std::vector<ScDPObject *> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<ScExternalRefManager::LinkListener *const *, std::__cxx1998::vector<ScExternalRefManager::LinkListener *> >, std::vector<ScExternalRefManager::LinkListener *> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SdrObject *const *, std::__cxx1998::vector<SdrObject *> >, std::vector<SdrObject *> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SdrOutliner *const *, std::__cxx1998::vector<SdrOutliner *> >, std::vector<SdrOutliner *> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SdrView *const *, std::__cxx1998::vector<SdrView *> >, std::vector<SdrView *> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SfxDispatcher *const *, std::__cxx1998::vector<SfxDispatcher *> >, std::vector<SfxDispatcher *> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SfxStyleSheet *const *, std::__cxx1998::vector<SfxStyleSheet *> >, std::vector<SfxStyleSheet *> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SvTreeListEntry *const *, std::__cxx1998::vector<SvTreeListEntry *> >, std::vector<SvTreeListEntry *> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SvtBroadcaster *const *, std::__cxx1998::vector<SvtBroadcaster *> >, std::vector<SvtBroadcaster *> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SwAccessibleParagraph *const *, std::__cxx1998::vector<SwAccessibleParagraph *> >, std::vector<SwAccessibleParagraph *> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SwFlyFrame *const *, std::__cxx1998::vector<SwFlyFrame *> >, std::vector<SwFlyFrame *> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SwFormat *const *, std::__cxx1998::vector<SwFormat *> >, std::vector<SwFormat *> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SwList *const *, std::__cxx1998::vector<SwList *> >, std::vector<SwList *> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SwNode *const *, std::__cxx1998::vector<SwNode *> >, std::vector<SwNode *> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SwRangeRedline *const *, std::__cxx1998::vector<SwRangeRedline *> >, std::vector<SwRangeRedline *> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SwRootFrame *const *, std::__cxx1998::vector<SwRootFrame *> >, std::vector<SwRootFrame *> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SwSectionFormat *const *, std::__cxx1998::vector<SwSectionFormat *> >, std::vector<SwSectionFormat *> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SwSectionFrame *const *, std::__cxx1998::vector<SwSectionFrame *> >, std::vector<SwSectionFrame *> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SwTableBox *const *, std::__cxx1998::vector<SwTableBox *> >, std::vector<SwTableBox *> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SwTextFootnote *const *, std::__cxx1998::vector<SwTextFootnote *> >, std::vector<SwTextFootnote *> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SwTextFrame *const *, std::__cxx1998::vector<SwTextFrame *> >, std::vector<SwTextFrame *> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SwXMLTableColumn_Impl *const *, std::__cxx1998::vector<SwXMLTableColumn_Impl *> >, std::vector<SwXMLTableColumn_Impl *> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<configmgr::RootAccess *const *, std::__cxx1998::vector<configmgr::RootAccess *> >, std::vector<configmgr::RootAccess *> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const MathTypeFont *, std::__cxx1998::vector<MathTypeFont> >, std::vector<MathTypeFont> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const ScTokenArray *const *, std::__cxx1998::vector<const ScTokenArray *> >, std::vector<const ScTokenArray *> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const SdrObject *const *, std::__cxx1998::vector<const SdrObject *> >, std::vector<const SdrObject *> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const SvxTabStop *, std::__cxx1998::vector<SvxTabStop> >, std::vector<SvxTabStop> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const SwCharFormat *const *, std::__cxx1998::vector<const SwCharFormat *> >, std::vector<const SwCharFormat *> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const SwFlyCache *const *, std::__cxx1998::vector<const SwFlyCache *> >, std::vector<const SwFlyCache *> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const SwFrameFormat *const *, std::__cxx1998::vector<const SwFrameFormat *> >, std::vector<const SwFrameFormat *> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const SwNode *const *, std::__cxx1998::vector<const SwNode *> >, std::vector<const SwNode *> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const SwPageDesc *const *, std::__cxx1998::vector<const SwPageDesc *> >, std::vector<const SwPageDesc *> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const SwRedlineData *const *, std::__cxx1998::vector<const SwRedlineData *> >, std::vector<const SwRedlineData *> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const SwTableBox *const *, std::__cxx1998::vector<const SwTableBox *> >, std::vector<const SwTableBox *> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const SwTextAttr *const *, std::__cxx1998::vector<const SwTextAttr *> >, std::vector<const SwTextAttr *> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const SwTextField *const *, std::__cxx1998::vector<const SwTextField *> >, std::vector<const SwTextField *> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const SwTextFormatColl *const *, std::__cxx1998::vector<const SwTextFormatColl *> >, std::vector<const SwTextFormatColl *> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const basegfx::B2DPoint *, std::__cxx1998::vector<basegfx::B2DPoint> >, std::vector<basegfx::B2DPoint> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const basegfx::utils::PointIndex *, std::__cxx1998::vector<basegfx::utils::PointIndex> >, std::vector<basegfx::utils::PointIndex> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const char16_t *, std::__cxx1998::vector<char16_t> >, std::vector<char16_t> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const com::sun::star::uno::Reference<com::sun::star::beans::XPropertiesChangeListener> *, std::__cxx1998::vector<com::sun::star::uno::Reference<com::sun::star::beans::XPropertiesChangeListener> > >, std::vector<com::sun::star::uno::Reference<com::sun::star::beans::XPropertiesChangeListener> > > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const com::sun::star::uno::Reference<com::sun::star::beans::XPropertyChangeListener> *, std::__cxx1998::vector<com::sun::star::uno::Reference<com::sun::star::beans::XPropertyChangeListener> > >, std::vector<com::sun::star::uno::Reference<com::sun::star::beans::XPropertyChangeListener> > > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const com::sun::star::uno::Reference<com::sun::star::beans::XPropertySet> *, std::__cxx1998::vector<com::sun::star::uno::Reference<com::sun::star::beans::XPropertySet> > >, std::vector<com::sun::star::uno::Reference<com::sun::star::beans::XPropertySet> > > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const com::sun::star::uno::Reference<com::sun::star::beans::XVetoableChangeListener> *, std::__cxx1998::vector<com::sun::star::uno::Reference<com::sun::star::beans::XVetoableChangeListener> > >, std::vector<com::sun::star::uno::Reference<com::sun::star::beans::XVetoableChangeListener> > > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const com::sun::star::uno::Reference<com::sun::star::container::XContainerListener> *, std::__cxx1998::vector<com::sun::star::uno::Reference<com::sun::star::container::XContainerListener> > >, std::vector<com::sun::star::uno::Reference<com::sun::star::container::XContainerListener> > > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const com::sun::star::uno::Reference<com::sun::star::drawing::XShape> *, std::__cxx1998::vector<com::sun::star::uno::Reference<com::sun::star::drawing::XShape> > >, std::vector<com::sun::star::uno::Reference<com::sun::star::drawing::XShape> > > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const com::sun::star::uno::Reference<com::sun::star::io::XStreamListener> *, std::__cxx1998::vector<com::sun::star::uno::Reference<com::sun::star::io::XStreamListener> > >, std::vector<com::sun::star::uno::Reference<com::sun::star::io::XStreamListener> > > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const com::sun::star::uno::Reference<com::sun::star::lang::XEventListener> *, std::__cxx1998::vector<com::sun::star::uno::Reference<com::sun::star::lang::XEventListener> > >, std::vector<com::sun::star::uno::Reference<com::sun::star::lang::XEventListener> > > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const com::sun::star::uno::Reference<com::sun::star::text::XTextFrame> *, std::__cxx1998::vector<com::sun::star::uno::Reference<com::sun::star::text::XTextFrame> > >, std::vector<com::sun::star::uno::Reference<com::sun::star::text::XTextFrame> > > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const com::sun::star::uno::Reference<com::sun::star::uno::XInterface> *, std::__cxx1998::vector<com::sun::star::uno::Reference<com::sun::star::uno::XInterface> > >, std::vector<com::sun::star::uno::Reference<com::sun::star::uno::XInterface> > > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const enum OpCode *, std::__cxx1998::vector<enum OpCode> >, std::vector<enum OpCode> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const fileaccess::TaskManager::MyProperty *, std::__cxx1998::vector<fileaccess::TaskManager::MyProperty> >, std::vector<fileaccess::TaskManager::MyProperty> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const int *, std::__cxx1998::vector<int> >, std::vector<int> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const rtl::OUString *, std::__cxx1998::vector<rtl::OUString> >, std::vector<rtl::OUString> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const short *, std::__cxx1998::vector<short> >, std::vector<short> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const std::basic_string_view<char16_t> *, std::__cxx1998::vector<std::basic_string_view<char16_t> > >, std::vector<std::basic_string_view<char16_t> > > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const std::unique_ptr<SetGetExpField> *, std::__cxx1998::vector<std::unique_ptr<SetGetExpField> > >, std::vector<std::unique_ptr<SetGetExpField> > > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const std::unique_ptr<SwBlockName> *, std::__cxx1998::vector<std::unique_ptr<SwBlockName> > >, std::vector<std::unique_ptr<SwBlockName> > > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const std::unique_ptr<SwContent> *, std::__cxx1998::vector<std::unique_ptr<SwContent> > >, std::vector<std::unique_ptr<SwContent> > > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const std::unique_ptr<SwGlblDocContent> *, std::__cxx1998::vector<std::unique_ptr<SwGlblDocContent> > >, std::vector<std::unique_ptr<SwGlblDocContent> > > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const std::unique_ptr<SwHTMLPosFlyFrame> *, std::__cxx1998::vector<std::unique_ptr<SwHTMLPosFlyFrame> > >, std::vector<std::unique_ptr<SwHTMLPosFlyFrame> > > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const std::unique_ptr<SwWriteTableCol> *, std::__cxx1998::vector<std::unique_ptr<SwWriteTableCol> > >, std::vector<std::unique_ptr<SwWriteTableCol> > > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const std::unique_ptr<SwWriteTableRow> *, std::__cxx1998::vector<std::unique_ptr<SwWriteTableRow> > >, std::vector<std::unique_ptr<SwWriteTableRow> > > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const std::unique_ptr<SwXMLTableColumn_Impl> *, std::__cxx1998::vector<std::unique_ptr<SwXMLTableColumn_Impl> > >, std::vector<std::unique_ptr<SwXMLTableColumn_Impl> > > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const std::unique_ptr<XMLFontAutoStylePoolEntry_Impl> *, std::__cxx1998::vector<std::unique_ptr<XMLFontAutoStylePoolEntry_Impl> > >, std::vector<std::unique_ptr<XMLFontAutoStylePoolEntry_Impl> > > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const std::unique_ptr<XMLTextListAutoStylePoolEntry_Impl> *, std::__cxx1998::vector<std::unique_ptr<XMLTextListAutoStylePoolEntry_Impl> > >, std::vector<std::unique_ptr<XMLTextListAutoStylePoolEntry_Impl> > > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const std::unique_ptr<rtl::OUString> *, std::__cxx1998::vector<std::unique_ptr<rtl::OUString> > >, std::vector<std::unique_ptr<rtl::OUString> > > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const std::unique_ptr<struct HTMLControl> *, std::__cxx1998::vector<std::unique_ptr<struct HTMLControl> > >, std::vector<std::unique_ptr<struct HTMLControl> > > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const std::unique_ptr<struct SwInsDBColumn> *, std::__cxx1998::vector<std::unique_ptr<struct SwInsDBColumn> > >, std::vector<std::unique_ptr<struct SwInsDBColumn> > > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const struct (anonymous namespace)::CmpLPt *, std::__cxx1998::vector<struct (anonymous namespace)::CmpLPt> >, std::vector<struct (anonymous namespace)::CmpLPt> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const struct (anonymous namespace)::CpyTabFrame *, std::__cxx1998::vector<struct (anonymous namespace)::CpyTabFrame> >, std::vector<struct (anonymous namespace)::CpyTabFrame> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const struct (anonymous namespace)::FieldResult *, std::__cxx1998::vector<struct (anonymous namespace)::FieldResult> >, std::vector<struct (anonymous namespace)::FieldResult> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const struct (anonymous namespace)::XclExpTokenConvInfo *const *, std::__cxx1998::vector<const struct (anonymous namespace)::XclExpTokenConvInfo *> >, std::vector<const struct (anonymous namespace)::XclExpTokenConvInfo *> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const struct EntryData *, std::__cxx1998::vector<struct EntryData> >, std::vector<struct EntryData> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const struct SfxItemPropertyMapEntry *, std::__cxx1998::vector<struct SfxItemPropertyMapEntry> >, std::vector<struct SfxItemPropertyMapEntry> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const struct SfxItemPropertyMapEntry *const *, std::__cxx1998::vector<const struct SfxItemPropertyMapEntry *> >, std::vector<const struct SfxItemPropertyMapEntry *> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const struct SwPamRange *, std::__cxx1998::vector<struct SwPamRange> >, std::vector<struct SwPamRange> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const struct XMLPropertyState *, std::__cxx1998::vector<struct XMLPropertyState> >, std::vector<struct XMLPropertyState> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const struct oox::xls::SheetDataBuffer::RowRangeStyle *, std::__cxx1998::vector<struct oox::xls::SheetDataBuffer::RowRangeStyle> >, std::vector<struct oox::xls::SheetDataBuffer::RowRangeStyle> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const struct std::pair<std::basic_string_view<char16_t>, std::basic_string_view<char16_t> > *, std::__cxx1998::vector<struct std::pair<std::basic_string_view<char16_t>, std::basic_string_view<char16_t> > > >, std::vector<struct std::pair<std::basic_string_view<char16_t>, std::basic_string_view<char16_t> > > > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const sw::mark::MarkBase *const *, std::__cxx1998::vector<const sw::mark::MarkBase *> >, std::vector<const sw::mark::MarkBase *> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const unsigned int *, std::__cxx1998::vector<unsigned int> >, std::vector<unsigned int> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const unsigned long *, std::__cxx1998::vector<unsigned long> >, std::vector<unsigned long> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const unsigned short *, std::__cxx1998::vector<unsigned short> >, std::vector<unsigned short> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<editeng::IAutoCompleteString *const *, std::__cxx1998::vector<editeng::IAutoCompleteString *> >, std::vector<editeng::IAutoCompleteString *> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<sfx2::SvLinkSource *const *, std::__cxx1998::vector<sfx2::SvLinkSource *> >, std::vector<sfx2::SvLinkSource *> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<struct ScFormulaCellGroup *const *, std::__cxx1998::vector<struct ScFormulaCellGroup *> >, std::vector<struct ScFormulaCellGroup *> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<struct SwRedlineDataParent *const *, std::__cxx1998::vector<struct SwRedlineDataParent *> >, std::vector<struct SwRedlineDataParent *> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<struct _GtkTreePath *const *, std::__cxx1998::vector<struct _GtkTreePath *> >, std::vector<struct _GtkTreePath *> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<sw::mark::MarkBase *const *, std::__cxx1998::vector<sw::mark::MarkBase *> >, std::vector<sw::mark::MarkBase *> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<vcl::graphic::MemoryManaged *const *, std::__cxx1998::vector<vcl::graphic::MemoryManaged *> >, std::vector<vcl::graphic::MemoryManaged *> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:203
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<void *const *, std::__cxx1998::vector<void *> >, std::vector<void *> > o3tl::sorted_vector::lower_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<(anonymous namespace)::SwContent *const *, std::__cxx1998::vector<(anonymous namespace)::SwContent *> >, std::vector<(anonymous namespace)::SwContent *> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<LwpCellLayout *const *, std::__cxx1998::vector<LwpCellLayout *> >, std::vector<LwpCellLayout *> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<LwpCellList *const *, std::__cxx1998::vector<LwpCellList *> >, std::vector<LwpCellList *> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<LwpColumnLayout *const *, std::__cxx1998::vector<LwpColumnLayout *> >, std::vector<LwpColumnLayout *> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<LwpDocument *const *, std::__cxx1998::vector<LwpDocument *> >, std::vector<LwpDocument *> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<LwpObjectID *const *, std::__cxx1998::vector<LwpObjectID *> >, std::vector<LwpObjectID *> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<LwpPageHint *const *, std::__cxx1998::vector<LwpPageHint *> >, std::vector<LwpPageHint *> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<LwpPara *const *, std::__cxx1998::vector<LwpPara *> >, std::vector<LwpPara *> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<LwpRowLayout *const *, std::__cxx1998::vector<LwpRowLayout *> >, std::vector<LwpRowLayout *> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<LwpRowList *const *, std::__cxx1998::vector<LwpRowList *> >, std::vector<LwpRowList *> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<LwpSilverBullet *const *, std::__cxx1998::vector<LwpSilverBullet *> >, std::vector<LwpSilverBullet *> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<LwpStory *const *, std::__cxx1998::vector<LwpStory *> >, std::vector<LwpStory *> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<LwpTableRange *const *, std::__cxx1998::vector<LwpTableRange *> >, std::vector<LwpTableRange *> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<LwpVirtualLayout *const *, std::__cxx1998::vector<LwpVirtualLayout *> >, std::vector<LwpVirtualLayout *> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SalFrame *const *, std::__cxx1998::vector<SalFrame *> >, std::vector<SalFrame *> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<ScDPObject *const *, std::__cxx1998::vector<ScDPObject *> >, std::vector<ScDPObject *> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<ScExternalRefManager::LinkListener *const *, std::__cxx1998::vector<ScExternalRefManager::LinkListener *> >, std::vector<ScExternalRefManager::LinkListener *> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SdrObject *const *, std::__cxx1998::vector<SdrObject *> >, std::vector<SdrObject *> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SdrOutliner *const *, std::__cxx1998::vector<SdrOutliner *> >, std::vector<SdrOutliner *> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SdrView *const *, std::__cxx1998::vector<SdrView *> >, std::vector<SdrView *> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SfxDispatcher *const *, std::__cxx1998::vector<SfxDispatcher *> >, std::vector<SfxDispatcher *> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SfxStyleSheet *const *, std::__cxx1998::vector<SfxStyleSheet *> >, std::vector<SfxStyleSheet *> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SvTreeListEntry *const *, std::__cxx1998::vector<SvTreeListEntry *> >, std::vector<SvTreeListEntry *> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SvtBroadcaster *const *, std::__cxx1998::vector<SvtBroadcaster *> >, std::vector<SvtBroadcaster *> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SwAccessibleParagraph *const *, std::__cxx1998::vector<SwAccessibleParagraph *> >, std::vector<SwAccessibleParagraph *> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SwFlyFrame *const *, std::__cxx1998::vector<SwFlyFrame *> >, std::vector<SwFlyFrame *> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SwFormat *const *, std::__cxx1998::vector<SwFormat *> >, std::vector<SwFormat *> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SwList *const *, std::__cxx1998::vector<SwList *> >, std::vector<SwList *> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SwNode *const *, std::__cxx1998::vector<SwNode *> >, std::vector<SwNode *> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SwRangeRedline *const *, std::__cxx1998::vector<SwRangeRedline *> >, std::vector<SwRangeRedline *> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SwRootFrame *const *, std::__cxx1998::vector<SwRootFrame *> >, std::vector<SwRootFrame *> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SwSectionFormat *const *, std::__cxx1998::vector<SwSectionFormat *> >, std::vector<SwSectionFormat *> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SwSectionFrame *const *, std::__cxx1998::vector<SwSectionFrame *> >, std::vector<SwSectionFrame *> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SwTableBox *const *, std::__cxx1998::vector<SwTableBox *> >, std::vector<SwTableBox *> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SwTextFootnote *const *, std::__cxx1998::vector<SwTextFootnote *> >, std::vector<SwTextFootnote *> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SwTextFrame *const *, std::__cxx1998::vector<SwTextFrame *> >, std::vector<SwTextFrame *> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SwXMLTableColumn_Impl *const *, std::__cxx1998::vector<SwXMLTableColumn_Impl *> >, std::vector<SwXMLTableColumn_Impl *> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<configmgr::RootAccess *const *, std::__cxx1998::vector<configmgr::RootAccess *> >, std::vector<configmgr::RootAccess *> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const MathTypeFont *, std::__cxx1998::vector<MathTypeFont> >, std::vector<MathTypeFont> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const ScTokenArray *const *, std::__cxx1998::vector<const ScTokenArray *> >, std::vector<const ScTokenArray *> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const SdrObject *const *, std::__cxx1998::vector<const SdrObject *> >, std::vector<const SdrObject *> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const SvxTabStop *, std::__cxx1998::vector<SvxTabStop> >, std::vector<SvxTabStop> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const SwCharFormat *const *, std::__cxx1998::vector<const SwCharFormat *> >, std::vector<const SwCharFormat *> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const SwFlyCache *const *, std::__cxx1998::vector<const SwFlyCache *> >, std::vector<const SwFlyCache *> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const SwFrameFormat *const *, std::__cxx1998::vector<const SwFrameFormat *> >, std::vector<const SwFrameFormat *> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const SwNode *const *, std::__cxx1998::vector<const SwNode *> >, std::vector<const SwNode *> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const SwPageDesc *const *, std::__cxx1998::vector<const SwPageDesc *> >, std::vector<const SwPageDesc *> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const SwRedlineData *const *, std::__cxx1998::vector<const SwRedlineData *> >, std::vector<const SwRedlineData *> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const SwTableBox *const *, std::__cxx1998::vector<const SwTableBox *> >, std::vector<const SwTableBox *> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const SwTextAttr *const *, std::__cxx1998::vector<const SwTextAttr *> >, std::vector<const SwTextAttr *> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const SwTextField *const *, std::__cxx1998::vector<const SwTextField *> >, std::vector<const SwTextField *> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const SwTextFormatColl *const *, std::__cxx1998::vector<const SwTextFormatColl *> >, std::vector<const SwTextFormatColl *> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const basegfx::B2DPoint *, std::__cxx1998::vector<basegfx::B2DPoint> >, std::vector<basegfx::B2DPoint> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const basegfx::utils::PointIndex *, std::__cxx1998::vector<basegfx::utils::PointIndex> >, std::vector<basegfx::utils::PointIndex> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const char16_t *, std::__cxx1998::vector<char16_t> >, std::vector<char16_t> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const com::sun::star::uno::Reference<com::sun::star::beans::XPropertiesChangeListener> *, std::__cxx1998::vector<com::sun::star::uno::Reference<com::sun::star::beans::XPropertiesChangeListener> > >, std::vector<com::sun::star::uno::Reference<com::sun::star::beans::XPropertiesChangeListener> > > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const com::sun::star::uno::Reference<com::sun::star::beans::XPropertyChangeListener> *, std::__cxx1998::vector<com::sun::star::uno::Reference<com::sun::star::beans::XPropertyChangeListener> > >, std::vector<com::sun::star::uno::Reference<com::sun::star::beans::XPropertyChangeListener> > > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const com::sun::star::uno::Reference<com::sun::star::beans::XPropertySet> *, std::__cxx1998::vector<com::sun::star::uno::Reference<com::sun::star::beans::XPropertySet> > >, std::vector<com::sun::star::uno::Reference<com::sun::star::beans::XPropertySet> > > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const com::sun::star::uno::Reference<com::sun::star::beans::XVetoableChangeListener> *, std::__cxx1998::vector<com::sun::star::uno::Reference<com::sun::star::beans::XVetoableChangeListener> > >, std::vector<com::sun::star::uno::Reference<com::sun::star::beans::XVetoableChangeListener> > > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const com::sun::star::uno::Reference<com::sun::star::container::XContainerListener> *, std::__cxx1998::vector<com::sun::star::uno::Reference<com::sun::star::container::XContainerListener> > >, std::vector<com::sun::star::uno::Reference<com::sun::star::container::XContainerListener> > > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const com::sun::star::uno::Reference<com::sun::star::drawing::XShape> *, std::__cxx1998::vector<com::sun::star::uno::Reference<com::sun::star::drawing::XShape> > >, std::vector<com::sun::star::uno::Reference<com::sun::star::drawing::XShape> > > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const com::sun::star::uno::Reference<com::sun::star::io::XStreamListener> *, std::__cxx1998::vector<com::sun::star::uno::Reference<com::sun::star::io::XStreamListener> > >, std::vector<com::sun::star::uno::Reference<com::sun::star::io::XStreamListener> > > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const com::sun::star::uno::Reference<com::sun::star::lang::XEventListener> *, std::__cxx1998::vector<com::sun::star::uno::Reference<com::sun::star::lang::XEventListener> > >, std::vector<com::sun::star::uno::Reference<com::sun::star::lang::XEventListener> > > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const com::sun::star::uno::Reference<com::sun::star::text::XTextFrame> *, std::__cxx1998::vector<com::sun::star::uno::Reference<com::sun::star::text::XTextFrame> > >, std::vector<com::sun::star::uno::Reference<com::sun::star::text::XTextFrame> > > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const com::sun::star::uno::Reference<com::sun::star::uno::XInterface> *, std::__cxx1998::vector<com::sun::star::uno::Reference<com::sun::star::uno::XInterface> > >, std::vector<com::sun::star::uno::Reference<com::sun::star::uno::XInterface> > > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const enum OpCode *, std::__cxx1998::vector<enum OpCode> >, std::vector<enum OpCode> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const fileaccess::TaskManager::MyProperty *, std::__cxx1998::vector<fileaccess::TaskManager::MyProperty> >, std::vector<fileaccess::TaskManager::MyProperty> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const int *, std::__cxx1998::vector<int> >, std::vector<int> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const rtl::OUString *, std::__cxx1998::vector<rtl::OUString> >, std::vector<rtl::OUString> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const short *, std::__cxx1998::vector<short> >, std::vector<short> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const std::basic_string_view<char16_t> *, std::__cxx1998::vector<std::basic_string_view<char16_t> > >, std::vector<std::basic_string_view<char16_t> > > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const std::unique_ptr<SetGetExpField> *, std::__cxx1998::vector<std::unique_ptr<SetGetExpField> > >, std::vector<std::unique_ptr<SetGetExpField> > > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const std::unique_ptr<SwBlockName> *, std::__cxx1998::vector<std::unique_ptr<SwBlockName> > >, std::vector<std::unique_ptr<SwBlockName> > > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const std::unique_ptr<SwContent> *, std::__cxx1998::vector<std::unique_ptr<SwContent> > >, std::vector<std::unique_ptr<SwContent> > > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const std::unique_ptr<SwGlblDocContent> *, std::__cxx1998::vector<std::unique_ptr<SwGlblDocContent> > >, std::vector<std::unique_ptr<SwGlblDocContent> > > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const std::unique_ptr<SwHTMLPosFlyFrame> *, std::__cxx1998::vector<std::unique_ptr<SwHTMLPosFlyFrame> > >, std::vector<std::unique_ptr<SwHTMLPosFlyFrame> > > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const std::unique_ptr<SwWriteTableCol> *, std::__cxx1998::vector<std::unique_ptr<SwWriteTableCol> > >, std::vector<std::unique_ptr<SwWriteTableCol> > > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const std::unique_ptr<SwWriteTableRow> *, std::__cxx1998::vector<std::unique_ptr<SwWriteTableRow> > >, std::vector<std::unique_ptr<SwWriteTableRow> > > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const std::unique_ptr<SwXMLTableColumn_Impl> *, std::__cxx1998::vector<std::unique_ptr<SwXMLTableColumn_Impl> > >, std::vector<std::unique_ptr<SwXMLTableColumn_Impl> > > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const std::unique_ptr<XMLFontAutoStylePoolEntry_Impl> *, std::__cxx1998::vector<std::unique_ptr<XMLFontAutoStylePoolEntry_Impl> > >, std::vector<std::unique_ptr<XMLFontAutoStylePoolEntry_Impl> > > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const std::unique_ptr<XMLTextListAutoStylePoolEntry_Impl> *, std::__cxx1998::vector<std::unique_ptr<XMLTextListAutoStylePoolEntry_Impl> > >, std::vector<std::unique_ptr<XMLTextListAutoStylePoolEntry_Impl> > > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const std::unique_ptr<rtl::OUString> *, std::__cxx1998::vector<std::unique_ptr<rtl::OUString> > >, std::vector<std::unique_ptr<rtl::OUString> > > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const std::unique_ptr<struct HTMLControl> *, std::__cxx1998::vector<std::unique_ptr<struct HTMLControl> > >, std::vector<std::unique_ptr<struct HTMLControl> > > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const std::unique_ptr<struct SwInsDBColumn> *, std::__cxx1998::vector<std::unique_ptr<struct SwInsDBColumn> > >, std::vector<std::unique_ptr<struct SwInsDBColumn> > > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const struct (anonymous namespace)::CmpLPt *, std::__cxx1998::vector<struct (anonymous namespace)::CmpLPt> >, std::vector<struct (anonymous namespace)::CmpLPt> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const struct (anonymous namespace)::CpyTabFrame *, std::__cxx1998::vector<struct (anonymous namespace)::CpyTabFrame> >, std::vector<struct (anonymous namespace)::CpyTabFrame> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const struct (anonymous namespace)::FieldResult *, std::__cxx1998::vector<struct (anonymous namespace)::FieldResult> >, std::vector<struct (anonymous namespace)::FieldResult> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const struct (anonymous namespace)::XclExpTokenConvInfo *const *, std::__cxx1998::vector<const struct (anonymous namespace)::XclExpTokenConvInfo *> >, std::vector<const struct (anonymous namespace)::XclExpTokenConvInfo *> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const struct EntryData *, std::__cxx1998::vector<struct EntryData> >, std::vector<struct EntryData> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const struct SfxItemPropertyMapEntry *, std::__cxx1998::vector<struct SfxItemPropertyMapEntry> >, std::vector<struct SfxItemPropertyMapEntry> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const struct SfxItemPropertyMapEntry *const *, std::__cxx1998::vector<const struct SfxItemPropertyMapEntry *> >, std::vector<const struct SfxItemPropertyMapEntry *> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const struct SwPamRange *, std::__cxx1998::vector<struct SwPamRange> >, std::vector<struct SwPamRange> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const struct XMLPropertyState *, std::__cxx1998::vector<struct XMLPropertyState> >, std::vector<struct XMLPropertyState> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const struct oox::xls::SheetDataBuffer::RowRangeStyle *, std::__cxx1998::vector<struct oox::xls::SheetDataBuffer::RowRangeStyle> >, std::vector<struct oox::xls::SheetDataBuffer::RowRangeStyle> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const struct std::pair<std::basic_string_view<char16_t>, std::basic_string_view<char16_t> > *, std::__cxx1998::vector<struct std::pair<std::basic_string_view<char16_t>, std::basic_string_view<char16_t> > > >, std::vector<struct std::pair<std::basic_string_view<char16_t>, std::basic_string_view<char16_t> > > > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const sw::mark::MarkBase *const *, std::__cxx1998::vector<const sw::mark::MarkBase *> >, std::vector<const sw::mark::MarkBase *> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const unsigned int *, std::__cxx1998::vector<unsigned int> >, std::vector<unsigned int> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const unsigned long *, std::__cxx1998::vector<unsigned long> >, std::vector<unsigned long> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const unsigned short *, std::__cxx1998::vector<unsigned short> >, std::vector<unsigned short> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<editeng::IAutoCompleteString *const *, std::__cxx1998::vector<editeng::IAutoCompleteString *> >, std::vector<editeng::IAutoCompleteString *> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<sfx2::SvLinkSource *const *, std::__cxx1998::vector<sfx2::SvLinkSource *> >, std::vector<sfx2::SvLinkSource *> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<struct ScFormulaCellGroup *const *, std::__cxx1998::vector<struct ScFormulaCellGroup *> >, std::vector<struct ScFormulaCellGroup *> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<struct SwRedlineDataParent *const *, std::__cxx1998::vector<struct SwRedlineDataParent *> >, std::vector<struct SwRedlineDataParent *> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<struct _GtkTreePath *const *, std::__cxx1998::vector<struct _GtkTreePath *> >, std::vector<struct _GtkTreePath *> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<sw::mark::MarkBase *const *, std::__cxx1998::vector<sw::mark::MarkBase *> >, std::vector<sw::mark::MarkBase *> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<vcl::graphic::MemoryManaged *const *, std::__cxx1998::vector<vcl::graphic::MemoryManaged *> >, std::vector<vcl::graphic::MemoryManaged *> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:208
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<void *const *, std::__cxx1998::vector<void *> >, std::vector<void *> > o3tl::sorted_vector::upper_bound(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<(anonymous namespace)::SwContent *const *, std::__cxx1998::vector<(anonymous namespace)::SwContent *> >, std::vector<(anonymous namespace)::SwContent *> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<LwpCellLayout *const *, std::__cxx1998::vector<LwpCellLayout *> >, std::vector<LwpCellLayout *> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<LwpCellList *const *, std::__cxx1998::vector<LwpCellList *> >, std::vector<LwpCellList *> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<LwpColumnLayout *const *, std::__cxx1998::vector<LwpColumnLayout *> >, std::vector<LwpColumnLayout *> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<LwpDocument *const *, std::__cxx1998::vector<LwpDocument *> >, std::vector<LwpDocument *> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<LwpObjectID *const *, std::__cxx1998::vector<LwpObjectID *> >, std::vector<LwpObjectID *> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<LwpPageHint *const *, std::__cxx1998::vector<LwpPageHint *> >, std::vector<LwpPageHint *> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<LwpPara *const *, std::__cxx1998::vector<LwpPara *> >, std::vector<LwpPara *> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<LwpRowLayout *const *, std::__cxx1998::vector<LwpRowLayout *> >, std::vector<LwpRowLayout *> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<LwpRowList *const *, std::__cxx1998::vector<LwpRowList *> >, std::vector<LwpRowList *> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<LwpSilverBullet *const *, std::__cxx1998::vector<LwpSilverBullet *> >, std::vector<LwpSilverBullet *> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<LwpStory *const *, std::__cxx1998::vector<LwpStory *> >, std::vector<LwpStory *> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<LwpTableRange *const *, std::__cxx1998::vector<LwpTableRange *> >, std::vector<LwpTableRange *> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<LwpVirtualLayout *const *, std::__cxx1998::vector<LwpVirtualLayout *> >, std::vector<LwpVirtualLayout *> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SalFrame *const *, std::__cxx1998::vector<SalFrame *> >, std::vector<SalFrame *> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<ScDPObject *const *, std::__cxx1998::vector<ScDPObject *> >, std::vector<ScDPObject *> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<ScExternalRefManager::LinkListener *const *, std::__cxx1998::vector<ScExternalRefManager::LinkListener *> >, std::vector<ScExternalRefManager::LinkListener *> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SdrObject *const *, std::__cxx1998::vector<SdrObject *> >, std::vector<SdrObject *> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SdrOutliner *const *, std::__cxx1998::vector<SdrOutliner *> >, std::vector<SdrOutliner *> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SdrView *const *, std::__cxx1998::vector<SdrView *> >, std::vector<SdrView *> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SfxDispatcher *const *, std::__cxx1998::vector<SfxDispatcher *> >, std::vector<SfxDispatcher *> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SfxStyleSheet *const *, std::__cxx1998::vector<SfxStyleSheet *> >, std::vector<SfxStyleSheet *> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SvTreeListEntry *const *, std::__cxx1998::vector<SvTreeListEntry *> >, std::vector<SvTreeListEntry *> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SvtBroadcaster *const *, std::__cxx1998::vector<SvtBroadcaster *> >, std::vector<SvtBroadcaster *> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SwAccessibleParagraph *const *, std::__cxx1998::vector<SwAccessibleParagraph *> >, std::vector<SwAccessibleParagraph *> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SwFlyFrame *const *, std::__cxx1998::vector<SwFlyFrame *> >, std::vector<SwFlyFrame *> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SwFormat *const *, std::__cxx1998::vector<SwFormat *> >, std::vector<SwFormat *> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SwList *const *, std::__cxx1998::vector<SwList *> >, std::vector<SwList *> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SwNode *const *, std::__cxx1998::vector<SwNode *> >, std::vector<SwNode *> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SwRangeRedline *const *, std::__cxx1998::vector<SwRangeRedline *> >, std::vector<SwRangeRedline *> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SwRootFrame *const *, std::__cxx1998::vector<SwRootFrame *> >, std::vector<SwRootFrame *> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SwSectionFormat *const *, std::__cxx1998::vector<SwSectionFormat *> >, std::vector<SwSectionFormat *> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SwSectionFrame *const *, std::__cxx1998::vector<SwSectionFrame *> >, std::vector<SwSectionFrame *> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SwTableBox *const *, std::__cxx1998::vector<SwTableBox *> >, std::vector<SwTableBox *> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SwTextFootnote *const *, std::__cxx1998::vector<SwTextFootnote *> >, std::vector<SwTextFootnote *> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SwTextFrame *const *, std::__cxx1998::vector<SwTextFrame *> >, std::vector<SwTextFrame *> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<SwXMLTableColumn_Impl *const *, std::__cxx1998::vector<SwXMLTableColumn_Impl *> >, std::vector<SwXMLTableColumn_Impl *> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<configmgr::RootAccess *const *, std::__cxx1998::vector<configmgr::RootAccess *> >, std::vector<configmgr::RootAccess *> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const MathTypeFont *, std::__cxx1998::vector<MathTypeFont> >, std::vector<MathTypeFont> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const ScTokenArray *const *, std::__cxx1998::vector<const ScTokenArray *> >, std::vector<const ScTokenArray *> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const SdrObject *const *, std::__cxx1998::vector<const SdrObject *> >, std::vector<const SdrObject *> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const SvxTabStop *, std::__cxx1998::vector<SvxTabStop> >, std::vector<SvxTabStop> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const SwCharFormat *const *, std::__cxx1998::vector<const SwCharFormat *> >, std::vector<const SwCharFormat *> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const SwFlyCache *const *, std::__cxx1998::vector<const SwFlyCache *> >, std::vector<const SwFlyCache *> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const SwFrameFormat *const *, std::__cxx1998::vector<const SwFrameFormat *> >, std::vector<const SwFrameFormat *> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const SwNode *const *, std::__cxx1998::vector<const SwNode *> >, std::vector<const SwNode *> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const SwPageDesc *const *, std::__cxx1998::vector<const SwPageDesc *> >, std::vector<const SwPageDesc *> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const SwRedlineData *const *, std::__cxx1998::vector<const SwRedlineData *> >, std::vector<const SwRedlineData *> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const SwTableBox *const *, std::__cxx1998::vector<const SwTableBox *> >, std::vector<const SwTableBox *> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const SwTextAttr *const *, std::__cxx1998::vector<const SwTextAttr *> >, std::vector<const SwTextAttr *> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const SwTextField *const *, std::__cxx1998::vector<const SwTextField *> >, std::vector<const SwTextField *> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const SwTextFormatColl *const *, std::__cxx1998::vector<const SwTextFormatColl *> >, std::vector<const SwTextFormatColl *> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const basegfx::B2DPoint *, std::__cxx1998::vector<basegfx::B2DPoint> >, std::vector<basegfx::B2DPoint> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const basegfx::utils::PointIndex *, std::__cxx1998::vector<basegfx::utils::PointIndex> >, std::vector<basegfx::utils::PointIndex> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const char16_t *, std::__cxx1998::vector<char16_t> >, std::vector<char16_t> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const com::sun::star::uno::Reference<com::sun::star::beans::XPropertiesChangeListener> *, std::__cxx1998::vector<com::sun::star::uno::Reference<com::sun::star::beans::XPropertiesChangeListener> > >, std::vector<com::sun::star::uno::Reference<com::sun::star::beans::XPropertiesChangeListener> > > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const com::sun::star::uno::Reference<com::sun::star::beans::XPropertyChangeListener> *, std::__cxx1998::vector<com::sun::star::uno::Reference<com::sun::star::beans::XPropertyChangeListener> > >, std::vector<com::sun::star::uno::Reference<com::sun::star::beans::XPropertyChangeListener> > > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const com::sun::star::uno::Reference<com::sun::star::beans::XPropertySet> *, std::__cxx1998::vector<com::sun::star::uno::Reference<com::sun::star::beans::XPropertySet> > >, std::vector<com::sun::star::uno::Reference<com::sun::star::beans::XPropertySet> > > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const com::sun::star::uno::Reference<com::sun::star::beans::XVetoableChangeListener> *, std::__cxx1998::vector<com::sun::star::uno::Reference<com::sun::star::beans::XVetoableChangeListener> > >, std::vector<com::sun::star::uno::Reference<com::sun::star::beans::XVetoableChangeListener> > > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const com::sun::star::uno::Reference<com::sun::star::container::XContainerListener> *, std::__cxx1998::vector<com::sun::star::uno::Reference<com::sun::star::container::XContainerListener> > >, std::vector<com::sun::star::uno::Reference<com::sun::star::container::XContainerListener> > > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const com::sun::star::uno::Reference<com::sun::star::drawing::XShape> *, std::__cxx1998::vector<com::sun::star::uno::Reference<com::sun::star::drawing::XShape> > >, std::vector<com::sun::star::uno::Reference<com::sun::star::drawing::XShape> > > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const com::sun::star::uno::Reference<com::sun::star::io::XStreamListener> *, std::__cxx1998::vector<com::sun::star::uno::Reference<com::sun::star::io::XStreamListener> > >, std::vector<com::sun::star::uno::Reference<com::sun::star::io::XStreamListener> > > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const com::sun::star::uno::Reference<com::sun::star::lang::XEventListener> *, std::__cxx1998::vector<com::sun::star::uno::Reference<com::sun::star::lang::XEventListener> > >, std::vector<com::sun::star::uno::Reference<com::sun::star::lang::XEventListener> > > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const com::sun::star::uno::Reference<com::sun::star::text::XTextFrame> *, std::__cxx1998::vector<com::sun::star::uno::Reference<com::sun::star::text::XTextFrame> > >, std::vector<com::sun::star::uno::Reference<com::sun::star::text::XTextFrame> > > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const com::sun::star::uno::Reference<com::sun::star::uno::XInterface> *, std::__cxx1998::vector<com::sun::star::uno::Reference<com::sun::star::uno::XInterface> > >, std::vector<com::sun::star::uno::Reference<com::sun::star::uno::XInterface> > > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const enum OpCode *, std::__cxx1998::vector<enum OpCode> >, std::vector<enum OpCode> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const fileaccess::TaskManager::MyProperty *, std::__cxx1998::vector<fileaccess::TaskManager::MyProperty> >, std::vector<fileaccess::TaskManager::MyProperty> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const int *, std::__cxx1998::vector<int> >, std::vector<int> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const rtl::OUString *, std::__cxx1998::vector<rtl::OUString> >, std::vector<rtl::OUString> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const short *, std::__cxx1998::vector<short> >, std::vector<short> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const std::basic_string_view<char16_t> *, std::__cxx1998::vector<std::basic_string_view<char16_t> > >, std::vector<std::basic_string_view<char16_t> > > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const std::unique_ptr<SetGetExpField> *, std::__cxx1998::vector<std::unique_ptr<SetGetExpField> > >, std::vector<std::unique_ptr<SetGetExpField> > > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const std::unique_ptr<SwBlockName> *, std::__cxx1998::vector<std::unique_ptr<SwBlockName> > >, std::vector<std::unique_ptr<SwBlockName> > > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const std::unique_ptr<SwContent> *, std::__cxx1998::vector<std::unique_ptr<SwContent> > >, std::vector<std::unique_ptr<SwContent> > > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const std::unique_ptr<SwGlblDocContent> *, std::__cxx1998::vector<std::unique_ptr<SwGlblDocContent> > >, std::vector<std::unique_ptr<SwGlblDocContent> > > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const std::unique_ptr<SwHTMLPosFlyFrame> *, std::__cxx1998::vector<std::unique_ptr<SwHTMLPosFlyFrame> > >, std::vector<std::unique_ptr<SwHTMLPosFlyFrame> > > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const std::unique_ptr<SwWriteTableCol> *, std::__cxx1998::vector<std::unique_ptr<SwWriteTableCol> > >, std::vector<std::unique_ptr<SwWriteTableCol> > > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const std::unique_ptr<SwWriteTableRow> *, std::__cxx1998::vector<std::unique_ptr<SwWriteTableRow> > >, std::vector<std::unique_ptr<SwWriteTableRow> > > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const std::unique_ptr<SwXMLTableColumn_Impl> *, std::__cxx1998::vector<std::unique_ptr<SwXMLTableColumn_Impl> > >, std::vector<std::unique_ptr<SwXMLTableColumn_Impl> > > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const std::unique_ptr<XMLFontAutoStylePoolEntry_Impl> *, std::__cxx1998::vector<std::unique_ptr<XMLFontAutoStylePoolEntry_Impl> > >, std::vector<std::unique_ptr<XMLFontAutoStylePoolEntry_Impl> > > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const std::unique_ptr<XMLTextListAutoStylePoolEntry_Impl> *, std::__cxx1998::vector<std::unique_ptr<XMLTextListAutoStylePoolEntry_Impl> > >, std::vector<std::unique_ptr<XMLTextListAutoStylePoolEntry_Impl> > > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const std::unique_ptr<rtl::OUString> *, std::__cxx1998::vector<std::unique_ptr<rtl::OUString> > >, std::vector<std::unique_ptr<rtl::OUString> > > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const std::unique_ptr<struct HTMLControl> *, std::__cxx1998::vector<std::unique_ptr<struct HTMLControl> > >, std::vector<std::unique_ptr<struct HTMLControl> > > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const std::unique_ptr<struct SwInsDBColumn> *, std::__cxx1998::vector<std::unique_ptr<struct SwInsDBColumn> > >, std::vector<std::unique_ptr<struct SwInsDBColumn> > > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const struct (anonymous namespace)::CmpLPt *, std::__cxx1998::vector<struct (anonymous namespace)::CmpLPt> >, std::vector<struct (anonymous namespace)::CmpLPt> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const struct (anonymous namespace)::CpyTabFrame *, std::__cxx1998::vector<struct (anonymous namespace)::CpyTabFrame> >, std::vector<struct (anonymous namespace)::CpyTabFrame> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const struct (anonymous namespace)::FieldResult *, std::__cxx1998::vector<struct (anonymous namespace)::FieldResult> >, std::vector<struct (anonymous namespace)::FieldResult> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const struct (anonymous namespace)::XclExpTokenConvInfo *const *, std::__cxx1998::vector<const struct (anonymous namespace)::XclExpTokenConvInfo *> >, std::vector<const struct (anonymous namespace)::XclExpTokenConvInfo *> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const struct EntryData *, std::__cxx1998::vector<struct EntryData> >, std::vector<struct EntryData> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const struct SfxItemPropertyMapEntry *, std::__cxx1998::vector<struct SfxItemPropertyMapEntry> >, std::vector<struct SfxItemPropertyMapEntry> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const struct SfxItemPropertyMapEntry *const *, std::__cxx1998::vector<const struct SfxItemPropertyMapEntry *> >, std::vector<const struct SfxItemPropertyMapEntry *> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const struct SwPamRange *, std::__cxx1998::vector<struct SwPamRange> >, std::vector<struct SwPamRange> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const struct XMLPropertyState *, std::__cxx1998::vector<struct XMLPropertyState> >, std::vector<struct XMLPropertyState> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const struct oox::xls::SheetDataBuffer::RowRangeStyle *, std::__cxx1998::vector<struct oox::xls::SheetDataBuffer::RowRangeStyle> >, std::vector<struct oox::xls::SheetDataBuffer::RowRangeStyle> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const struct std::pair<std::basic_string_view<char16_t>, std::basic_string_view<char16_t> > *, std::__cxx1998::vector<struct std::pair<std::basic_string_view<char16_t>, std::basic_string_view<char16_t> > > >, std::vector<struct std::pair<std::basic_string_view<char16_t>, std::basic_string_view<char16_t> > > > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const sw::mark::MarkBase *const *, std::__cxx1998::vector<const sw::mark::MarkBase *> >, std::vector<const sw::mark::MarkBase *> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const unsigned int *, std::__cxx1998::vector<unsigned int> >, std::vector<unsigned int> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const unsigned long *, std::__cxx1998::vector<unsigned long> >, std::vector<unsigned long> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<const unsigned short *, std::__cxx1998::vector<unsigned short> >, std::vector<unsigned short> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<editeng::IAutoCompleteString *const *, std::__cxx1998::vector<editeng::IAutoCompleteString *> >, std::vector<editeng::IAutoCompleteString *> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<sfx2::SvLinkSource *const *, std::__cxx1998::vector<sfx2::SvLinkSource *> >, std::vector<sfx2::SvLinkSource *> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<struct ScFormulaCellGroup *const *, std::__cxx1998::vector<struct ScFormulaCellGroup *> >, std::vector<struct ScFormulaCellGroup *> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<struct SwRedlineDataParent *const *, std::__cxx1998::vector<struct SwRedlineDataParent *> >, std::vector<struct SwRedlineDataParent *> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<struct _GtkTreePath *const *, std::__cxx1998::vector<struct _GtkTreePath *> >, std::vector<struct _GtkTreePath *> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<sw::mark::MarkBase *const *, std::__cxx1998::vector<sw::mark::MarkBase *> >, std::vector<sw::mark::MarkBase *> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<vcl::graphic::MemoryManaged *const *, std::__cxx1998::vector<vcl::graphic::MemoryManaged *> >, std::vector<vcl::graphic::MemoryManaged *> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:219
__gnu_debug::_Safe_iterator<__gnu_cxx::__normal_iterator<void *const *, std::__cxx1998::vector<void *> >, std::vector<void *> > o3tl::sorted_vector::find(const type-parameter-?-? &) const
include/o3tl/sorted_vector.hxx:235
_Bool o3tl::sorted_vector::operator!=(const sorted_vector<Value, Compare, Find> &) const
include/o3tl/strong_int.hxx:141
_Bool o3tl::strong_int::anyOf(struct o3tl::strong_int<int, struct FractionTag<100> >,type-parameter-?-?...) const
include/o3tl/strong_int.hxx:141
_Bool o3tl::strong_int::anyOf(struct o3tl::strong_int<int, struct Tag_SwNodeOffset>,type-parameter-?-?...) const
include/o3tl/strong_int.hxx:141
_Bool o3tl::strong_int::anyOf(struct o3tl::strong_int<int, struct Tag_TextFrameIndex>,type-parameter-?-?...) const
include/o3tl/strong_int.hxx:141
_Bool o3tl::strong_int::anyOf(struct o3tl::strong_int<int, struct ViewShellDocIdTag>,type-parameter-?-?...) const
include/o3tl/strong_int.hxx:141
_Bool o3tl::strong_int::anyOf(struct o3tl::strong_int<int, struct ViewShellIdTag>,type-parameter-?-?...) const
include/o3tl/strong_int.hxx:141
_Bool o3tl::strong_int::anyOf(struct o3tl::strong_int<short, struct FractionTag<10> >,type-parameter-?-?...) const
include/o3tl/strong_int.hxx:141
_Bool o3tl::strong_int::anyOf(struct o3tl::strong_int<short, struct SdrLayerIDTag>,type-parameter-?-?...) const
include/o3tl/strong_int.hxx:141
_Bool o3tl::strong_int::anyOf(struct o3tl::strong_int<unsigned short, struct LanguageTypeTag>,type-parameter-?-?...) const
include/o3tl/strong_int.hxx:141
_Bool o3tl::strong_int::anyOf(struct o3tl::strong_int<unsigned short, struct SfxInterfaceIdTag>,type-parameter-?-?...) const
include/o3tl/strong_int.hxx:141
_Bool o3tl::strong_int::anyOf(struct o3tl::strong_int<unsigned short, struct ToolBoxItemIdTag>,type-parameter-?-?...) const
include/o3tl/typed_flags_set.hxx:113
typed_flags<type-parameter-?-?>::Wrap operator~(typed_flags<type-parameter-?-?>::Wrap)
include/o3tl/typed_flags_set.hxx:146
typed_flags<type-parameter-?-?>::Wrap operator^(typed_flags<type-parameter-?-?>::Wrap,type-parameter-?-?)
include/oox/crypto/AgileEngine.hxx:116
_Bool oox::crypto::AgileEngine::decryptHmacKey()
include/oox/crypto/AgileEngine.hxx:117
_Bool oox::crypto::AgileEngine::decryptHmacValue()
include/oox/crypto/AgileEngine.hxx:132
_Bool oox::crypto::AgileEngine::encryptHmacValue()
include/oox/crypto/CryptoEngine.hxx:46
_Bool oox::crypto::CryptoEngine::decrypt(oox::BinaryXInputStream &,oox::BinaryXOutputStream &)
include/oox/dump/dumperbase.hxx:640
long oox::dump::FlagsList::getIgnoreFlags() const
include/oox/dump/dumperbase.hxx:1410
type-parameter-?-? oox::dump::InputObjectBase::dumpName(const oox::dump::String &,const oox::dump::NameListWrapper &)
include/oox/dump/dumperbase.hxx:1416
type-parameter-?-? oox::dump::InputObjectBase::dumpBin(const oox::dump::String &,const oox::dump::NameListWrapper &)
include/oox/dump/dumperbase.hxx:1418
type-parameter-?-? oox::dump::InputObjectBase::dumpFix(const oox::dump::String &,const oox::dump::NameListWrapper &)
include/oox/dump/dumperbase.hxx:1422
type-parameter-?-? oox::dump::InputObjectBase::dumpValue(const struct oox::dump::ItemFormat &)
include/oox/dump/dumperbase.hxx:1425
type-parameter-?-? oox::dump::InputObjectBase::dumpName(_Bool,const oox::dump::String &,const oox::dump::NameListWrapper &)
include/oox/dump/dumperbase.hxx:1427
type-parameter-?-? oox::dump::InputObjectBase::dumpDec(_Bool,const oox::dump::String &,const oox::dump::NameListWrapper &)
include/oox/dump/dumperbase.hxx:1431
type-parameter-?-? oox::dump::InputObjectBase::dumpBin(_Bool,const oox::dump::String &,const oox::dump::NameListWrapper &)
include/oox/dump/dumperbase.hxx:1433
type-parameter-?-? oox::dump::InputObjectBase::dumpFix(_Bool,const oox::dump::String &,const oox::dump::NameListWrapper &)
include/oox/dump/dumperbase.hxx:1435
type-parameter-?-? oox::dump::InputObjectBase::dumpBool(_Bool,const oox::dump::String &,const oox::dump::NameListWrapper &)
include/oox/dump/dumperbase.hxx:1437
type-parameter-?-? oox::dump::InputObjectBase::dumpValue(_Bool,const struct oox::dump::ItemFormat &)
include/oox/dump/oledumper.hxx:307
_Bool oox::dump::AxPropertyObjectBase::dumpBoolProperty()
include/oox/dump/oledumper.hxx:308
int oox::dump::AxPropertyObjectBase::dumpHmmProperty()
include/oox/dump/oledumper.hxx:309
unsigned char oox::dump::AxPropertyObjectBase::dumpMousePtrProperty()
include/oox/dump/oledumper.hxx:311
type-parameter-?-? oox::dump::AxPropertyObjectBase::dumpBorderStyleProperty(type-parameter-?-?)
include/oox/dump/oledumper.hxx:313
type-parameter-?-? oox::dump::AxPropertyObjectBase::dumpSpecialEffectProperty(type-parameter-?-?)
include/oox/dump/oledumper.hxx:314
unsigned int oox::dump::AxPropertyObjectBase::dumpEnabledProperty()
include/oox/dump/oledumper.hxx:315
int oox::dump::AxPropertyObjectBase::dumpOrientationProperty()
include/oox/dump/oledumper.hxx:316
int oox::dump::AxPropertyObjectBase::dumpDelayProperty()
include/oox/dump/oledumper.hxx:317
unsigned int oox::dump::AxPropertyObjectBase::dumpImagePosProperty()
include/oox/dump/oledumper.hxx:318
unsigned char oox::dump::AxPropertyObjectBase::dumpImageSizeModeProperty()
include/oox/dump/oledumper.hxx:319
unsigned char oox::dump::AxPropertyObjectBase::dumpImageAlignProperty()
include/oox/dump/oledumper.hxx:322
unsigned int oox::dump::AxPropertyObjectBase::dumpColorProperty(unsigned int)
include/oox/dump/oledumper.hxx:323
char16_t oox::dump::AxPropertyObjectBase::dumpUnicodeProperty()
include/oox/export/shapes.hxx:138
oox::drawingml::ShapeExport & oox::drawingml::ShapeExport::WriteNonVisualDrawingProperties(const com::sun::star::uno::Reference<com::sun::star::drawing::XShape> &,const char *)
include/oox/export/shapes.hxx:186
oox::drawingml::ShapeExport & oox::drawingml::ShapeExport::WriteTextBox(const com::sun::star::uno::Reference<com::sun::star::uno::XInterface> &,int,_Bool)
include/oox/export/ThemeExport.hxx:48
_Bool oox::ThemeExport::writeColorSet(const model::Theme &)
include/oox/export/ThemeExport.hxx:49
_Bool oox::ThemeExport::writeFontScheme(const model::FontScheme &)
include/oox/export/ThemeExport.hxx:50
_Bool oox::ThemeExport::writeFormatScheme(const model::FormatScheme &)
include/oox/helper/binaryoutputstream.hxx:78
oox::BinaryOutputStream & oox::BinaryOutputStream::WriteInt16(short)
include/oox/helper/binaryoutputstream.hxx:79
oox::BinaryOutputStream & oox::BinaryOutputStream::WriteUInt16(unsigned short)
include/oox/helper/propertyset.hxx:110
_Bool oox::PropertySet::setProperty(int,Color)
include/oox/ole/axbinarywriter.hxx:115
_Bool oox::ole::AxBinaryPropertyWriter::ComplexProperty::writeProperty(oox::ole::AxAlignedOutputStream &)
include/oox/ole/olehelper.hxx:176
_Bool oox::ole::MSConvertOCXControls::importControlFromStream(oox::BinaryInputStream &,com::sun::star::uno::Reference<com::sun::star::form::XFormComponent> &,std::basic_string_view<char16_t>)
include/oox/ole/olehelper.hxx:187
_Bool oox::ole::MSConvertOCXControls::ReadOCXCtlsStream(const rtl::Reference<SotStorageStream> &,com::sun::star::uno::Reference<com::sun::star::form::XFormComponent> &,int,int)
include/sax/fshelper.hxx:133
sax_fastparser::FastSerializerHelper * sax_fastparser::FastSerializerHelper::write(int)
include/sax/fshelper.hxx:134
sax_fastparser::FastSerializerHelper * sax_fastparser::FastSerializerHelper::write(long)
include/sax/fshelper.hxx:135
sax_fastparser::FastSerializerHelper * sax_fastparser::FastSerializerHelper::write(double)
include/sax/fshelper.hxx:137
sax_fastparser::FastSerializerHelper * sax_fastparser::FastSerializerHelper::writeEscaped(std::basic_string_view<char>)
include/sfx2/linkmgr.hxx:64
_Bool sfx2::LinkManager::InsertLink(sfx2::SvBaseLink *,enum sfx2::SvBaseLinkObjectType,enum SfxLinkUpdateMode,const rtl::OUString *)
include/sfx2/lnkbase.hxx:111
sfx2::SvLinkSource * sfx2::SvBaseLink::GetRealObject()
include/svl/macitem.hxx:89
SvStream & SvxMacroTableDtor::Write(SvStream &) const
include/svtools/ctrlbox.hxx:371
_Bool FontNameBox::get_entry_selection_bounds(int &,int &)
include/svx/autoformathelper.hxx:212
_Bool AutoFormatBase::LoadBlockA(SvStream &,const struct AutoFormatVersions &,unsigned short)
include/svx/autoformathelper.hxx:213
_Bool AutoFormatBase::LoadBlockB(SvStream &,const struct AutoFormatVersions &,unsigned short)
include/svx/autoformathelper.hxx:215
_Bool AutoFormatBase::SaveBlockA(SvStream &,unsigned short) const
include/svx/autoformathelper.hxx:216
_Bool AutoFormatBase::SaveBlockB(SvStream &,unsigned short) const
include/svx/dlgctrl.hxx:99
Point SvxRectCtl::SetActualRPWithoutInvalidate(enum RectPoint)
include/svx/PaletteManager.hxx:83
_Bool PaletteManager::GetLumModOff(unsigned short,unsigned short,short &,short &)
include/test/a11y/AccessibilityTools.hxx:60
com::sun::star::uno::Reference<com::sun::star::accessibility::XAccessibleContext> AccessibilityTools::getAccessibleObjectForId(const com::sun::star::uno::Reference<com::sun::star::accessibility::XAccessible> &,std::basic_string_view<char16_t>)
include/test/a11y/AccessibilityTools.hxx:130
com::sun::star::uno::Reference<com::sun::star::accessibility::XAccessibleContext> AccessibilityTools::getAccessibleObjectForName(const com::sun::star::uno::Reference<com::sun::star::accessibility::XAccessibleContext> &,const short,std::basic_string_view<char16_t>,type-parameter-?-?...)
include/test/a11y/AccessibilityTools.hxx:160
com::sun::star::uno::Reference<com::sun::star::accessibility::XAccessibleContext> AccessibilityTools::getAccessibleObjectForName(const com::sun::star::uno::Reference<com::sun::star::accessibility::XAccessible> &,const short,std::basic_string_view<char16_t>,type-parameter-?-?...)
include/test/a11y/AccessibilityTools.hxx:184
_Bool AccessibilityTools::nameEquals(const com::sun::star::uno::Reference<com::sun::star::accessibility::XAccessible> &,const std::basic_string_view<char16_t>)
include/test/a11y/AccessibilityTools.hxx:272
rtl::OUString AccessibilityTools::debugName(com::sun::star::accessibility::XAccessibleAction *)
include/test/a11y/AccessibilityTools.hxx:273
rtl::OUString AccessibilityTools::debugName(com::sun::star::accessibility::XAccessibleText *)
include/test/a11y/eventposter.hxx:90
_Bool test::EventPosterHelper::operator!() const
include/test/helper/shape.hxx:41
com::sun::star::uno::Reference<com::sun::star::drawing::XShape> apitest::helper::shape::createEllipse(const com::sun::star::uno::Reference<com::sun::star::lang::XComponent> &,const int,const int,const int,const int)
include/test/sheet/xnamedrange.hxx:22
com::sun::star::uno::Reference<com::sun::star::uno::XInterface> apitest::XNamedRange::init()
include/tools/config.hxx:38
_Bool Config::ImplUpdateConfig() const
include/tools/lazydelete.hxx:92
std::optional<(anonymous namespace)::SdrHdlBitmapSet> tools::DeleteOnDeinit::set(type-parameter-?-? &&...)
include/tools/lazydelete.hxx:92
std::optional<(anonymous namespace)::VDevBuffer> tools::DeleteOnDeinit::set(type-parameter-?-? &&...)
include/tools/lazydelete.hxx:92
std::optional<BitmapEx> tools::DeleteOnDeinit::set(type-parameter-?-? &&...)
include/tools/lazydelete.hxx:92
std::optional<EditDLL> tools::DeleteOnDeinit::set(type-parameter-?-? &&...)
include/tools/lazydelete.hxx:92
std::optional<SalLayoutGlyphsCache> tools::DeleteOnDeinit::set(type-parameter-?-? &&...)
include/tools/lazydelete.hxx:92
std::optional<VclPtr<OutputDevice> > tools::DeleteOnDeinit::set(type-parameter-?-? &&...)
include/tools/lazydelete.hxx:92
std::optional<Wallpaper> tools::DeleteOnDeinit::set(type-parameter-?-? &&...)
include/tools/lazydelete.hxx:92
std::optional<com::sun::star::uno::Reference<com::sun::star::i18n::XBreakIterator> > tools::DeleteOnDeinit::set(type-parameter-?-? &&...)
include/tools/lazydelete.hxx:92
std::optional<com::sun::star::uno::Reference<com::sun::star::i18n::XLocaleData4> > tools::DeleteOnDeinit::set(type-parameter-?-? &&...)
include/tools/lazydelete.hxx:92
std::optional<drawinglayer::primitive2d::DiscreteShadow> tools::DeleteOnDeinit::set(type-parameter-?-? &&...)
include/tools/lazydelete.hxx:92
std::optional<filter::config::FilterCache> tools::DeleteOnDeinit::set(type-parameter-?-? &&...)
include/tools/lazydelete.hxx:92
std::optional<o3tl::lru_map<rtl::OUString, std::shared_ptr<const vcl::text::TextLayoutCache>, struct vcl::text::FirstCharsStringHash, struct vcl::text::FastStringCompareEqual, struct vcl::text::(anonymous namespace)::TextLayoutCacheCost> > tools::DeleteOnDeinit::set(type-parameter-?-? &&...)
include/tools/lazydelete.hxx:92
std::optional<rtl::Reference<SfxItemPool> > tools::DeleteOnDeinit::set(type-parameter-?-? &&...)
include/tools/lazydelete.hxx:92
std::optional<std::shared_ptr<weld::Window> > tools::DeleteOnDeinit::set(type-parameter-?-? &&...)
include/tools/lazydelete.hxx:92
std::optional<std::unordered_map<int, rtl::Reference<LOKClipboard> > > tools::DeleteOnDeinit::set(type-parameter-?-? &&...)
include/tools/lazydelete.hxx:92
std::optional<std::vector<struct com::sun::star::datatransfer::DataFlavor> > tools::DeleteOnDeinit::set(type-parameter-?-? &&...)
include/tools/lazydelete.hxx:92
std::optional<struct (anonymous namespace)::WavyLineCache> tools::DeleteOnDeinit::set(type-parameter-?-? &&...)
include/tools/multisel.hxx:93
_Bool StringRangeEnumerator::insertRange(int,int,_Bool)
include/tools/urlobj.hxx:428
_Bool INetURLObject::SetPass(std::basic_string_view<char16_t>)
include/tools/urlobj.hxx:735
_Bool INetURLObject::SetParam(std::basic_string_view<char16_t>,enum INetURLObject::EncodeMechanism,unsigned short)
include/unotools/lingucfg.hxx:191
_Bool SvtLinguConfig::GetElementNamesFor(const rtl::OUString &,com::sun::star::uno::Sequence<rtl::OUString> &) const
include/unotools/localedatawrapper.hxx:169
const com::sun::star::uno::Sequence<struct com::sun::star::lang::Locale> & LocaleDataWrapper::getAllInstalledLocaleNames() const
include/vcl/abstdlg.hxx:116
_Bool AbstractSecurityOptionsDialog::SetSecurityOptions()
include/vcl/alpha.hxx:90
_Bool AlphaMask::Convert(enum BmpConversion)
include/vcl/alpha.hxx:98
_Bool AlphaMask::Expand(int,int,const Color *)
include/vcl/alpha.hxx:100
_Bool AlphaMask::CopyPixel(const tools::Rectangle &,const tools::Rectangle &,const AlphaMask &)
include/vcl/BinaryDataContainer.hxx:59
unsigned long BinaryDataContainer::writeToStream(SvStream &) const
include/vcl/bitmap.hxx:280
_Bool Bitmap::Blend(const AlphaMask &,const Color &)
include/vcl/bitmap.hxx:448
_Bool Bitmap::Replace(const AlphaMask &,const Color &)
include/vcl/bitmap/Vectorizer.hxx:55
_Bool vcl::Vectorizer::vectorize(const BitmapEx &,GDIMetaFile &)
include/vcl/bitmapex.hxx:224
_Bool BitmapEx::Rotate(struct o3tl::strong_int<short, struct FractionTag<10> >,const Color &)
include/vcl/filter/SvmReader.hxx:37
SvStream & SvmReader::Read(GDIMetaFile &,struct ImplMetaReadData *)
include/vcl/filter/SvmWriter.hxx:37
SvStream & SvmWriter::Write(const GDIMetaFile &)
include/vcl/formatter.hxx:247
_Bool Formatter::SetFormat(const rtl::OUString &,struct o3tl::strong_int<unsigned short, struct LanguageTypeTag>)
include/vcl/graphicfilter.hxx:254
ErrCode GraphicFilter::ExportGraphic(const Graphic &,const INetURLObject &,unsigned short,const com::sun::star::uno::Sequence<struct com::sun::star::beans::PropertyValue> *)
include/vcl/GraphicNativeMetadata.hxx:34
_Bool GraphicNativeMetadata::read(SvStream &)
include/vcl/GraphicNativeTransform.hxx:33
_Bool GraphicNativeTransform::rotateBitmapOnly(struct o3tl::strong_int<short, struct FractionTag<10> >)
include/vcl/GraphicNativeTransform.hxx:35
_Bool GraphicNativeTransform::rotateGeneric(struct o3tl::strong_int<short, struct FractionTag<10> >,std::basic_string_view<char16_t>)
include/vcl/menu.hxx:391
_Bool Menu::HandleMenuActivateEvent(Menu *) const
include/vcl/menu.hxx:392
_Bool Menu::HandleMenuDeActivateEvent(Menu *) const
include/vcl/outdev.hxx:1186
_Bool OutputDevice::ForceFallbackFont(const vcl::Font &)
include/vcl/texteng.hxx:271
_Bool TextEngine::Read(SvStream &,const TextSelection *)
include/xmloff/unointerfacetouniqueidentifiermapper.hxx:65
_Bool comphelper::UnoInterfaceToUniqueIdentifierMapper::registerReservedReference(const rtl::OUString &,const com::sun::star::uno::Reference<com::sun::star::uno::XInterface> &)
include/xmloff/xmluconv.hxx:279
_Bool SvXMLUnitConverter::convertNumFormat(short &,const rtl::OUString &,std::basic_string_view<char16_t>,_Bool) const
linguistic/source/lngsvcmgr.hxx:114
_Bool LngSvcMgr::SaveCfgSvcs(std::basic_string_view<char16_t>)
lotuswordpro/inc/lwpsvstream.hxx:80
LwpSvStream & LwpSvStream::ReadUInt8(unsigned char &)
lotuswordpro/inc/lwpsvstream.hxx:81
LwpSvStream & LwpSvStream::ReadUInt16(unsigned short &)
lotuswordpro/inc/lwpsvstream.hxx:82
LwpSvStream & LwpSvStream::ReadUInt32(unsigned int &)
sc/inc/attarray.hxx:235
const ScPatternAttr * ScAttrArray::SetPatternAreaImpl(int,int,const CellAttributeHolder &,ScEditDataArray *)
sc/inc/column.hxx:675
_Bool ScColumn::DeleteSparkline(int)
sc/inc/document.hxx:947
_Bool ScDocument::SetTotalsRowBelow(short,_Bool)
sc/inc/orcusfilters.hxx:44
_Bool ScOrcusFilters::importODS_Styles(ScDocument &,rtl::OUString &) const
sc/inc/scabstdlg.hxx:56
_Bool ScAsyncTabController::StartExecuteAsync(struct VclAbstractDialog::AsyncContext &)
sc/inc/SolverSettings.hxx:177
_Bool sc::SolverSettings::ReadDoubleParamValue(enum sc::SolverParameter,rtl::OUString &)
sc/source/core/data/dpoutput.cxx:125
_Bool ScDPOutputImpl::AddRow(int)
sc/source/core/data/dpoutput.cxx:126
_Bool ScDPOutputImpl::AddCol(short)
sc/source/core/opencl/opbase.hxx:448
unsigned long sc::opencl::DynamicKernelSlidingArgument::GenReductionLoopHeader(sc::opencl::outputstream &,_Bool &)
sc/source/core/opencl/opbase.hxx:480
unsigned long sc::opencl::ParallelReductionVectorRef::GenReductionLoopHeader(sc::opencl::outputstream &,int,_Bool &)
sc/source/filter/inc/connectionsbuffer.hxx:145
struct oox::xls::ExtensionListModel & oox::xls::ConnectionModel::createExtensionList()
sc/source/filter/inc/workbookhelper.hxx:311
_Bool oox::xls::WorkbookHelper::importOoxFragment(const rtl::Reference<oox::core::FragmentHandler> &,oox::core::FastParser &)
sc/source/filter/xml/XMLStylesExportHelper.hxx:172
_Bool ScFormatRangeStyles::AddStyleName(const rtl::OUString &,int &,const _Bool)
sc/source/ui/inc/anyrefdg.hxx:94
_Bool ScRefHandler::DoClose(unsigned short)
sc/source/ui/inc/docfunc.hxx:121
_Bool ScDocFunc::SetFormulaCells(const ScAddress &,std::vector<ScFormulaCell *> &,_Bool)
sc/source/ui/inc/docfunc.hxx:171
_Bool ScDocFunc::Protect(short,const rtl::OUString &)
sc/source/ui/inc/docfunc.hxx:252
_Bool ScDocFunc::ChangeSparklineGroupAttributes(const std::shared_ptr<sc::SparklineGroup> &,const sc::SparklineAttributes &)
sc/source/ui/inc/drawview.hxx:158
_Bool ScDrawView::calculateGridOffsetForSdrObject(SdrObject &,basegfx::B2DVector &) const
sc/source/ui/inc/drawview.hxx:161
_Bool ScDrawView::calculateGridOffsetForB2DRange(const basegfx::B2DRange &,basegfx::B2DVector &) const
sc/source/ui/inc/select.hxx:71
_Bool ScViewFunctionSet::SetCursorAtCell(short,int,_Bool)
sc/source/ui/vba/vbaformat.hxx:69
com::sun::star::uno::Any ScVbaFormat::getAddIndent()
sc/source/ui/vba/vbaformat.hxx:73
com::sun::star::uno::Any ScVbaFormat::Borders(const com::sun::star::uno::Any &)
sc/source/ui/vba/vbaformat.hxx:76
com::sun::star::uno::Reference<ooo::vba::excel::XFont> ScVbaFormat::Font()
sc/source/ui/vba/vbaformat.hxx:79
com::sun::star::uno::Reference<ooo::vba::excel::XInterior> ScVbaFormat::Interior()
sc/source/ui/vba/vbaformat.hxx:85
com::sun::star::uno::Any ScVbaFormat::getNumberFormat()
sc/source/ui/vba/vbaformat.hxx:91
com::sun::star::uno::Any ScVbaFormat::getNumberFormatLocal()
sc/source/ui/vba/vbaformat.hxx:97
com::sun::star::uno::Any ScVbaFormat::getIndentLevel()
sc/source/ui/vba/vbaformat.hxx:103
com::sun::star::uno::Any ScVbaFormat::getHorizontalAlignment()
sc/source/ui/vba/vbaformat.hxx:109
com::sun::star::uno::Any ScVbaFormat::getVerticalAlignment()
sc/source/ui/vba/vbaformat.hxx:115
com::sun::star::uno::Any ScVbaFormat::getOrientation()
sc/source/ui/vba/vbaformat.hxx:121
com::sun::star::uno::Any ScVbaFormat::getShrinkToFit()
sc/source/ui/vba/vbaformat.hxx:127
com::sun::star::uno::Any ScVbaFormat::getWrapText()
sc/source/ui/vba/vbaformat.hxx:133
com::sun::star::uno::Any ScVbaFormat::getLocked()
sc/source/ui/vba/vbaformat.hxx:139
com::sun::star::uno::Any ScVbaFormat::getFormulaHidden()
sc/source/ui/vba/vbaformat.hxx:145
com::sun::star::uno::Any ScVbaFormat::getMergeCells()
sc/source/ui/vba/vbaformat.hxx:151
com::sun::star::uno::Any ScVbaFormat::getReadingOrder()
sd/inc/drawdoc.hxx:698
_Bool SdDrawDocument::ResolvePageLinks(const std::vector<rtl::OUString> &,unsigned short,_Bool,_Bool,_Bool)
sd/inc/drawdoc.hxx:719
_Bool SdDrawDocument::CopyOrMovePagesWithinDocument(const std::vector<rtl::OUString> &,std::vector<rtl::OUString> *,unsigned short,_Bool,_Bool)
sd/inc/drawdoc.hxx:739
_Bool SdDrawDocument::ImportDocumentPages(const std::vector<rtl::OUString> &,unsigned short,sd::DrawDocShell *,_Bool)
sd/inc/drawdoc.hxx:1037
SdPage * SdDrawDocument::AddNewMasterPageFromExisting(SdPage *,SdDrawDocument *,_Bool,const rtl::OUString &)
sd/source/filter/eppt/pptx-epptooxml.cxx:171
oox::drawingml::ShapeExport & oox::core::PowerPointShapeExport::WritePlaceholderReferenceShape(enum oox::core::PlaceholderType,int,enum PageType,const com::sun::star::uno::Reference<com::sun::star::beans::XPropertySet> &)
sd/source/filter/eppt/pptx-epptooxml.cxx:172
oox::drawingml::ShapeExport & oox::core::PowerPointShapeExport::WritePageShape(const com::sun::star::uno::Reference<com::sun::star::drawing::XShape> &,enum PageType,_Bool)
sd/source/filter/eppt/pptx-epptooxml.cxx:174
oox::drawingml::ShapeExport & oox::core::PowerPointShapeExport::WritePlaceholderReferenceTextBody(enum oox::core::PlaceholderType,enum PageType,const com::sun::star::uno::Reference<com::sun::star::beans::XPropertySet> &)
sd/source/filter/html/htmlex.hxx:67
_Bool HtmlExport::WriteHtml(std::basic_string_view<char16_t>,std::basic_string_view<char16_t>)
sd/source/ui/inc/DrawViewShell.hxx:264
_Bool sd::DrawViewShell::SelectPage(unsigned short,unsigned short)
sd/source/ui/inc/navigatr.hxx:120
_Bool SdNavigatorWin::InsertFile(const rtl::OUString &)
sd/source/ui/inc/OutlineViewShell.hxx:113
ErrCode sd::OutlineViewShell::ReadRtf(SvStream &)
sd/source/ui/inc/View.hxx:174
SdrMediaObj * sd::View::InsertMediaObj(const rtl::OUString &,signed char &,const Point &,const Size &)
sd/source/ui/remotecontrol/IBluetoothSocket.hxx:36
int sd::IBluetoothSocket::write(const void *,unsigned int)
sdext/source/pdfimport/tree/style.hxx:153
int pdfi::StyleContainer::getStandardStyleId(std::basic_string_view<char>)
sfx2/inc/autoredactdialog.hxx:120
_Bool SfxAutoRedactDialog::getTargets(std::vector<struct std::pair<struct RedactionTarget, rtl::OUString> > &)
slideshow/source/engine/animationnodes/animationbasenode.hxx:62
_Bool slideshow::internal::AnimationBaseNode::enqueueActivity() const
svl/source/fsstor/fsstorage.hxx:56
ucbhelper::Content & FSStorage::GetContent()
svx/inc/galleryfilestorage.hxx:100
SvStream & GalleryFileStorage::writeGalleryTheme(SvStream &,const GalleryTheme &,const GalleryThemeEntry *)
svx/inc/galleryfilestorageentry.hxx:55
std::unique_ptr<GalleryTheme> & GalleryFileStorageEntry::getCachedTheme(std::unique_ptr<GalleryTheme> &)
sw/inc/calc.hxx:123
SwSbxValue & SwSbxValue::MakeDouble()
sw/inc/crsrsh.hxx:640
_Bool SwCursorShell::TrySelectOuterTable()
sw/inc/doc.hxx:1513
_Bool SwDoc::ConvertFieldToText(const SwField &,const SwRootFrame &)
sw/inc/docary.hxx:308
_Bool SwExtraRedlineTable::DeleteAllTableRedlines(SwDoc &,const SwTable &,_Bool,enum RedlineType)
sw/inc/docary.hxx:309
_Bool SwExtraRedlineTable::DeleteTableRowRedline(SwDoc *,const SwTableLine &,_Bool,enum RedlineType)
sw/inc/docary.hxx:310
_Bool SwExtraRedlineTable::DeleteTableCellRedline(SwDoc *,const SwTableBox &,_Bool,enum RedlineType)
sw/inc/editsh.hxx:180
_Bool SwEditShell::ReplaceKeepComments(const rtl::OUString &)
sw/inc/editsh.hxx:503
_Bool SwEditShell::OutlineUpDown(short)
sw/inc/editsh.hxx:664
const GraphicAttr * SwEditShell::GetGraphicAttr(GraphicAttr &) const
sw/inc/editsh.hxx:677
_Bool SwEditShell::GetGrfSize(Size &) const
sw/inc/editsh.hxx:841
unsigned short SwEditShell::GetRefMarks(std::vector<rtl::OUString> *) const
sw/inc/IDocumentUndoRedo.hxx:99
_Bool IDocumentUndoRedo::Undo()
sw/inc/IDocumentUndoRedo.hxx:160
_Bool IDocumentUndoRedo::Redo()
sw/inc/IDocumentUndoRedo.hxx:180
_Bool IDocumentUndoRedo::Repeat(sw::RepeatContext &,const unsigned short)
sw/inc/ndarr.hxx:96
_Bool SwOutlineNodesInline::Seek_Entry(const SwNode *,unsigned long *) const
sw/inc/node.hxx:443
_Bool SwContentNode::GoNext(struct SwPosition &,enum SwCursorSkipMode) const
sw/inc/PostItMgr.hxx:204
sw::annotation::SwAnnotationWin * SwPostItMgr::GetOrCreateAnnotationWindowForLatestPostItField()
sw/inc/redline.hxx:268
_Bool SwRangeRedline::PopAllDataAfter(int)
sw/inc/tblafmt.hxx:278
_Bool SwTableAutoFormatTable::Load(SvStream &)
sw/inc/unocrsrhelper.hxx:75
_Bool SwUnoCursorHelper::SwAnyMapHelper::FillValue(unsigned short,unsigned short,const com::sun::star::uno::Any *&)
sw/source/core/inc/laycache.hxx:64
_Bool SwLayoutCache::CompareLayout(const SwDoc &) const
sw/source/filter/ww8/ww8toolbar.hxx:337
_Bool Tcg::ImportCustomToolBar(SfxObjectShell &)
sw/source/uibase/inc/drawbase.hxx:53
_Bool SwDrawBase::MouseMove(const MouseEvent &)
sw/source/uibase/inc/fldmgr.hxx:118
const com::sun::star::uno::Reference<com::sun::star::text::XNumberingTypeInfo> & SwFieldMgr::GetNumberingInfo() const
sw/source/uibase/inc/mailmergewizard.hxx:78
_Bool SwMailMergeWizard::skipUntil(unsigned short)
sw/source/uibase/inc/wrtsh.hxx:439
_Bool SwWrtShell::GotoFieldmark(const sw::mark::Fieldmark *const)
sw/source/uibase/inc/wrtsh.hxx:447
_Bool SwWrtShell::GotoContentControl(const SwFormatContentControl &,_Bool)
sw/source/writerfilter/dmapper/TagLogger.hxx:59
enable_if<std::is_integral_v<type-parameter-?-?>, void>::type writerfilter::TagLogger::attribute(const std::basic_string<char> &,type-parameter-?-?)
ucb/source/core/ucbstore.hxx:97
const com::sun::star::uno::Reference<com::sun::star::lang::XMultiServiceFactory> & PropertySetRegistry::getConfigProvider(std::unique_lock<std::mutex> &)
ucb/source/ucp/webdav-curl/ContentProperties.hxx:160
_Bool http_dav_ucp::CachableContentProperties::containsAllNames(const com::sun::star::uno::Sequence<struct com::sun::star::beans::Property> &,std::vector<rtl::OUString> &) const
unotools/source/ucbhelper/ucblockbytes.hxx:108
_Bool utl::UcbLockBytes::setInputStream(const com::sun::star::uno::Reference<com::sun::star::io::XInputStream> &)
vcl/inc/font/FeatureCollector.hxx:44
_Bool vcl::font::FeatureCollector::collect()
vcl/inc/graphic/MemoryManaged.hxx:136
_Bool vcl::graphic::MemoryManaged::reduceMemory()
vcl/inc/impgraph.hxx:172
_Bool ImpGraphic::swapOutGraphic(SvStream &)
vcl/inc/pdf/IPDFEncryptor.hxx:71
_Bool vcl::pdf::IPDFEncryptor::prepareEncryption(const com::sun::star::uno::Reference<com::sun::star::beans::XMaterialHolder> &,struct vcl::PDFEncryptionProperties &)
vcl/inc/pdf/pdfwriter_impl.hxx:1303
_Bool vcl::PDFWriterImpl::setCurrentStructureElement(int)
vcl/inc/pdf/pdfwriter_impl.hxx:1304
_Bool vcl::PDFWriterImpl::setStructureAttribute(enum vcl::PDFWriter::StructAttribute,enum vcl::PDFWriter::StructAttributeValue)
vcl/inc/pdf/pdfwriter_impl.hxx:1305
_Bool vcl::PDFWriterImpl::setStructureAttributeNumerical(enum vcl::PDFWriter::StructAttribute,int)
vcl/inc/ppdparser.hxx:195
_Bool psp::PPDParser::getPaperDimension(std::basic_string_view<char16_t>,int &,int &) const
vcl/inc/ppdparser.hxx:203
_Bool psp::PPDParser::getMargins(std::basic_string_view<char16_t>,int &,int &,int &,int &) const
vcl/inc/qt5/QtAccessibleWidget.hxx:58
QString QtAccessibleWidget::tr(const char *,const char *,int)
vcl/inc/qt5/QtAccessibleWidget.hxx:58
QString QtAccessibleWidget::trUtf8(const char *,const char *,int)
vcl/inc/qt5/QtClipboard.hxx:36
QString QtClipboard::tr(const char *,const char *,int)
vcl/inc/qt5/QtClipboard.hxx:36
QString QtClipboard::trUtf8(const char *,const char *,int)
vcl/inc/qt5/QtDoubleSpinBox.hxx:22
QString QtDoubleSpinBox::tr(const char *,const char *,int)
vcl/inc/qt5/QtDoubleSpinBox.hxx:22
QString QtDoubleSpinBox::trUtf8(const char *,const char *,int)
vcl/inc/qt5/QtExpander.hxx:18
QString QtExpander::tr(const char *,const char *,int)
vcl/inc/qt5/QtExpander.hxx:18
QString QtExpander::trUtf8(const char *,const char *,int)
vcl/inc/qt5/QtFilePicker.hxx:60
QString QtFilePicker::tr(const char *,const char *,int)
vcl/inc/qt5/QtFilePicker.hxx:60
QString QtFilePicker::trUtf8(const char *,const char *,int)
vcl/inc/qt5/QtFrame.hxx:72
QString QtFrame::tr(const char *,const char *,int)
vcl/inc/qt5/QtFrame.hxx:72
QString QtFrame::trUtf8(const char *,const char *,int)
vcl/inc/qt5/QtHyperlinkLabel.hxx:21
QString QtHyperlinkLabel::tr(const char *,const char *,int)
vcl/inc/qt5/QtHyperlinkLabel.hxx:21
QString QtHyperlinkLabel::trUtf8(const char *,const char *,int)
vcl/inc/qt5/QtInstance.hxx:68
QString QtInstance::tr(const char *,const char *,int)
vcl/inc/qt5/QtInstance.hxx:68
QString QtInstance::trUtf8(const char *,const char *,int)
vcl/inc/qt5/QtInstanceAssistant.hxx:34
QString QtInstanceAssistant::tr(const char *,const char *,int)
vcl/inc/qt5/QtInstanceAssistant.hxx:34
QString QtInstanceAssistant::trUtf8(const char *,const char *,int)
vcl/inc/qt5/QtInstanceBox.hxx:16
QString QtInstanceBox::tr(const char *,const char *,int)
vcl/inc/qt5/QtInstanceBox.hxx:16
QString QtInstanceBox::trUtf8(const char *,const char *,int)
vcl/inc/qt5/QtInstanceCheckButton.hxx:19
QString QtInstanceCheckButton::tr(const char *,const char *,int)
vcl/inc/qt5/QtInstanceCheckButton.hxx:19
QString QtInstanceCheckButton::trUtf8(const char *,const char *,int)
vcl/inc/qt5/QtInstanceComboBox.hxx:18
QString QtInstanceComboBox::tr(const char *,const char *,int)
vcl/inc/qt5/QtInstanceComboBox.hxx:18
QString QtInstanceComboBox::trUtf8(const char *,const char *,int)
vcl/inc/qt5/QtInstanceContainer.hxx:18
QString QtInstanceContainer::tr(const char *,const char *,int)
vcl/inc/qt5/QtInstanceContainer.hxx:18
QString QtInstanceContainer::trUtf8(const char *,const char *,int)
vcl/inc/qt5/QtInstanceDialog.hxx:20
QString QtInstanceDialog::tr(const char *,const char *,int)
vcl/inc/qt5/QtInstanceDialog.hxx:20
QString QtInstanceDialog::trUtf8(const char *,const char *,int)
vcl/inc/qt5/QtInstanceDrawingArea.hxx:18
QString QtInstanceDrawingArea::tr(const char *,const char *,int)
vcl/inc/qt5/QtInstanceDrawingArea.hxx:18
QString QtInstanceDrawingArea::trUtf8(const char *,const char *,int)
vcl/inc/qt5/QtInstanceEntry.hxx:18
QString QtInstanceEntry::tr(const char *,const char *,int)
vcl/inc/qt5/QtInstanceEntry.hxx:18
QString QtInstanceEntry::trUtf8(const char *,const char *,int)
vcl/inc/qt5/QtInstanceEntryTreeView.hxx:21
QString QtInstanceEntryTreeView::tr(const char *,const char *,int)
vcl/inc/qt5/QtInstanceEntryTreeView.hxx:21
QString QtInstanceEntryTreeView::trUtf8(const char *,const char *,int)
vcl/inc/qt5/QtInstanceExpander.hxx:17
QString QtInstanceExpander::tr(const char *,const char *,int)
vcl/inc/qt5/QtInstanceExpander.hxx:17
QString QtInstanceExpander::trUtf8(const char *,const char *,int)
vcl/inc/qt5/QtInstanceFormattedSpinButton.hxx:20
QString QtInstanceFormattedSpinButton::tr(const char *,const char *,int)
vcl/inc/qt5/QtInstanceFormattedSpinButton.hxx:20
QString QtInstanceFormattedSpinButton::trUtf8(const char *,const char *,int)
vcl/inc/qt5/QtInstanceGrid.hxx:18
QString QtInstanceGrid::tr(const char *,const char *,int)
vcl/inc/qt5/QtInstanceGrid.hxx:18
QString QtInstanceGrid::trUtf8(const char *,const char *,int)
vcl/inc/qt5/QtInstanceIconView.hxx:19
QString QtInstanceIconView::tr(const char *,const char *,int)
vcl/inc/qt5/QtInstanceIconView.hxx:19
QString QtInstanceIconView::trUtf8(const char *,const char *,int)
vcl/inc/qt5/QtInstanceImage.hxx:18
QString QtInstanceImage::tr(const char *,const char *,int)
vcl/inc/qt5/QtInstanceImage.hxx:18
QString QtInstanceImage::trUtf8(const char *,const char *,int)
vcl/inc/qt5/QtInstanceLabel.hxx:19
QString QtInstanceLabel::tr(const char *,const char *,int)
vcl/inc/qt5/QtInstanceLabel.hxx:19
QString QtInstanceLabel::trUtf8(const char *,const char *,int)
vcl/inc/qt5/QtInstanceLevelBar.hxx:18
QString QtInstanceLevelBar::tr(const char *,const char *,int)
vcl/inc/qt5/QtInstanceLevelBar.hxx:18
QString QtInstanceLevelBar::trUtf8(const char *,const char *,int)
vcl/inc/qt5/QtInstanceLinkButton.hxx:19
QString QtInstanceLinkButton::tr(const char *,const char *,int)
vcl/inc/qt5/QtInstanceLinkButton.hxx:19
QString QtInstanceLinkButton::trUtf8(const char *,const char *,int)
vcl/inc/qt5/QtInstanceMenu.hxx:18
QString QtInstanceMenu::tr(const char *,const char *,int)
vcl/inc/qt5/QtInstanceMenu.hxx:18
QString QtInstanceMenu::trUtf8(const char *,const char *,int)
vcl/inc/qt5/QtInstanceMenuButton.hxx:18
QString QtInstanceMenuButton::tr(const char *,const char *,int)
vcl/inc/qt5/QtInstanceMenuButton.hxx:18
QString QtInstanceMenuButton::trUtf8(const char *,const char *,int)
vcl/inc/qt5/QtInstanceMessageDialog.hxx:17
QString QtInstanceMessageDialog::tr(const char *,const char *,int)
vcl/inc/qt5/QtInstanceMessageDialog.hxx:17
QString QtInstanceMessageDialog::trUtf8(const char *,const char *,int)
vcl/inc/qt5/QtInstanceNotebook.hxx:21
QString QtInstanceNotebook::tr(const char *,const char *,int)
vcl/inc/qt5/QtInstanceNotebook.hxx:21
QString QtInstanceNotebook::trUtf8(const char *,const char *,int)
vcl/inc/qt5/QtInstancePopover.hxx:16
QString QtInstancePopover::tr(const char *,const char *,int)
vcl/inc/qt5/QtInstancePopover.hxx:16
QString QtInstancePopover::trUtf8(const char *,const char *,int)
vcl/inc/qt5/QtInstanceProgressBar.hxx:18
QString QtInstanceProgressBar::tr(const char *,const char *,int)
vcl/inc/qt5/QtInstanceProgressBar.hxx:18
QString QtInstanceProgressBar::trUtf8(const char *,const char *,int)
vcl/inc/qt5/QtInstanceRadioButton.hxx:19
QString QtInstanceRadioButton::tr(const char *,const char *,int)
vcl/inc/qt5/QtInstanceRadioButton.hxx:19
QString QtInstanceRadioButton::trUtf8(const char *,const char *,int)
vcl/inc/qt5/QtInstanceScale.hxx:18
QString QtInstanceScale::tr(const char *,const char *,int)
vcl/inc/qt5/QtInstanceScale.hxx:18
QString QtInstanceScale::trUtf8(const char *,const char *,int)
vcl/inc/qt5/QtInstanceScrollbar.hxx:18
QString QtInstanceScrollbar::tr(const char *,const char *,int)
vcl/inc/qt5/QtInstanceScrollbar.hxx:18
QString QtInstanceScrollbar::trUtf8(const char *,const char *,int)
vcl/inc/qt5/QtInstanceScrolledWindow.hxx:18
QString QtInstanceScrolledWindow::tr(const char *,const char *,int)
vcl/inc/qt5/QtInstanceScrolledWindow.hxx:18
QString QtInstanceScrolledWindow::trUtf8(const char *,const char *,int)
vcl/inc/qt5/QtInstanceSpinButton.hxx:21
QString QtInstanceSpinButton::tr(const char *,const char *,int)
vcl/inc/qt5/QtInstanceSpinButton.hxx:21
QString QtInstanceSpinButton::trUtf8(const char *,const char *,int)
vcl/inc/qt5/QtInstanceTextView.hxx:18
QString QtInstanceTextView::tr(const char *,const char *,int)
vcl/inc/qt5/QtInstanceTextView.hxx:18
QString QtInstanceTextView::trUtf8(const char *,const char *,int)
vcl/inc/qt5/QtInstanceToggleButton.hxx:18
QString QtInstanceToggleButton::tr(const char *,const char *,int)
vcl/inc/qt5/QtInstanceToggleButton.hxx:18
QString QtInstanceToggleButton::trUtf8(const char *,const char *,int)
vcl/inc/qt5/QtInstanceToolbar.hxx:18
QString QtInstanceToolbar::tr(const char *,const char *,int)
vcl/inc/qt5/QtInstanceToolbar.hxx:18
QString QtInstanceToolbar::trUtf8(const char *,const char *,int)
vcl/inc/qt5/QtInstanceTreeView.hxx:21
QString QtInstanceTreeView::tr(const char *,const char *,int)
vcl/inc/qt5/QtInstanceTreeView.hxx:21
QString QtInstanceTreeView::trUtf8(const char *,const char *,int)
vcl/inc/qt5/QtInstanceWidget.hxx:24
QString QtInstanceWidget::tr(const char *,const char *,int)
vcl/inc/qt5/QtInstanceWidget.hxx:24
QString QtInstanceWidget::trUtf8(const char *,const char *,int)
vcl/inc/qt5/QtInstanceWindow.hxx:17
QString QtInstanceWindow::tr(const char *,const char *,int)
vcl/inc/qt5/QtInstanceWindow.hxx:17
QString QtInstanceWindow::trUtf8(const char *,const char *,int)
vcl/inc/qt5/QtMainWindow.hxx:29
QString QtMainWindow::tr(const char *,const char *,int)
vcl/inc/qt5/QtMainWindow.hxx:29
QString QtMainWindow::trUtf8(const char *,const char *,int)
vcl/inc/qt5/QtMenu.hxx:42
QString QtMenu::tr(const char *,const char *,int)
vcl/inc/qt5/QtMenu.hxx:42
QString QtMenu::trUtf8(const char *,const char *,int)
vcl/inc/qt5/QtObject.hxx:36
QString QtObject::tr(const char *,const char *,int)
vcl/inc/qt5/QtObject.hxx:36
QString QtObject::trUtf8(const char *,const char *,int)
vcl/inc/qt5/QtTimer.hxx:27
QString QtTimer::tr(const char *,const char *,int)
vcl/inc/qt5/QtTimer.hxx:27
QString QtTimer::trUtf8(const char *,const char *,int)
vcl/inc/qt5/QtTransferable.hxx:117
QString QtMimeData::tr(const char *,const char *,int)
vcl/inc/qt5/QtTransferable.hxx:117
QString QtMimeData::trUtf8(const char *,const char *,int)
vcl/inc/qt5/QtWidget.hxx:37
QString QtWidget::tr(const char *,const char *,int)
vcl/inc/qt5/QtWidget.hxx:37
QString QtWidget::trUtf8(const char *,const char *,int)
vcl/inc/qt5/QtXAccessible.hxx:27
QString QtXAccessible::tr(const char *,const char *,int)
vcl/inc/qt5/QtXAccessible.hxx:27
QString QtXAccessible::trUtf8(const char *,const char *,int)
vcl/inc/salgdi.hxx:349
_Bool SalGraphics::UpdateSettings(AllSettings &)
vcl/inc/salgdi.hxx:351
_Bool SalGraphics::BlendBitmap(const struct SalTwoRect &,const SalBitmap &,const OutputDevice &)
vcl/inc/salgdi.hxx:471
_Bool SalGraphics::implDrawGradient(const basegfx::B2DPolyPolygon &,const struct SalGradient &)
vcl/inc/salinst.hxx:187
_Bool SalInstance::CallEventCallback(const void *,int)
vcl/inc/salprn.hxx:119
_Bool SalPrinter::EndJob()
vcl/inc/unx/gtk/gtkdata.hxx:273
int GtkSalDisplay::CaptureMouse(SalFrame *)
vcl/inc/unx/salframe.h:166
_Bool X11SalFrame::Dispatch(union _XEvent *)
vcl/source/control/imivctl.hxx:240
Size SvxIconChoiceCtrl_Impl::CalcBoundingSize() const
vcl/source/fontsubset/ttcr.hxx:106
int vcl::TrueTypeTable::GetRawData(struct vcl::TableEntry *)
vcl/unx/kf5/KFFilePicker.hxx:29
QString KFFilePicker::tr(const char *,const char *,int)
vcl/unx/kf5/KFFilePicker.hxx:29
QString KFFilePicker::trUtf8(const char *,const char *,int)
|