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
388ce838
Kaydet (Commit)
388ce838
authored
Kas 08, 2012
tarafından
Kohei Yoshida
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Dump source data for each field re-constructd from the index array.
Change-Id: I863ec02853042662accc2005fa1cd9340f950740
üst
84ba49c5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
+10
-0
dpcache.cxx
sc/source/core/data/dpcache.cxx
+10
-0
No files found.
sc/source/core/data/dpcache.cxx
Dosyayı görüntüle @
388ce838
...
...
@@ -1117,6 +1117,13 @@ void dumpItems(const ScDPCache& rCache, long nDim, const ScDPCache::ItemsType& r
cout
<<
" "
<<
(
i
+
nOffset
)
<<
": "
<<
rCache
.
GetFormattedString
(
nDim
,
rItems
[
i
])
<<
endl
;
}
void
dumpSourceData
(
const
ScDPCache
&
rCache
,
long
nDim
,
const
ScDPCache
::
ItemsType
&
rItems
,
const
ScDPCache
::
IndexArrayType
&
rArray
)
{
ScDPCache
::
IndexArrayType
::
const_iterator
it
=
rArray
.
begin
(),
itEnd
=
rArray
.
end
();
for
(;
it
!=
itEnd
;
++
it
)
cout
<<
" '"
<<
rCache
.
GetFormattedString
(
nDim
,
rItems
[
*
it
])
<<
"'"
<<
endl
;
}
}
void
ScDPCache
::
Dump
()
const
...
...
@@ -1135,6 +1142,9 @@ void ScDPCache::Dump() const
cout
<<
" group item count: "
<<
fld
.
mpGroup
->
maItems
.
size
()
<<
endl
;
dumpItems
(
*
this
,
i
,
fld
.
mpGroup
->
maItems
,
fld
.
maItems
.
size
());
}
cout
<<
" source data (re-constructed):"
<<
endl
;
dumpSourceData
(
*
this
,
i
,
fld
.
maItems
,
fld
.
maData
);
}
}
...
...
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