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
eedcc2c4
Kaydet (Commit)
eedcc2c4
authored
Kas 18, 2015
tarafından
Eike Rathke
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
cosmetics
Change-Id: Ic06bef4c80426b97a2613fe296ae0aa0ee55a215
üst
270f8ea4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
21 deletions
+21
-21
token.cxx
formula/source/core/api/token.cxx
+13
-13
token.hxx
include/formula/token.hxx
+8
-8
No files found.
formula/source/core/api/token.cxx
Dosyayı görüntüle @
eedcc2c4
...
...
@@ -331,10 +331,10 @@ bool FormulaToken::TextEqual( const FormulaToken& rToken ) const
sal_uInt8
FormulaByteToken
::
GetByte
()
const
{
return
nByte
;
}
void
FormulaByteToken
::
SetByte
(
sal_uInt8
n
)
{
nByte
=
n
;
}
bool
FormulaByteToken
::
IsInForceArray
()
const
{
return
bIsInForceArray
;
}
void
FormulaByteToken
::
SetInForceArray
(
bool
b
)
{
bIsInForceArray
=
b
;
}
sal_uInt8
FormulaByteToken
::
GetByte
()
const
{
return
nByte
;
}
void
FormulaByteToken
::
SetByte
(
sal_uInt8
n
)
{
nByte
=
n
;
}
bool
FormulaByteToken
::
IsInForceArray
()
const
{
return
bIsInForceArray
;
}
void
FormulaByteToken
::
SetInForceArray
(
bool
b
)
{
bIsInForceArray
=
b
;
}
bool
FormulaByteToken
::
operator
==
(
const
FormulaToken
&
r
)
const
{
return
FormulaToken
::
operator
==
(
r
)
&&
nByte
==
r
.
GetByte
()
&&
...
...
@@ -342,16 +342,16 @@ bool FormulaByteToken::operator==( const FormulaToken& r ) const
}
FormulaToken
*
FormulaFAPToken
::
GetFAPOrigToken
()
const
{
return
pOrigToken
.
get
();
}
FormulaToken
*
FormulaFAPToken
::
GetFAPOrigToken
()
const
{
return
pOrigToken
.
get
();
}
bool
FormulaFAPToken
::
operator
==
(
const
FormulaToken
&
r
)
const
{
return
FormulaByteToken
::
operator
==
(
r
)
&&
pOrigToken
==
r
.
GetFAPOrigToken
();
}
short
*
FormulaJumpToken
::
GetJump
()
const
{
return
pJump
;
}
bool
FormulaJumpToken
::
IsInForceArray
()
const
{
return
bIsInForceArray
;
}
void
FormulaJumpToken
::
SetInForceArray
(
bool
b
)
{
bIsInForceArray
=
b
;
}
short
*
FormulaJumpToken
::
GetJump
()
const
{
return
pJump
;
}
bool
FormulaJumpToken
::
IsInForceArray
()
const
{
return
bIsInForceArray
;
}
void
FormulaJumpToken
::
SetInForceArray
(
bool
b
)
{
bIsInForceArray
=
b
;
}
bool
FormulaJumpToken
::
operator
==
(
const
FormulaToken
&
r
)
const
{
return
FormulaToken
::
operator
==
(
r
)
&&
pJump
[
0
]
==
r
.
GetJump
()[
0
]
&&
...
...
@@ -1686,9 +1686,9 @@ bool FormulaIndexToken::operator==( const FormulaToken& r ) const
return
FormulaToken
::
operator
==
(
r
)
&&
nIndex
==
r
.
GetIndex
()
&&
mbGlobal
==
r
.
IsGlobal
();
}
const
OUString
&
FormulaExternalToken
::
GetExternal
()
const
{
return
aExternal
;
}
sal_uInt8
FormulaExternalToken
::
GetByte
()
const
{
return
nByte
;
}
void
FormulaExternalToken
::
SetByte
(
sal_uInt8
n
)
{
nByte
=
n
;
}
const
OUString
&
FormulaExternalToken
::
GetExternal
()
const
{
return
aExternal
;
}
sal_uInt8
FormulaExternalToken
::
GetByte
()
const
{
return
nByte
;
}
void
FormulaExternalToken
::
SetByte
(
sal_uInt8
n
)
{
nByte
=
n
;
}
bool
FormulaExternalToken
::
operator
==
(
const
FormulaToken
&
r
)
const
{
return
FormulaToken
::
operator
==
(
r
)
&&
nByte
==
r
.
GetByte
()
&&
...
...
@@ -1696,8 +1696,8 @@ bool FormulaExternalToken::operator==( const FormulaToken& r ) const
}
sal_uInt16
FormulaErrorToken
::
GetError
()
const
{
return
nError
;
}
void
FormulaErrorToken
::
SetError
(
sal_uInt16
nErr
)
{
nError
=
nErr
;
}
sal_uInt16
FormulaErrorToken
::
GetError
()
const
{
return
nError
;
}
void
FormulaErrorToken
::
SetError
(
sal_uInt16
nErr
)
{
nError
=
nErr
;
}
bool
FormulaErrorToken
::
operator
==
(
const
FormulaToken
&
r
)
const
{
return
FormulaToken
::
operator
==
(
r
)
&&
...
...
include/formula/token.hxx
Dosyayı görüntüle @
eedcc2c4
...
...
@@ -126,8 +126,8 @@ public:
const_cast
<
FormulaToken
*>
(
this
)
->
Delete
();
}
inline
oslInterlockedCount
GetRef
()
const
{
return
mnRefCnt
;
}
inline
OpCode
GetOpCode
()
const
{
return
eOp
;
}
inline
oslInterlockedCount
GetRef
()
const
{
return
mnRefCnt
;
}
inline
OpCode
GetOpCode
()
const
{
return
eOp
;
}
/**
Dummy methods to avoid switches and casts where possible,
...
...
@@ -150,23 +150,23 @@ public:
virtual
void
SetInForceArray
(
bool
b
);
virtual
double
GetDouble
()
const
;
virtual
double
&
GetDoubleAsReference
();
virtual
svl
::
SharedString
GetString
()
const
;
virtual
svl
::
SharedString
GetString
()
const
;
virtual
sal_uInt16
GetIndex
()
const
;
virtual
void
SetIndex
(
sal_uInt16
n
);
virtual
bool
IsGlobal
()
const
;
virtual
void
SetGlobal
(
bool
b
);
virtual
short
*
GetJump
()
const
;
virtual
const
OUString
&
GetExternal
()
const
;
virtual
const
OUString
&
GetExternal
()
const
;
virtual
FormulaToken
*
GetFAPOrigToken
()
const
;
virtual
sal_uInt16
GetError
()
const
;
virtual
void
SetError
(
sal_uInt16
);
virtual
const
ScSingleRefData
*
GetSingleRef
()
const
;
virtual
ScSingleRefData
*
GetSingleRef
();
virtual
const
ScSingleRefData
*
GetSingleRef
()
const
;
virtual
ScSingleRefData
*
GetSingleRef
();
virtual
const
ScComplexRefData
*
GetDoubleRef
()
const
;
virtual
ScComplexRefData
*
GetDoubleRef
();
virtual
const
ScSingleRefData
*
GetSingleRef2
()
const
;
virtual
ScSingleRefData
*
GetSingleRef2
();
virtual
const
ScSingleRefData
*
GetSingleRef2
()
const
;
virtual
ScSingleRefData
*
GetSingleRef2
();
virtual
const
ScMatrix
*
GetMatrix
()
const
;
virtual
ScMatrix
*
GetMatrix
();
virtual
ScJumpMatrix
*
GetJumpMatrix
()
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