Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
810f4a00
Kaydet (Commit)
810f4a00
authored
May 01, 2012
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
rework callcatcher makefile to build subsequentcheck tests
Change-Id: Idda0262e62e42817b8c0502a38ee16913495233c
üst
fc7333c7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
13 additions
and
43 deletions
+13
-43
Makefile
Makefile
+2
-2
propertysethelper.hxx
canvas/inc/canvas/propertysethelper.hxx
+0
-4
propertysethelper.cxx
canvas/source/tools/propertysethelper.cxx
+0
-7
callcatcher.Makefile
solenv/bin/callcatcher.Makefile
+9
-5
xmldiff.hxx
test/inc/test/xmldiff.hxx
+0
-2
diff.cxx
test/source/diff/diff.cxx
+0
-17
unusedcode.easy
unusedcode.easy
+2
-6
No files found.
Makefile
Dosyayı görüntüle @
810f4a00
...
...
@@ -477,11 +477,11 @@ docs:
findunusedcode
:
@
which callcatcher
>
/dev/null 2>&1
||
\
(
echo
"callcatcher not installed"
&&
false
)
@
sed
-e
s,
$$
INPATH,callcatcher,g
$(SRCDIR)
/config_host.mk
>
$(SRCDIR)
/config_host_callcatcher.mk
@
sed
-e
s,
$$
INPATH,callcatcher,g
$(SRCDIR)
/config_host.mk
|
sed
-e
s,
"export OOO_JUNIT_JAR=.*"
,
"export OOO_JUNIT_JAR="
,g
>
$(SRCDIR)
/config_host_callcatcher.mk
@
mkdir
-p
$(SRCDIR)
/solenv/callcatcher/bin
&&
\
ln
-sf
$(SRCDIR)
/solenv/
$(INPATH)
/bin/dmake
\
$(SRCDIR)
/solenv/callcatcher/bin/dmake
@
$(GNUMAKE)
-f
$(SOLARENV)
/bin/callcatcher.Makefile
@
$(GNUMAKE)
-f
$(SOLARENV)
/bin/callcatcher.Makefile
findunusedcode
@
grep
::.
*
\(
unusedcode.all
\
|
grep
-v
^Atom
\
|
grep
-v
^boost::
\
...
...
canvas/inc/canvas/propertysethelper.hxx
Dosyayı görüntüle @
810f4a00
...
...
@@ -106,10 +106,6 @@ namespace canvas
*/
PropertySetHelper
();
/** Create helper with given name/value map
*/
explicit
PropertySetHelper
(
const
InputMap
&
rMap
);
/** Init helper with new name/value map
@param rMap
...
...
canvas/source/tools/propertysethelper.cxx
Dosyayı görüntüle @
810f4a00
...
...
@@ -71,13 +71,6 @@ namespace canvas
{
}
PropertySetHelper
::
PropertySetHelper
(
const
InputMap
&
rMap
)
:
mpMap
(),
maMapEntries
()
{
initProperties
(
rMap
);
}
void
PropertySetHelper
::
initProperties
(
const
InputMap
&
rMap
)
{
mpMap
.
reset
();
...
...
solenv/bin/callcatcher.Makefile
Dosyayı görüntüle @
810f4a00
...
...
@@ -20,12 +20,16 @@ export LIBMGR:=callarchive $(LIBMGR)
endif
export dbglevel:=2
include $(SOLARENV)/gbuild/gbuild.mk
all
:
findunusedcode
:
cd instsetoo_native && \
$(SOLARENV)/bin/build.pl -P$(BUILD_NCPUS) --all -- -P$(GMAKE_PARALLELISM)
@callanalyse $(WORKDIR)/LinkTarget/*/* \
*/$(OUTPATH)/bin/* \
*/$(OUTPATH)/lib/* > unusedcode.all
$(SOLARENV)/bin/build.pl -P$(BUILD_NCPUS) --all -- -P$(GMAKE_PARALLELISM)
ooinstall -l $(DEVINSTALLDIR)/opt
$(GNUMAKE) -j $(GMAKE_PARALLELISM) $(GMAKE_OPTIONS) -f Makefile.post subsequentcheck
callanalyse \
$(WORKDIR)/LinkTarget/*/* \
*/$(OUTPATH)/bin/* \
*/$(OUTPATH)/lib/* > unusedcode.all
# vim: set noet sw=4 ts=4:
test/inc/test/xmldiff.hxx
Dosyayı görüntüle @
810f4a00
...
...
@@ -80,8 +80,6 @@ struct tolerance
class
OOO_DLLPUBLIC_TEST
XMLDiff
{
public
:
XMLDiff
(
const
std
::
string
&
file1
,
const
std
::
string
&
file2
,
const
std
::
string
&
toleranceFile
);
XMLDiff
(
const
std
::
string
&
file1
,
const
std
::
string
&
file2
);
XMLDiff
(
const
char
*
pFileName
,
const
char
*
pContent
,
int
size
,
const
char
*
pToleranceFileName
);
~
XMLDiff
();
...
...
test/source/diff/diff.cxx
Dosyayı görüntüle @
810f4a00
...
...
@@ -39,23 +39,6 @@
#include <cppunit/extensions/HelperMacros.h>
#endif
XMLDiff
::
XMLDiff
(
const
std
::
string
&
file1
,
const
std
::
string
&
file2
,
const
std
::
string
&
toleranceFile
)
{
xmlFile1
=
xmlParseFile
(
file1
.
c_str
());
xmlFile2
=
xmlParseFile
(
file2
.
c_str
());
xmlDocPtr
xmlToleranceFile
=
xmlParseFile
(
toleranceFile
.
c_str
());
loadToleranceFile
(
xmlToleranceFile
);
xmlFreeDoc
(
xmlToleranceFile
);
}
XMLDiff
::
XMLDiff
(
const
std
::
string
&
file1
,
const
std
::
string
&
file2
)
{
xmlFile1
=
xmlParseFile
(
file1
.
c_str
());
xmlFile2
=
xmlParseFile
(
file2
.
c_str
());
}
XMLDiff
::
XMLDiff
(
const
char
*
pFileName
,
const
char
*
pContent
,
int
size
,
const
char
*
pToleranceFile
)
{
xmlFile1
=
xmlParseFile
(
pFileName
);
...
...
unusedcode.easy
Dosyayı görüntüle @
810f4a00
...
...
@@ -17,8 +17,6 @@ MSDffImportRecords::Insert(SvxMSDffImportRec* const&, unsigned short&)
MSDffImportRecords::Insert(SvxMSDffImportRec* const*, unsigned short)
MSDffImportRecords::Remove(SvxMSDffImportRec* const&, unsigned short)
MSDffImportRecords::Remove(unsigned short, unsigned short)
Matrix3d::Inverse() const
Matrix3d::Matrix3d()
PopupMenu::SetSelectedEntry(unsigned short)
PropBrwMgr::GetChildWindowId()
SanExtensionImpl::setCertExtn(com::sun::star::uno::Sequence<signed char>, com::sun::star::uno::Sequence<signed char>, unsigned char)
...
...
@@ -647,9 +645,10 @@ binfilter::_ZSortFlys::Remove(binfilter::_ZSortFly const&, unsigned short)
binfilter::_ZSortFlys_SAR::Replace(binfilter::_ZSortFly const&, unsigned short)
binfilter::_ZSortFlys_SAR::Replace(binfilter::_ZSortFly const*, unsigned short, unsigned short)
binfilter::_ZSortFlys_SAR::_ForEach(unsigned short, unsigned short, unsigned char (*)(binfilter::_ZSortFly const&, void*), void*)
cairocanvas::CanvasHelper::flush() const
cairocanvas::CanvasHelper::getPalette()
cairocanvas::SpriteDeviceHelper::getSurface()
cairocanvas::TextLayout::draw(_cairo*)
canvas::PropertySetHelper::PropertySetHelper(std::__debug::vector<canvas::tools::ValueMap<canvas::PropertySetHelper::Callbacks>::MapEntry, std::allocator<canvas::tools::ValueMap<canvas::PropertySetHelper::Callbacks>::MapEntry> > const&)
canvas::createSurfaceProxyManager(boost::shared_ptr<canvas::IRenderModule> const&)
canvas::tools::clipBlit(basegfx::B2IRange&, basegfx::B2IPoint&, basegfx::B2IRange const&, basegfx::B2IRange const&)
cmis::Content::exchangeIdentity(com::sun::star::uno::Reference<com::sun::star::ucb::XContentIdentifier> const&)
...
...
@@ -686,9 +685,6 @@ formula::FormulaListBox::FormulaListBox(Window*, long)
formula::FormulaTokenIterator::First()
jfw_plugin::VendorBase::createInstance()
jfw_plugin::VendorBase::getJavaExePaths(int*)
nullcanvas::CanvasFont::getFontMatrix() const
nullcanvas::CanvasHelper::flush() const
nullcanvas::CanvasHelper::getPalette()
nullcanvas::SpriteCanvasHelper::backgroundPaint(basegfx::B2DRange const&)
nullcanvas::SpriteCanvasHelper::genericUpdate(basegfx::B2DConnectedRanges<canvas::SpriteRedrawManager::SpriteInfo>::ConnectedComponents const&)
nullcanvas::SpriteCanvasHelper::opaqueUpdate(basegfx::B2DConnectedRanges<canvas::SpriteRedrawManager::SpriteInfo>::ConnectedComponents const&)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment