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
f0348fb4
Kaydet (Commit)
f0348fb4
authored
Agu 17, 2017
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
these comments no longer valid
Change-Id: I263116383a9342f9600d6cd1622a941afe83634e
üst
139be0f4
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
0 additions
and
10 deletions
+0
-10
countusersofdefaultparams.py
compilerplugins/clang/countusersofdefaultparams.py
+0
-2
expandablemethods.py
compilerplugins/clang/expandablemethods.py
+0
-2
unusedenumconstants.py
compilerplugins/clang/unusedenumconstants.py
+0
-2
unusedfields.py
compilerplugins/clang/unusedfields.py
+0
-2
unusedmethods.py
compilerplugins/clang/unusedmethods.py
+0
-2
No files found.
compilerplugins/clang/countusersofdefaultparams.py
Dosyayı görüntüle @
f0348fb4
...
...
@@ -13,8 +13,6 @@ normalizeTypeParamsRegex = re.compile(r"type-parameter-\d+-\d+")
def
normalizeTypeParams
(
line
):
return
normalizeTypeParamsRegex
.
sub
(
"type-parameter-?-?"
,
line
)
# The parsing here is designed to avoid grabbing stuff which is mixed in from gbuild.
# I have not yet found a way of suppressing the gbuild output.
with
io
.
open
(
"loplugin.countusersofdefaultparams.log"
,
"rb"
,
buffering
=
1024
*
1024
)
as
txt
:
for
line
in
txt
:
tokens
=
line
.
strip
()
.
split
(
"
\t
"
)
...
...
compilerplugins/clang/expandablemethods.py
Dosyayı görüntüle @
f0348fb4
...
...
@@ -25,8 +25,6 @@ def normalizeTypeParams( line ):
# primary input loop
# --------------------------------------------------------------------------------------------
# The parsing here is designed to avoid grabbing stuff which is mixed in from gbuild.
# I have not yet found a way of suppressing the gbuild output.
with
io
.
open
(
"loplugin.expandablemethods.log"
,
"rb"
,
buffering
=
1024
*
1024
)
as
txt
:
for
line
in
txt
:
tokens
=
line
.
strip
()
.
split
(
"
\t
"
)
...
...
compilerplugins/clang/unusedenumconstants.py
Dosyayı görüntüle @
f0348fb4
...
...
@@ -22,8 +22,6 @@ def parseFieldInfo( tokens ):
else
:
return
(
normalizeTypeParams
(
tokens
[
1
]),
""
)
# The parsing here is designed to avoid grabbing stuff which is mixed in from gbuild.
# I have not yet found a way of suppressing the gbuild output.
with
io
.
open
(
"loplugin.unusedenumconstants.log"
,
"rb"
,
buffering
=
1024
*
1024
)
as
txt
:
for
line
in
txt
:
tokens
=
line
.
strip
()
.
split
(
"
\t
"
)
...
...
compilerplugins/clang/unusedfields.py
Dosyayı görüntüle @
f0348fb4
...
...
@@ -26,8 +26,6 @@ def parseFieldInfo( tokens ):
else
:
return
(
normalizeTypeParams
(
tokens
[
1
]),
""
)
# The parsing here is designed to avoid grabbing stuff which is mixed in from gbuild.
# I have not yet found a way of suppressing the gbuild output.
with
io
.
open
(
"loplugin.unusedfields.log"
,
"rb"
,
buffering
=
1024
*
1024
)
as
txt
:
for
line
in
txt
:
tokens
=
line
.
strip
()
.
split
(
"
\t
"
)
...
...
compilerplugins/clang/unusedmethods.py
Dosyayı görüntüle @
f0348fb4
...
...
@@ -113,8 +113,6 @@ def normalizeTypeParams( line ):
# primary input loop
# --------------------------------------------------------------------------------------------
# The parsing here is designed to avoid grabbing stuff which is mixed in from gbuild.
# I have not yet found a way of suppressing the gbuild output.
with
io
.
open
(
"loplugin.unusedmethods.log"
,
"rb"
,
buffering
=
1024
*
1024
)
as
txt
:
for
line
in
txt
:
tokens
=
line
.
strip
()
.
split
(
"
\t
"
)
...
...
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