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
a5592360
Kaydet (Commit)
a5592360
authored
Şub 20, 2013
tarafından
Herbert Dürr
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
fix revised function names in lldb4aoo.py
üst
0baa51eb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
lldb4aoo.py
solenv/inc/lldb4aoo.py
+4
-4
No files found.
solenv/inc/lldb4aoo.py
Dosyayı görüntüle @
a5592360
...
@@ -45,7 +45,7 @@ def getinfo_for_rtl_uString( valobj, dict):
...
@@ -45,7 +45,7 @@ def getinfo_for_rtl_uString( valobj, dict):
s
=
(
u''
.
join
([
unichr
(
x
)
for
x
in
a
.
uint16s
]))
.
encode
(
'utf-8'
)
s
=
(
u''
.
join
([
unichr
(
x
)
for
x
in
a
.
uint16s
]))
.
encode
(
'utf-8'
)
return
'{refs=
%
d, len=
%
d, str="
%
s"}'
%
(
r
,
l
,
s
)
return
'{refs=
%
d, len=
%
d, str="
%
s"}'
%
(
r
,
l
,
s
)
def
getinfo_for_
rtl_
_ByteStringData
(
valobj
,
dict
):
def
getinfo_for__ByteStringData
(
valobj
,
dict
):
while
valobj
.
TypeIsPointerType
():
while
valobj
.
TypeIsPointerType
():
valobj
=
valobj
.
Dereference
()
valobj
=
valobj
.
Dereference
()
r
=
valobj
.
GetChildMemberWithName
(
'mnRefCount'
)
.
GetValueAsSigned
()
r
=
valobj
.
GetChildMemberWithName
(
'mnRefCount'
)
.
GetValueAsSigned
()
...
@@ -54,7 +54,7 @@ def getinfo_for_rtl__ByteStringData( valobj, dict):
...
@@ -54,7 +54,7 @@ def getinfo_for_rtl__ByteStringData( valobj, dict):
s
=
''
.
join
([
chr
(
x
)
for
x
in
a
.
uint8s
])
s
=
''
.
join
([
chr
(
x
)
for
x
in
a
.
uint8s
])
return
'{refs=
%
d, len=
%
d, str="
%
s"}'
%
(
r
,
l
,
s
)
return
'{refs=
%
d, len=
%
d, str="
%
s"}'
%
(
r
,
l
,
s
)
def
getinfo_for_
rtl_
_UniStringData
(
valobj
,
dict
):
def
getinfo_for__UniStringData
(
valobj
,
dict
):
while
valobj
.
TypeIsPointerType
():
while
valobj
.
TypeIsPointerType
():
valobj
=
valobj
.
Dereference
()
valobj
=
valobj
.
Dereference
()
r
=
valobj
.
GetChildMemberWithName
(
'mnRefCount'
)
.
GetValueAsSigned
()
r
=
valobj
.
GetChildMemberWithName
(
'mnRefCount'
)
.
GetValueAsSigned
()
...
@@ -72,11 +72,11 @@ def getinfo_for_rtl_OUString( valobj, dict):
...
@@ -72,11 +72,11 @@ def getinfo_for_rtl_OUString( valobj, dict):
d
=
valobj
.
GetChildMemberWithName
(
'pData'
)
d
=
valobj
.
GetChildMemberWithName
(
'pData'
)
return
d
.
Dereference
()
return
d
.
Dereference
()
def
getinfo_for_
rtl_
ByteString
(
valobj
,
dict
):
def
getinfo_for_ByteString
(
valobj
,
dict
):
d
=
valobj
.
GetChildMemberWithName
(
'mpData'
)
d
=
valobj
.
GetChildMemberWithName
(
'mpData'
)
return
d
.
Dereference
()
return
d
.
Dereference
()
def
getinfo_for_
rtl_
UniString
(
valobj
,
dict
):
def
getinfo_for_UniString
(
valobj
,
dict
):
d
=
valobj
.
GetChildMemberWithName
(
'mpData'
)
d
=
valobj
.
GetChildMemberWithName
(
'mpData'
)
return
d
.
Dereference
()
return
d
.
Dereference
()
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