#!/usr/bin/python import subprocess a = subprocess.Popen("git grep -P '^typedef\s+.+\s+\w+;' -- \"[!e][!x][!t]*\"", stdout=subprocess.PIPE, shell=True) with a.stdout as txt: for line in txt: idx2 = line.rfind(";") idx1 = line.rfind(" ", 0, idx2) typedefName = line[idx1+1 : idx2] if typedefName.startswith("*"): typedefName = typedefName[1:] # ignore anything less than 5 characters, it's probably a parsing error if len(typedefName) > 4: print typedefName o'/> index : lo/core
LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/sc/CppunitTest_sc_text_functions_test.mk
AgeCommit message (Expand)Author
2019-10-04add gbuild function for a common PCH and use it in sc/ and sax/Luboš Luňák
2018-05-31SwModule is a convenient (?) place for passing events to Automation clientsTor Lillqvist
2018-03-11Move (and rename) graphic stuff from svtools to vclTomaž Vajngerl
2017-04-21gbuild: Remove MSVC 2013 legacy codeDavid Ostrovsky
2016-11-30split the functions test in even more categoriesMarkus Mohrhard