diff options
119 files changed, 209 insertions, 209 deletions
diff --git a/include/clang/Analysis/DomainSpecific/CocoaConventions.h b/include/clang/Analysis/DomainSpecific/CocoaConventions.h index 0212cbfb8b..18e81fed79 100644 --- a/include/clang/Analysis/DomainSpecific/CocoaConventions.h +++ b/include/clang/Analysis/DomainSpecific/CocoaConventions.h @@ -17,7 +17,7 @@ #include "clang/AST/Type.h" namespace clang { -namespace GR { +namespace ento { namespace cocoa { enum NamingConvention { NoConvention, CreateRule, InitRule }; diff --git a/include/clang/GR/AnalysisConsumer.h b/include/clang/GR/AnalysisConsumer.h index 805638867f..86f6c727a4 100644 --- a/include/clang/GR/AnalysisConsumer.h +++ b/include/clang/GR/AnalysisConsumer.h @@ -23,7 +23,7 @@ class AnalyzerOptions; class ASTConsumer; class Preprocessor; -namespace GR { +namespace ento { /// CreateAnalysisConsumer - Creates an ASTConsumer to run various code /// analysis passes. (The set of analyses run is controlled by command-line diff --git a/include/clang/GR/BugReporter/BugReporter.h b/include/clang/GR/BugReporter/BugReporter.h index 31487b6eb6..7d2dffae75 100644 --- a/include/clang/GR/BugReporter/BugReporter.h +++ b/include/clang/GR/BugReporter/BugReporter.h @@ -30,7 +30,7 @@ class Diagnostic; class Stmt; class ParentMap; -namespace GR { +namespace ento { class PathDiagnostic; class PathDiagnosticPiece; diff --git a/include/clang/GR/BugReporter/BugType.h b/include/clang/GR/BugReporter/BugType.h index a18e59639c..854094977a 100644 --- a/include/clang/GR/BugReporter/BugType.h +++ b/include/clang/GR/BugReporter/BugType.h @@ -20,7 +20,7 @@ namespace clang { -namespace GR { +namespace ento { class ExplodedNode; class ExprEngine; diff --git a/include/clang/GR/BugReporter/PathDiagnostic.h b/include/clang/GR/BugReporter/PathDiagnostic.h index c19bb756b8..6d53c097d2 100644 --- a/include/clang/GR/BugReporter/PathDiagnostic.h +++ b/include/clang/GR/BugReporter/PathDiagnostic.h @@ -27,7 +27,7 @@ class Decl; class SourceManager; class Stmt; -namespace GR { +namespace ento { //===----------------------------------------------------------------------===// // High-level interface for handlers of path-sensitive diagnostics. diff --git a/include/clang/GR/Checkers/DereferenceChecker.h b/include/clang/GR/Checkers/DereferenceChecker.h index 2ac45bf9ba..f9cce9ca9c 100644 --- a/include/clang/GR/Checkers/DereferenceChecker.h +++ b/include/clang/GR/Checkers/DereferenceChecker.h @@ -20,7 +20,7 @@ namespace clang { -namespace GR { +namespace ento { class ExprEngine; class ExplodedNode; diff --git a/include/clang/GR/Checkers/LocalCheckers.h b/include/clang/GR/Checkers/LocalCheckers.h index d9352ee8bc..e0f002b6d0 100644 --- a/include/clang/GR/Chec |