#!/bin/bash # finds undocumented classes in the current directory (recursive) type -p doxygen >/dev/null || exit filter= quiet=n if [ "$1" = "-q" ]; then filter=">/dev/null" quiet=y shift fi doxygen=$(mktemp -d) eval doxygen -g $doxygen/doxygen.cfg $filter sed -i "/HTML_OUTPUT/s|html|$doxygen/html|" $doxygen/doxygen.cfg sed -i '/GENERATE_LATEX/s/= YES/= NO/' $doxygen/doxygen.cfg sed -i '/RECURSIVE/s/= NO/= YES/' $doxygen/doxygen.cfg # do we have any arguments? if [ -n "$*" ]; then sed -i "/^INPUT[^_]/s|=.*|= $*|" $doxygen/doxygen.cfg fi eval doxygen $doxygen/doxygen.cfg $filter 2> $doxygen/errors.txt if [ "$quiet" == "n" ]; then echo echo "The following classes are undocumented:" echo fi cat $doxygen/errors.txt|grep -i 'Warning: Compound.*is not documented' rm -rf $doxygen # vim:set shiftwidth=4 softtabstop=4 expandtab: -7-4-LTS'>distro/CN/libreoffice-7-4-LTS LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/include/jvmfwk
AgeCommit message (Expand)Author
2017-11-13Fix typosAndrea Gelmini
2017-10-23loplugin:includeform: jvmfwkStephan Bergmann
2017-06-18remove unused osl/mutex.hxx includesJochen Nitschke
2017-05-18Revert "Fix typos"Stephan Bergmann
2017-05-18Fix typosAndrea Gelmini
2017-04-13Simplify jfw_findAllJREsStephan Bergmann
2017-04-13Simplify passing options to jfw_startVMStephan Bergmann
2017-04-12Convert rtl_uString -> OUString in jfw_get/setVMParametersStephan Bergmann
2017-04-12Convert some rtl_uString -> OUString in jvmfwkStephan Bergmann
2017-04-11Calls to jvmfwk/framework.hxx must not pass in null, drop JFW_E_INVALID_ARGStephan Bergmann
2017-04-11sal_Bool -> boolStephan Bergmann
2017-04-11Let jfw_isVMRunning return the result; there are no error conditionsStephan Bergmann
2017-04-11sal_Bool -> boolStephan Bergmann
2017-04-11jfw_existJRE requires non-null args, never returns JFW_E_INVALID_ARGStephan Bergmann
2017-04-11sal_Bool -> boolStephan Bergmann
2017-04-11Use std::unique_ptr<JavaInfo> for lifecycle management in jvmfwk/framework.hxxStephan Bergmann
2017-03-25Fix typosAndrea Gelmini
2017-03-03Typo: requirments -> requirementsSamuel Mehrbrodt
2016-12-07Fix typo in comments: et -> edTakeshi Abe
2016-03-29Avoid reserved identifierStephan Bergmann
2016-03-10Fix memory leaksStephan Bergmann
2016-03-10No more need for jfw_freeJavaInfoStephan Bergmann
2016-03-10Turn JavaInfo sal_Sequence* member into rtl::ByteSequenceStephan Bergmann
2016-03-10Turn JavaInfo rtl_uString* members into OUStringStephan Bergmann
2016-03-10Manage JavaInfo instances via new/deleteStephan Bergmann
2016-03-10No need for SAL_CALL hereStephan Bergmann
2016-03-10No need for extern "C" hereStephan Bergmann
2016-03-10Avoid reserved identifier, remove unnecessary typedefStephan Bergmann
2016-03-09include/jvmfwk/*.h -> .hxx (only ever included from C++ code)Stephan Bergmann
2016-01-10Fix typosAndrea Gelmini
2015-10-27loplugin:unusedmethodsNoel Grandin
2015-07-03Fix typosAndrea Gelmini
2015-06-16Fix typosAndrea Gelmini
2014-12-20Typo: bootrap=>bootstrapJulien Nabet
2014-12-15fdo#83753: consider JAVA_HOME and PATH when selecting JREMichael Weghorn
2014-11-12Fix common typos. No automatic tools. Handmade…Andrea Gelmini
2014-10-09vendorplugin.h is jvmfwk-internal (and no need for extern "C")Stephan Bergmann
2014-10-09Remove unused JVMFWK_DLLPRIVATEStephan Bergmann
2014-10-09Remove jvmfwk plugin featureStephan Bergmann
2014-10-09UNO_JAVA_JFW_PLUGIN is long goneStephan Bergmann
2014-05-08Remove unused jfw_setJRELocationsStephan Bergmann
2013-12-20typo fixesAndras Timar
2013-11-09fdo#65108 inter-module includes <> include/jvmfwkNorbert Thiebaud
2013-10-30Avoid using gconftool. Atk provides a11y not Java on Unix.Michael Meeks