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
e6c20364
Kaydet (Commit)
e6c20364
authored
May 02, 2013
tarafından
Luboš Luňák
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
add const
Change-Id: I71236b9ca6300372ba00c85401cf19f6c0e7ac99
üst
da4aca09
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
28 additions
and
28 deletions
+28
-28
bodynotinblock.cxx
compilerplugins/clang/bodynotinblock.cxx
+1
-1
bodynotinblock.hxx
compilerplugins/clang/bodynotinblock.hxx
+1
-1
literalalternative.cxx
compilerplugins/clang/literalalternative.cxx
+2
-2
postfixincrementfix.cxx
compilerplugins/clang/postfixincrementfix.cxx
+1
-1
postfixincrementfix.hxx
compilerplugins/clang/postfixincrementfix.hxx
+1
-1
sallogareas.cxx
compilerplugins/clang/sallogareas.cxx
+3
-3
sallogareas.hxx
compilerplugins/clang/sallogareas.hxx
+2
-2
lclstaticfix.cxx
compilerplugins/clang/store/lclstaticfix.cxx
+1
-1
lclstaticfix.hxx
compilerplugins/clang/store/lclstaticfix.hxx
+1
-1
removeforwardstringdecl.cxx
compilerplugins/clang/store/removeforwardstringdecl.cxx
+1
-1
removeforwardstringdecl.hxx
compilerplugins/clang/store/removeforwardstringdecl.hxx
+1
-1
tutorial1.cxx
compilerplugins/clang/store/tutorial/tutorial1.cxx
+1
-1
tutorial1.hxx
compilerplugins/clang/store/tutorial/tutorial1.hxx
+1
-1
tutorial2.cxx
compilerplugins/clang/store/tutorial/tutorial2.cxx
+2
-2
tutorial2.hxx
compilerplugins/clang/store/tutorial/tutorial2.hxx
+1
-1
tutorial3.cxx
compilerplugins/clang/store/tutorial/tutorial3.cxx
+2
-2
tutorial3.hxx
compilerplugins/clang/store/tutorial/tutorial3.hxx
+1
-1
unusedcode.cxx
compilerplugins/clang/store/unusedcode.cxx
+3
-3
unusedvariablecheck.cxx
compilerplugins/clang/unusedvariablecheck.cxx
+1
-1
unusedvariablecheck.hxx
compilerplugins/clang/unusedvariablecheck.hxx
+1
-1
No files found.
compilerplugins/clang/bodynotinblock.cxx
Dosyayı görüntüle @
e6c20364
...
...
@@ -38,7 +38,7 @@ void BodyNotInBlock::run()
TraverseDecl
(
compiler
.
getASTContext
().
getTranslationUnitDecl
());
}
bool
BodyNotInBlock
::
VisitFunctionDecl
(
FunctionDecl
*
declaration
)
bool
BodyNotInBlock
::
VisitFunctionDecl
(
const
FunctionDecl
*
declaration
)
{
if
(
ignoreLocation
(
declaration
))
return
true
;
...
...
compilerplugins/clang/bodynotinblock.hxx
Dosyayı görüntüle @
e6c20364
...
...
@@ -23,7 +23,7 @@ class BodyNotInBlock
public
:
explicit
BodyNotInBlock
(
CompilerInstance
&
compiler
);
virtual
void
run
();
bool
VisitFunctionDecl
(
FunctionDecl
*
declaration
);
bool
VisitFunctionDecl
(
const
FunctionDecl
*
declaration
);
private
:
typedef
vector
<
const
Stmt
*
>
StmtParents
;
void
traverseStatement
(
const
Stmt
*
stmt
,
StmtParents
&
parents
);
...
...
compilerplugins/clang/literalalternative.cxx
Dosyayı görüntüle @
e6c20364
...
...
@@ -25,10 +25,10 @@ public:
virtual
void
run
()
{
TraverseDecl
(
compiler
.
getASTContext
().
getTranslationUnitDecl
());
}
bool
VisitCallExpr
(
CallExpr
*
expr
);
bool
VisitCallExpr
(
const
CallExpr
*
expr
);
};
bool
LiteralAlternative
::
VisitCallExpr
(
CallExpr
*
expr
)
{
bool
LiteralAlternative
::
VisitCallExpr
(
const
CallExpr
*
expr
)
{
if
(
ignoreLocation
(
expr
))
{
return
true
;
}
...
...
compilerplugins/clang/postfixincrementfix.cxx
Dosyayı görüntüle @
e6c20364
...
...
@@ -29,7 +29,7 @@ void PostfixIncrementFix::run()
TraverseDecl
(
compiler
.
getASTContext
().
getTranslationUnitDecl
());
}
bool
PostfixIncrementFix
::
VisitFunctionDecl
(
FunctionDecl
*
declaration
)
bool
PostfixIncrementFix
::
VisitFunctionDecl
(
const
FunctionDecl
*
declaration
)
{
if
(
ignoreLocation
(
declaration
))
return
true
;
...
...
compilerplugins/clang/postfixincrementfix.hxx
Dosyayı görüntüle @
e6c20364
...
...
@@ -23,7 +23,7 @@ class PostfixIncrementFix
public
:
explicit
PostfixIncrementFix
(
CompilerInstance
&
compiler
,
Rewriter
&
rewriter
);
virtual
void
run
();
bool
VisitFunctionDecl
(
FunctionDecl
*
declaration
);
bool
VisitFunctionDecl
(
const
FunctionDecl
*
declaration
);
private
:
typedef
std
::
vector
<
const
Stmt
*
>
StmtParents
;
void
fixPostfixOperator
(
const
CXXOperatorCallExpr
*
op
,
StmtParents
&
parents
);
...
...
compilerplugins/clang/sallogareas.cxx
Dosyayı görüntüle @
e6c20364
...
...
@@ -37,17 +37,17 @@ void SalLogAreas::run()
TraverseDecl
(
compiler
.
getASTContext
().
getTranslationUnitDecl
());
}
bool
SalLogAreas
::
VisitFunctionDecl
(
FunctionDecl
*
function
)
bool
SalLogAreas
::
VisitFunctionDecl
(
const
FunctionDecl
*
function
)
{
inFunction
=
function
;
return
true
;
}
bool
SalLogAreas
::
VisitCallExpr
(
CallExpr
*
call
)
bool
SalLogAreas
::
VisitCallExpr
(
const
CallExpr
*
call
)
{
if
(
ignoreLocation
(
call
))
return
true
;
if
(
FunctionDecl
*
func
=
call
->
getDirectCallee
())
if
(
const
FunctionDecl
*
func
=
call
->
getDirectCallee
())
{
// Optimize, getQualifiedNameAsString() is reportedly expensive.
if
(
func
->
getNumParams
()
==
4
&&
func
->
getIdentifier
()
!=
NULL
...
...
compilerplugins/clang/sallogareas.hxx
Dosyayı görüntüle @
e6c20364
...
...
@@ -25,8 +25,8 @@ class SalLogAreas
public
:
explicit
SalLogAreas
(
CompilerInstance
&
compiler
);
virtual
void
run
();
bool
VisitFunctionDecl
(
FunctionDecl
*
function
);
bool
VisitCallExpr
(
CallExpr
*
call
);
bool
VisitFunctionDecl
(
const
FunctionDecl
*
function
);
bool
VisitCallExpr
(
const
CallExpr
*
call
);
private
:
void
checkArea
(
StringRef
area
,
SourceLocation
location
);
void
readLogAreas
();
...
...
compilerplugins/clang/store/lclstaticfix.cxx
Dosyayı görüntüle @
e6c20364
...
...
@@ -29,7 +29,7 @@ void LclStaticFix::run()
TraverseDecl
(
compiler
.
getASTContext
().
getTranslationUnitDecl
());
}
bool
LclStaticFix
::
VisitFunctionDecl
(
FunctionDecl
*
declaration
)
bool
LclStaticFix
::
VisitFunctionDecl
(
const
FunctionDecl
*
declaration
)
{
if
(
ignoreLocation
(
declaration
))
return
true
;
...
...
compilerplugins/clang/store/lclstaticfix.hxx
Dosyayı görüntüle @
e6c20364
...
...
@@ -23,7 +23,7 @@ class LclStaticFix
public
:
explicit
LclStaticFix
(
CompilerInstance
&
compiler
,
Rewriter
&
rewriter
);
virtual
void
run
();
bool
VisitFunctionDecl
(
FunctionDecl
*
declaration
);
bool
VisitFunctionDecl
(
const
FunctionDecl
*
declaration
);
};
}
// namespace
...
...
compilerplugins/clang/store/removeforwardstringdecl.cxx
Dosyayı görüntüle @
e6c20364
...
...
@@ -29,7 +29,7 @@ void RemoveForwardStringDecl::run()
TraverseDecl
(
compiler
.
getASTContext
().
getTranslationUnitDecl
());
}
bool
RemoveForwardStringDecl
::
VisitNamespaceDecl
(
NamespaceDecl
*
declaration
)
bool
RemoveForwardStringDecl
::
VisitNamespaceDecl
(
const
NamespaceDecl
*
declaration
)
{
if
(
ignoreLocation
(
declaration
))
return
true
;
...
...
compilerplugins/clang/store/removeforwardstringdecl.hxx
Dosyayı görüntüle @
e6c20364
...
...
@@ -23,7 +23,7 @@ class RemoveForwardStringDecl
public
:
explicit
RemoveForwardStringDecl
(
CompilerInstance
&
compiler
,
Rewriter
&
rewriter
);
virtual
void
run
();
bool
VisitNamespaceDecl
(
NamespaceDecl
*
declaration
);
bool
VisitNamespaceDecl
(
const
NamespaceDecl
*
declaration
);
private
:
bool
tryRemoveStringForwardDecl
(
const
Decl
*
decl
);
};
...
...
compilerplugins/clang/store/tutorial/tutorial1.cxx
Dosyayı görüntüle @
e6c20364
...
...
@@ -35,7 +35,7 @@ void Tutorial1::run()
// This function is called for every return statement.
// Returning true means to continue with examining the AST, false means to stop (just always return true).
bool
Tutorial1
::
VisitReturnStmt
(
ReturnStmt
*
returnstmt
)
bool
Tutorial1
::
VisitReturnStmt
(
const
ReturnStmt
*
returnstmt
)
{
// Helper function from the LO base plugin class, call at the very beginning to ignore sources
// that should not be processed (e.g. system headers).
...
...
compilerplugins/clang/store/tutorial/tutorial1.hxx
Dosyayı görüntüle @
e6c20364
...
...
@@ -29,7 +29,7 @@ class Tutorial1
// The function that will be called to perform the actual action.
virtual
void
run
();
// Function from Clang, it will be called for every return statement in the source.
bool
VisitReturnStmt
(
ReturnStmt
*
returnstmt
);
bool
VisitReturnStmt
(
const
ReturnStmt
*
returnstmt
);
};
}
// namespace
...
...
compilerplugins/clang/store/tutorial/tutorial2.cxx
Dosyayı görüntüle @
e6c20364
...
...
@@ -33,7 +33,7 @@ void Tutorial2::run()
}
// This function is called for every if statement.
bool
Tutorial2
::
VisitIfStmt
(
IfStmt
*
ifstmt
)
bool
Tutorial2
::
VisitIfStmt
(
const
IfStmt
*
ifstmt
)
{
if
(
ignoreLocation
(
ifstmt
))
return
true
;
...
...
@@ -49,7 +49,7 @@ bool Tutorial2::VisitIfStmt( IfStmt* ifstmt )
if
(
isReturnFalse
(
ifstmt
->
getThen
()))
warn
=
ifstmt
->
getThen
();
// Check if the sub-statement is '{ return false; }'
else
if
(
CompoundStmt
*
compound
=
dyn_cast
<
CompoundStmt
>
(
ifstmt
->
getThen
()))
else
if
(
const
CompoundStmt
*
compound
=
dyn_cast
<
CompoundStmt
>
(
ifstmt
->
getThen
()))
{
if
(
compound
->
size
()
==
1
)
// one statement
if
(
isReturnFalse
(
*
compound
->
body_begin
()))
// check the one sub-statement
...
...
compilerplugins/clang/store/tutorial/tutorial2.hxx
Dosyayı görüntüle @
e6c20364
...
...
@@ -25,7 +25,7 @@ class Tutorial2
Tutorial2
(
CompilerInstance
&
compiler
);
virtual
void
run
();
// Will be called for every if statement.
bool
VisitIfStmt
(
IfStmt
*
ifstmt
);
bool
VisitIfStmt
(
const
IfStmt
*
ifstmt
);
private
:
// Helper function to check if the statement is 'return false;'.
bool
isReturnFalse
(
const
Stmt
*
stmt
);
...
...
compilerplugins/clang/store/tutorial/tutorial3.cxx
Dosyayı görüntüle @
e6c20364
...
...
@@ -31,7 +31,7 @@ void Tutorial3::run()
TraverseDecl
(
compiler
.
getASTContext
().
getTranslationUnitDecl
());
}
bool
Tutorial3
::
VisitIfStmt
(
IfStmt
*
ifstmt
)
bool
Tutorial3
::
VisitIfStmt
(
const
IfStmt
*
ifstmt
)
{
if
(
ignoreLocation
(
ifstmt
))
return
true
;
...
...
@@ -42,7 +42,7 @@ bool Tutorial3::VisitIfStmt( IfStmt* ifstmt )
// Modify the sub-statement if it is 'return false'.
modifyReturnFalse
(
ifstmt
->
getThen
());
// Modify the sub-statement if it is '{ return false; }'.
if
(
CompoundStmt
*
compound
=
dyn_cast
<
CompoundStmt
>
(
ifstmt
->
getThen
()))
if
(
const
CompoundStmt
*
compound
=
dyn_cast
<
CompoundStmt
>
(
ifstmt
->
getThen
()))
{
if
(
compound
->
size
()
==
1
)
// one statement
modifyReturnFalse
(
*
compound
->
body_begin
());
...
...
compilerplugins/clang/store/tutorial/tutorial3.hxx
Dosyayı görüntüle @
e6c20364
...
...
@@ -26,7 +26,7 @@ class Tutorial3
Tutorial3
(
CompilerInstance
&
compiler
,
Rewriter
&
rewriter
);
virtual
void
run
();
// Will be called for every if statement.
bool
VisitIfStmt
(
IfStmt
*
ifstmt
);
bool
VisitIfStmt
(
const
IfStmt
*
ifstmt
);
private
:
// Helper function to check if the statement is 'return false;' and
// modify it if yes.
...
...
compilerplugins/clang/store/unusedcode.cxx
Dosyayı görüntüle @
e6c20364
...
...
@@ -30,7 +30,7 @@ class UnusedCode
public
:
explicit
UnusedCode
(
CompilerInstance
&
compiler
,
Rewriter
&
rewriter
);
virtual
void
run
();
bool
VisitFunctionDecl
(
FunctionDecl
*
declaration
);
bool
VisitFunctionDecl
(
const
FunctionDecl
*
declaration
);
};
UnusedCode
::
UnusedCode
(
CompilerInstance
&
compiler
,
Rewriter
&
rewriter
)
...
...
@@ -43,12 +43,12 @@ void UnusedCode::run()
TraverseDecl
(
compiler
.
getASTContext
().
getTranslationUnitDecl
());
}
bool
UnusedCode
::
VisitFunctionDecl
(
FunctionDecl
*
declaration
)
bool
UnusedCode
::
VisitFunctionDecl
(
const
FunctionDecl
*
declaration
)
{
if
(
ignoreLocation
(
declaration
))
return
true
;
bool
isUsed
=
declaration
->
isUsed
();
if
(
CXXMethodDecl
*
cxxmethod
=
dyn_cast
<
CXXMethodDecl
>
(
declaration
))
if
(
const
CXXMethodDecl
*
cxxmethod
=
dyn_cast
<
CXXMethodDecl
>
(
declaration
))
{
if
(
!
isUsed
&&
cxxmethod
->
isVirtual
())
{
// Virtual methods are used also if a method they override is used.
...
...
compilerplugins/clang/unusedvariablecheck.cxx
Dosyayı görüntüle @
e6c20364
...
...
@@ -40,7 +40,7 @@ void UnusedVariableCheck::run()
TraverseDecl
(
compiler
.
getASTContext
().
getTranslationUnitDecl
());
}
bool
UnusedVariableCheck
::
VisitVarDecl
(
VarDecl
*
var
)
bool
UnusedVariableCheck
::
VisitVarDecl
(
const
VarDecl
*
var
)
{
if
(
ignoreLocation
(
var
))
return
true
;
...
...
compilerplugins/clang/unusedvariablecheck.hxx
Dosyayı görüntüle @
e6c20364
...
...
@@ -23,7 +23,7 @@ class UnusedVariableCheck
public
:
explicit
UnusedVariableCheck
(
CompilerInstance
&
compiler
);
virtual
void
run
();
bool
VisitVarDecl
(
VarDecl
*
var
);
bool
VisitVarDecl
(
const
VarDecl
*
var
);
};
}
// namespace
...
...
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