#!/usr/bin/python # # Find the top 100 functions that are repeated in multiple .o files, so we can out-of-line those # # import subprocess from collections import defaultdict # the odd bash construction here is because some of the .o files returned by find are not object files # and I don't want xargs to stop when it hits an error a = subprocess.Popen("find instdir/program/ -name *.so | xargs echo nm --radix=d --size-sort --demangle | bash", stdout=subprocess.PIPE, shell=True) #xargs sh -c "somecommand || true" nameDict = defaultdict(int) with a.stdout as txt: for line in txt: line = line.strip() idx1 = line.find(" ") idx2 = line.find(" ", idx1 + 1) name = line[idx2:] nameDict[name] += 1 sizeDict = defaultdict(set) for k, v in nameDict.iteritems(): sizeDict[v].add(k) cnt = 0 for k in sorted(list(sizeDict), reverse=True): print k for v in sizeDict[k]: print v cnt += 1 if cnt > 100 : break #first = sorted(list(sizeDict))[-1] #print first #include/vcl/ITiledRenderable.hxx # why is gaLOKPointerMap declared inside this header? a/zeta-7-4'>distro/allotropia/zeta-7-4 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/sw/uiconfig/swriter/ui/columnpage.ui
AgeCommit message (Expand)Author
2022-03-08remove some member-of a11y relationsCaolán McNamara
2021-11-15add a rule to enforce always-show-image of True if an image is usedCaolán McNamara
2021-01-21remove deprecated [x|y]align property for CheckBoxes and RadioButtonsCaolán McNamara
2021-01-15replace stock button imagesCaolán McNamara
2021-01-15tdf#138848 add truncate-multiline to all GtkEntries and GtkSpinButtonsCaolán McNamara
2021-01-02drop deprecated GtkAlignment, move left/top-padding into child margin-start/topCaolán McNamara
2020-11-15add <!-- n-columns=1 n-rows=1 --> before every GtkGridCaolán McNamara
2020-10-22set all .ui min require version of gtk to 3.20Caolán McNamara
2020-09-10label property missingCaolán McNamara
2020-09-04tdf#118148 Extended tips for HC2/swriterOlivier Hallot
2020-08-05add some missing activates_defaultCaolán McNamara
2020-01-24Revert "lok: ui: more files to increase the 'step-increment'"Miklos Vajna
2020-01-23lok: ui: more files to increase the 'step-increment'Henry Castro
2019-10-21fix "invalid cast from 'GtkImage' to 'GtkLabel'" warningsCaolán McNamara
2019-10-21Column Dialog sort and sizegroup fixandreas kainz
2019-10-20fix "invalid cast from 'GtkImage' to 'GtkLabel'" warningsCaolán McNamara
2019-10-18use a size group to give all labels the same widthCaolán McNamara
2019-10-18tdf#127880 Columns in Writer dialog is HIG conformandreas kainz
2019-03-08set empty text for GtkMenuButtons which will later have textCaolán McNamara
2019-03-06hookup MenuButton::SetDropDown to GtkMenuButton draw-indicatorCaolán McNamara
2018-09-07weld writer page style dialog and SvxBorderBackgroundDlgCaolán McNamara
2018-09-06weld SwColumnPage and SwColumnDialogCaolán McNamara
2018-09-02tdf#119152 Hide Text Direction dropdown from Columns tab by defaultGabor Kelemen
2018-04-02drop the spurious invisible_char[_set] propertiesCaolán McNamara
2018-03-05Resolves: tdf#116188 set min version on all .ui files to 3.18Caolán McNamara
2018-01-26tdf#113239 Increase tick amount for spacing spinner to 0.1brian houston morrow
2017-12-11tdf#113959 Use svxlo-FrameDirectionListBox instead of ListBoxGabor Kelemen
2017-11-30tdf#113880 Fix a11y issues in tabs of the image properties dialogYousuf Philips
2017-07-21migrate to boost::gettextCaolán McNamara