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
00856ee8
Kaydet (Commit)
00856ee8
authored
Ock 25, 2012
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
callcatcher: update list
üst
905b8455
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
128 deletions
+4
-128
x_parse.hxx
autodoc/source/parser/inc/x_parse.hxx
+0
-66
x_parse.cxx
autodoc/source/parser/kernel/x_parse.cxx
+1
-62
unusedcode.easy
unusedcode.easy
+3
-0
No files found.
autodoc/source/parser/inc/x_parse.hxx
deleted
100644 → 0
Dosyayı görüntüle @
905b8455
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
*
* This file is part of OpenOffice.org.
*
* OpenOffice.org is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3
* only, as published by the Free Software Foundation.
*
* OpenOffice.org is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License version 3 for more details
* (a copy is included in the LICENSE file that accompanied this code).
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with OpenOffice.org. If not, see
* <http://www.openoffice.org/license.html>
* for a copy of the LGPLv3 License.
*
************************************************************************/
#ifndef ADC_X_PARSE_HXX
#define ADC_X_PARSE_HXX
// BASE CLASSES
#include <autodoc/x_parsing.hxx>
class
X_Parser
:
public
autodoc
::
X_Parser_Ifc
{
public
:
// LIFECYCLE
X_Parser
(
E_Event
i_eEvent
,
const
char
*
i_sObject
,
const
String
&
i_sCausingFile_FullPath
,
uintt
i_nCausingLineNr
);
~
X_Parser
();
// INQUIRY
virtual
E_Event
GetEvent
()
const
;
virtual
void
GetInfo
(
std
::
ostream
&
o_rOutputMedium
)
const
;
private
:
E_Event
eEvent
;
String
sObject
;
String
sCausingFile_FullPath
;
uintt
nCausingLineNr
;
};
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
autodoc/source/parser/kernel/x_parse.cxx
Dosyayı görüntüle @
00856ee8
...
@@ -27,68 +27,7 @@
...
@@ -27,68 +27,7 @@
************************************************************************/
************************************************************************/
#include <precomp.h>
#include <precomp.h>
#include <x_parse.hxx>
#include <autodoc/x_parsing.hxx>
// NOT FULLY DECLARED SERVICES
X_Parser
::
X_Parser
(
E_Event
i_eEvent
,
const
char
*
i_sObject
,
const
String
&
i_sCausingFile_FullPath
,
uintt
i_nCausingLineNr
)
:
eEvent
(
i_eEvent
),
sObject
(
i_sObject
),
sCausingFile_FullPath
(
i_sCausingFile_FullPath
),
nCausingLineNr
(
i_nCausingLineNr
)
{
}
X_Parser
::~
X_Parser
()
{
}
X_Parser
::
E_Event
X_Parser
::
GetEvent
()
const
{
return
eEvent
;
}
void
X_Parser
::
GetInfo
(
std
::
ostream
&
o_rOutputMedium
)
const
{
o_rOutputMedium
<<
"Error in file "
<<
sCausingFile_FullPath
<<
" in line "
<<
nCausingLineNr
<<
": "
;
switch
(
eEvent
)
{
case
x_InvalidChar
:
o_rOutputMedium
<<
"Unknown character '"
<<
sObject
<<
"'"
;
break
;
case
x_UnexpectedToken
:
o_rOutputMedium
<<
"Unexpected token
\"
"
<<
sObject
<<
"
\"
"
;
break
;
case
x_UnexpectedEOF
:
o_rOutputMedium
<<
"Unexpected end of file."
;
break
;
case
x_UnspecifiedSyntaxError
:
o_rOutputMedium
<<
"Unspecified syntax problem in file."
;
break
;
case
x_Any
:
default
:
o_rOutputMedium
<<
"Unspecified parsing exception."
;
}
// end switch
o_rOutputMedium
<<
Endl
();
}
std
::
ostream
&
std
::
ostream
&
operator
<<
(
std
::
ostream
&
o_rOut
,
operator
<<
(
std
::
ostream
&
o_rOut
,
...
...
unusedcode.easy
Dosyayı görüntüle @
00856ee8
...
@@ -891,8 +891,11 @@ basegfx::maximum(basegfx::B2DHomPoint const&, basegfx::B2DHomPoint const&)
...
@@ -891,8 +891,11 @@ basegfx::maximum(basegfx::B2DHomPoint const&, basegfx::B2DHomPoint const&)
basegfx::maximum(basegfx::B2ITuple const&, basegfx::B2ITuple const&)
basegfx::maximum(basegfx::B2ITuple const&, basegfx::B2ITuple const&)
basegfx::minimum(basegfx::B2DHomPoint const&, basegfx::B2DHomPoint const&)
basegfx::minimum(basegfx::B2DHomPoint const&, basegfx::B2DHomPoint const&)
basegfx::minimum(basegfx::B2ITuple const&, basegfx::B2ITuple const&)
basegfx::minimum(basegfx::B2ITuple const&, basegfx::B2ITuple const&)
basegfx::tools::addPointsAtCuts(basegfx::B2DPolygon const&)
basegfx::tools::addPointsAtCutsAndTouches(basegfx::B2DPolyPolygon const&, basegfx::B2DPolygon const&)
basegfx::tools::applyLineDashing(basegfx::B3DPolyPolygon const&, std::__debug::vector<double, std::allocator<double> > const&, basegfx::B3DPolyPolygon*, basegfx::B3DPolyPolygon*, double)
basegfx::tools::applyLineDashing(basegfx::B3DPolyPolygon const&, std::__debug::vector<double, std::allocator<double> > const&, basegfx::B3DPolyPolygon*, basegfx::B3DPolyPolygon*, double)
basegfx::tools::ciexyz2rgb(basegfx::BColor const&)
basegfx::tools::ciexyz2rgb(basegfx::BColor const&)
basegfx::tools::clipPolygonOnRange(basegfx::B3DPolygon const&, basegfx::B3DRange const&, bool, bool)
basegfx::tools::createPolygonFromRect(basegfx::B2DRange const&, double)
basegfx::tools::createPolygonFromRect(basegfx::B2DRange const&, double)
basegfx::tools::createShearXB2DHomMatrix(double)
basegfx::tools::createShearXB2DHomMatrix(double)
basegfx::tools::createShearYB2DHomMatrix(double)
basegfx::tools::createShearYB2DHomMatrix(double)
...
...
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