forked from OSchip/llvm-project
Fixed/added namespace ending comments using clang-tidy. NFC
The patch is generated using this command: $ tools/extra/clang-tidy/tool/run-clang-tidy.py -fix \ -checks=-*,llvm-namespace-comment -header-filter='llvm/.*|clang/.*' \ work/llvm/tools/clang To reduce churn, not touching namespaces spanning less than 10 lines. llvm-svn: 240270
This commit is contained in:
parent
faf4b655ac
commit
3d9d929e42
|
@ -117,7 +117,7 @@ protected:
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
} // namespace
|
||||||
|
|
||||||
static FrontendPluginRegistry::Add<PrintFunctionNamesAction>
|
static FrontendPluginRegistry::Add<PrintFunctionNamesAction>
|
||||||
X("print-fns", "print function names");
|
X("print-fns", "print function names");
|
||||||
|
|
|
@ -70,7 +70,7 @@ protected:
|
||||||
bool BeginInvocation(CompilerInstance &CI) override;
|
bool BeginInvocation(CompilerInstance &CI) override;
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
} // namespace arcmt
|
||||||
}
|
} // namespace clang
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -290,6 +290,6 @@ namespace clang {
|
||||||
bool IsStructurallyEquivalent(QualType From, QualType To,
|
bool IsStructurallyEquivalent(QualType From, QualType To,
|
||||||
bool Complain = true);
|
bool Complain = true);
|
||||||
};
|
};
|
||||||
}
|
} // namespace clang
|
||||||
|
|
||||||
#endif // LLVM_CLANG_AST_ASTIMPORTER_H
|
#endif // LLVM_CLANG_AST_ASTIMPORTER_H
|
||||||
|
|
|
@ -75,6 +75,6 @@ inline DeclContext *getLambdaAwareParentOfDeclContext(DeclContext *DC) {
|
||||||
return DC->getParent();
|
return DC->getParent();
|
||||||
}
|
}
|
||||||
|
|
||||||
} // clang
|
} // namespace clang
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -400,5 +400,5 @@ void ASTVector<T>::grow(const ASTContext &C, size_t MinSize) {
|
||||||
Capacity.setPointer(Begin+NewCapacity);
|
Capacity.setPointer(Begin+NewCapacity);
|
||||||
}
|
}
|
||||||
|
|
||||||
} // end: clang namespace
|
} // namespace clang
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -82,6 +82,6 @@ template <> struct isPodLike<clang::BaseSubobject> {
|
||||||
static const bool value = true;
|
static const bool value = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
} // namespace llvm
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -659,7 +659,7 @@ CanProxy<Type> CanTypeIterator<InputIterator>::operator->() const {
|
||||||
return CanProxy<Type>(*this);
|
return CanProxy<Type>(*this);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
} // namespace clang
|
||||||
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -59,7 +59,7 @@ public:
|
||||||
operator NamedDecl*() const { return getDecl(); }
|
operator NamedDecl*() const { return getDecl(); }
|
||||||
NamedDecl *operator->() const { return getDecl(); }
|
NamedDecl *operator->() const { return getDecl(); }
|
||||||
};
|
};
|
||||||
}
|
} // namespace clang
|
||||||
|
|
||||||
// Take a moment to tell SmallVector that DeclAccessPair is POD.
|
// Take a moment to tell SmallVector that DeclAccessPair is POD.
|
||||||
namespace llvm {
|
namespace llvm {
|
||||||
|
|
|
@ -54,7 +54,7 @@ class Stmt;
|
||||||
class StoredDeclsMap;
|
class StoredDeclsMap;
|
||||||
class TranslationUnitDecl;
|
class TranslationUnitDecl;
|
||||||
class UsingDirectiveDecl;
|
class UsingDirectiveDecl;
|
||||||
}
|
} // namespace clang
|
||||||
|
|
||||||
namespace clang {
|
namespace clang {
|
||||||
|
|
||||||
|
@ -1799,7 +1799,7 @@ struct cast_convert_decl_context<ToTy, true> {
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
} // end clang.
|
} // namespace clang
|
||||||
|
|
||||||
namespace llvm {
|
namespace llvm {
|
||||||
|
|
||||||
|
|
|
@ -242,6 +242,6 @@ inline void CXXRecordDecl::pushFriendDecl(FriendDecl *FD) {
|
||||||
data().FirstFriend = FD;
|
data().FirstFriend = FD;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
} // namespace clang
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -134,7 +134,7 @@ public:
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
} // end clang namespace
|
} // namespace clang
|
||||||
|
|
||||||
namespace llvm {
|
namespace llvm {
|
||||||
// DeclGroupRef is "like a pointer", implement PointerLikeTypeTraits.
|
// DeclGroupRef is "like a pointer", implement PointerLikeTypeTraits.
|
||||||
|
@ -151,5 +151,5 @@ namespace llvm {
|
||||||
}
|
}
|
||||||
enum { NumLowBitsAvailable = 0 };
|
enum { NumLowBitsAvailable = 0 };
|
||||||
};
|
};
|
||||||
}
|
} // namespace llvm
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -184,6 +184,6 @@ inline DeclContext::ddiag_range DeclContext::ddiags() const {
|
||||||
return ddiag_range(ddiag_iterator(Map->FirstDiagnostic), ddiag_iterator());
|
return ddiag_range(ddiag_iterator(Map->FirstDiagnostic), ddiag_iterator());
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
} // namespace clang
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -124,6 +124,6 @@ public:
|
||||||
EvaluatedExprVisitorBase<make_const_ptr, ImplClass>(Context) { }
|
EvaluatedExprVisitorBase<make_const_ptr, ImplClass>(Context) { }
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
} // namespace clang
|
||||||
|
|
||||||
#endif // LLVM_CLANG_AST_EVALUATEDEXPRVISITOR_H
|
#endif // LLVM_CLANG_AST_EVALUATEDEXPRVISITOR_H
|
||||||
|
|
|
@ -467,7 +467,7 @@ struct PointerLikeTypeTraits<
|
||||||
NumLowBitsAvailable = PointerLikeTypeTraits<T>::NumLowBitsAvailable - 1
|
NumLowBitsAvailable = PointerLikeTypeTraits<T>::NumLowBitsAvailable - 1
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
} // namespace llvm
|
||||||
|
|
||||||
namespace clang {
|
namespace clang {
|
||||||
/// \brief Represents a lazily-loaded vector of data.
|
/// \brief Represents a lazily-loaded vector of data.
|
||||||
|
|
|
@ -240,6 +240,6 @@ public:
|
||||||
static MicrosoftMangleContext *create(ASTContext &Context,
|
static MicrosoftMangleContext *create(ASTContext &Context,
|
||||||
DiagnosticsEngine &Diags);
|
DiagnosticsEngine &Diags);
|
||||||
};
|
};
|
||||||
}
|
} // namespace clang
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -510,6 +510,6 @@ inline const DiagnosticBuilder &operator<<(const DiagnosticBuilder &DB,
|
||||||
return DB;
|
return DB;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
} // namespace clang
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -350,6 +350,6 @@ enum ObjCBridgeCastKind {
|
||||||
OBC_BridgeRetained
|
OBC_BridgeRetained
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
} // namespace clang
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -63,5 +63,5 @@ public:
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
} // end clang namespace
|
} // namespace clang
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -272,6 +272,6 @@ public:
|
||||||
bool isFirstDecl() const { return getFirstDecl() == this; }
|
bool isFirstDecl() const { return getFirstDecl() == this; }
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
} // namespace clang
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -67,7 +67,7 @@ namespace llvm {
|
||||||
|
|
||||||
template <>
|
template <>
|
||||||
struct isPodLike<clang::QualType> { static const bool value = true; };
|
struct isPodLike<clang::QualType> { static const bool value = true; };
|
||||||
}
|
} // namespace llvm
|
||||||
|
|
||||||
namespace clang {
|
namespace clang {
|
||||||
class ASTContext;
|
class ASTContext;
|
||||||
|
@ -1008,7 +1008,7 @@ private:
|
||||||
static DestructionKind isDestructedTypeImpl(QualType type);
|
static DestructionKind isDestructedTypeImpl(QualType type);
|
||||||
};
|
};
|
||||||
|
|
||||||
} // end clang.
|
} // namespace clang
|
||||||
|
|
||||||
namespace llvm {
|
namespace llvm {
|
||||||
/// Implement simplify_type for QualType, so that we can dyn_cast from QualType
|
/// Implement simplify_type for QualType, so that we can dyn_cast from QualType
|
||||||
|
|
|
@ -1952,6 +1952,6 @@ public:
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
}
|
} // namespace clang
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -74,6 +74,6 @@ namespace llvm {
|
||||||
return LHS == RHS;
|
return LHS == RHS;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
}
|
} // namespace llvm
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -157,6 +157,6 @@ public:
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
} // namespace clang
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -44,6 +44,6 @@ private:
|
||||||
void mapReachability(const CFGBlock *Dst);
|
void mapReachability(const CFGBlock *Dst);
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
} // namespace clang
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -260,6 +260,7 @@ namespace consumed {
|
||||||
/// exactly once.
|
/// exactly once.
|
||||||
void run(AnalysisDeclContext &AC);
|
void run(AnalysisDeclContext &AC);
|
||||||
};
|
};
|
||||||
}} // end namespace clang::consumed
|
} // namespace consumed
|
||||||
|
} // namespace clang
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -393,7 +393,7 @@ public:
|
||||||
static bool namedTypeToLengthModifier(QualType QT, LengthModifier &LM);
|
static bool namedTypeToLengthModifier(QualType QT, LengthModifier &LM);
|
||||||
};
|
};
|
||||||
|
|
||||||
} // end analyze_format_string namespace
|
} // namespace analyze_format_string
|
||||||
|
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
/// Pieces specific to fprintf format strings.
|
/// Pieces specific to fprintf format strings.
|
||||||
|
@ -529,7 +529,7 @@ public:
|
||||||
bool hasValidPrecision() const;
|
bool hasValidPrecision() const;
|
||||||
bool hasValidFieldWidth() const;
|
bool hasValidFieldWidth() const;
|
||||||
};
|
};
|
||||||
} // end analyze_printf namespace
|
} // namespace analyze_printf
|
||||||
|
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
/// Pieces specific to fscanf format strings.
|
/// Pieces specific to fscanf format strings.
|
||||||
|
@ -595,7 +595,7 @@ public:
|
||||||
static ScanfSpecifier Parse(const char *beg, const char *end);
|
static ScanfSpecifier Parse(const char *beg, const char *end);
|
||||||
};
|
};
|
||||||
|
|
||||||
} // end analyze_scanf namespace
|
} // namespace analyze_scanf
|
||||||
|
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
// Parsing and processing of format strings (both fprintf and fscanf).
|
// Parsing and processing of format strings (both fprintf and fscanf).
|
||||||
|
@ -665,6 +665,6 @@ bool ParseScanfString(FormatStringHandler &H,
|
||||||
const char *beg, const char *end, const LangOptions &LO,
|
const char *beg, const char *end, const LangOptions &LO,
|
||||||
const TargetInfo &Target);
|
const TargetInfo &Target);
|
||||||
|
|
||||||
} // end analyze_format_string namespace
|
} // namespace analyze_format_string
|
||||||
} // end clang namespace
|
} // namespace clang
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -109,7 +109,7 @@ public:
|
||||||
static PostOrderCFGView *create(AnalysisDeclContext &analysisContext);
|
static PostOrderCFGView *create(AnalysisDeclContext &analysisContext);
|
||||||
};
|
};
|
||||||
|
|
||||||
} // end clang namespace
|
} // namespace clang
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
@ -40,6 +40,6 @@ private:
|
||||||
bool Analyzed;
|
bool Analyzed;
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
} // namespace clang
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -64,6 +64,7 @@ unsigned ScanReachableFromBlock(const CFGBlock *Start,
|
||||||
void FindUnreachableCode(AnalysisDeclContext &AC, Preprocessor &PP,
|
void FindUnreachableCode(AnalysisDeclContext &AC, Preprocessor &PP,
|
||||||
Callback &CB);
|
Callback &CB);
|
||||||
|
|
||||||
}} // end namespace clang::reachable_code
|
} // namespace reachable_code
|
||||||
|
} // namespace clang
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -222,5 +222,6 @@ void threadSafetyCleanup(BeforeSet *Cache);
|
||||||
/// of access.
|
/// of access.
|
||||||
LockKind getLockKindFromAccessKind(AccessKind AK);
|
LockKind getLockKindFromAccessKind(AccessKind AK);
|
||||||
|
|
||||||
}} // end namespace clang::threadSafety
|
} // namespace threadSafety
|
||||||
|
} // namespace clang
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -100,9 +100,9 @@ bool LExpr::implies(const LExpr *RHS) const {
|
||||||
return lexpr::implies(this, RHS);
|
return lexpr::implies(this, RHS);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
} // namespace lexpr
|
||||||
}
|
} // namespace threadSafety
|
||||||
}
|
} // namespace clang
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
@ -122,5 +122,5 @@ void runUninitializedVariablesAnalysis(const DeclContext &dc, const CFG &cfg,
|
||||||
UninitVariablesHandler &handler,
|
UninitVariablesHandler &handler,
|
||||||
UninitVariablesAnalysisStats &stats);
|
UninitVariablesAnalysisStats &stats);
|
||||||
|
|
||||||
}
|
} // namespace clang
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -476,5 +476,5 @@ private:
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
} // end clang namespace
|
} // namespace clang
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -1109,5 +1109,5 @@ template <> struct GraphTraits<Inverse<const ::clang::CFG*> >
|
||||||
return F->nodes_end();
|
return F->nodes_end();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
} // end llvm namespace
|
} // namespace llvm
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -48,5 +48,5 @@ public:
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
} // end clang namespace
|
} // namespace clang
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -166,7 +166,7 @@ public:
|
||||||
void dump() const;
|
void dump() const;
|
||||||
};
|
};
|
||||||
|
|
||||||
} // end clang namespace
|
} // namespace clang
|
||||||
|
|
||||||
// Graph traits for iteration, viewing.
|
// Graph traits for iteration, viewing.
|
||||||
namespace llvm {
|
namespace llvm {
|
||||||
|
@ -248,6 +248,6 @@ template <> struct GraphTraits<const clang::CallGraph*> :
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
} // end llvm namespace
|
} // namespace llvm
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -41,6 +41,6 @@ public:
|
||||||
virtual Stmt *getBody(const FunctionDecl *D) = 0;
|
virtual Stmt *getBody(const FunctionDecl *D) = 0;
|
||||||
virtual Stmt *getBody(const ObjCMethodDecl *D) = 0;
|
virtual Stmt *getBody(const ObjCMethodDecl *D) = 0;
|
||||||
};
|
};
|
||||||
}
|
} // namespace clang
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -37,6 +37,7 @@ namespace coreFoundation {
|
||||||
bool followsCreateRule(const FunctionDecl *FD);
|
bool followsCreateRule(const FunctionDecl *FD);
|
||||||
}
|
}
|
||||||
|
|
||||||
}} // end: "clang:ento"
|
} // namespace ento
|
||||||
|
} // namespace clang
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -41,6 +41,6 @@ public:
|
||||||
/// return.
|
/// return.
|
||||||
bool isImplicitNoReturn(const ObjCMessageExpr *ME);
|
bool isImplicitNoReturn(const ObjCMessageExpr *ME);
|
||||||
};
|
};
|
||||||
}
|
} // namespace clang
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -240,5 +240,5 @@ void BumpVector<T>::grow(BumpVectorContext &C, size_t MinSize) {
|
||||||
Capacity = Begin+NewCapacity;
|
Capacity = Begin+NewCapacity;
|
||||||
}
|
}
|
||||||
|
|
||||||
} // end: clang namespace
|
} // namespace clang
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -44,8 +44,8 @@ enum ID {
|
||||||
/// to target-specific ones.
|
/// to target-specific ones.
|
||||||
typedef unsigned Map[Count];
|
typedef unsigned Map[Count];
|
||||||
|
|
||||||
}
|
} // namespace LangAS
|
||||||
|
|
||||||
}
|
} // namespace clang
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -189,6 +189,6 @@ private:
|
||||||
const char *Fmt) const;
|
const char *Fmt) const;
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
} // namespace Builtin
|
||||||
} // end namespace clang
|
} // end namespace clang
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -76,7 +76,7 @@ namespace clang {
|
||||||
Remark ///< A diagnostic that indicates normal progress through
|
Remark ///< A diagnostic that indicates normal progress through
|
||||||
///< compilation.
|
///< compilation.
|
||||||
};
|
};
|
||||||
}
|
} // namespace diag
|
||||||
|
|
||||||
class DiagnosticMapping {
|
class DiagnosticMapping {
|
||||||
unsigned Severity : 3;
|
unsigned Severity : 3;
|
||||||
|
|
|
@ -47,7 +47,7 @@ namespace llvm {
|
||||||
class raw_ostream;
|
class raw_ostream;
|
||||||
class raw_pwrite_stream;
|
class raw_pwrite_stream;
|
||||||
// TODO: DenseMap, ...
|
// TODO: DenseMap, ...
|
||||||
}
|
} // namespace llvm
|
||||||
|
|
||||||
|
|
||||||
namespace clang {
|
namespace clang {
|
||||||
|
|
|
@ -117,7 +117,7 @@ bool isOpenMPPrivate(OpenMPClauseKind Kind);
|
||||||
/// \return true - the clause is a threadprivate clause, otherwise - false.
|
/// \return true - the clause is a threadprivate clause, otherwise - false.
|
||||||
bool isOpenMPThreadPrivate(OpenMPClauseKind Kind);
|
bool isOpenMPThreadPrivate(OpenMPClauseKind Kind);
|
||||||
|
|
||||||
}
|
} // namespace clang
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
@ -41,7 +41,7 @@ namespace prec {
|
||||||
Multiplicative = 13, // *, /, %
|
Multiplicative = 13, // *, /, %
|
||||||
PointerToMember = 14 // .*, ->*
|
PointerToMember = 14 // .*, ->*
|
||||||
};
|
};
|
||||||
}
|
} // namespace prec
|
||||||
|
|
||||||
/// \brief Return the precedence of the specified binary operator token.
|
/// \brief Return the precedence of the specified binary operator token.
|
||||||
prec::Level getBinOpPrecedence(tok::TokenKind Kind, bool GreaterThanIsOperator,
|
prec::Level getBinOpPrecedence(tok::TokenKind Kind, bool GreaterThanIsOperator,
|
||||||
|
|
|
@ -113,7 +113,7 @@ inline void EmitRange(raw_ostream &o, const SourceManager &SM,
|
||||||
EmitLocation(o, SM, R.getEnd(), FM, indent + 1);
|
EmitLocation(o, SM, R.getEnd(), FM, indent + 1);
|
||||||
Indent(o, indent) << "</array>\n";
|
Indent(o, indent) << "</array>\n";
|
||||||
}
|
}
|
||||||
}
|
} // namespace markup
|
||||||
}
|
} // namespace clang
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -33,6 +33,6 @@ namespace clang {
|
||||||
: SM(sm), Loc(L), Message(Msg) {}
|
: SM(sm), Loc(L), Message(Msg) {}
|
||||||
void print(raw_ostream &OS) const override;
|
void print(raw_ostream &OS) const override;
|
||||||
};
|
};
|
||||||
}
|
} // namespace clang
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -44,7 +44,7 @@ enum SanitizerOrdinal : uint64_t {
|
||||||
const SanitizerMask ID##Group = 1ULL << SO_##ID##Group;
|
const SanitizerMask ID##Group = 1ULL << SO_##ID##Group;
|
||||||
#include "clang/Basic/Sanitizers.def"
|
#include "clang/Basic/Sanitizers.def"
|
||||||
|
|
||||||
}
|
} // namespace SanitizerKind
|
||||||
|
|
||||||
struct SanitizerSet {
|
struct SanitizerSet {
|
||||||
SanitizerSet();
|
SanitizerSet();
|
||||||
|
|
|
@ -423,7 +423,7 @@ namespace SrcMgr {
|
||||||
return E;
|
return E;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
} // end SrcMgr namespace.
|
} // namespace SrcMgr
|
||||||
|
|
||||||
/// \brief External source of source location entries.
|
/// \brief External source of source location entries.
|
||||||
class ExternalSLocEntrySource {
|
class ExternalSLocEntrySource {
|
||||||
|
|
|
@ -38,7 +38,7 @@ enum TemplateNameKind {
|
||||||
TNK_Dependent_template_name
|
TNK_Dependent_template_name
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
} // namespace clang
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -94,6 +94,6 @@ namespace clang {
|
||||||
UETT_AlignOf,
|
UETT_AlignOf,
|
||||||
UETT_VecStep
|
UETT_VecStep
|
||||||
};
|
};
|
||||||
}
|
} // namespace clang
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -77,6 +77,6 @@ namespace clang {
|
||||||
/// for use in the CPP __VERSION__ macro, which includes the clang version
|
/// for use in the CPP __VERSION__ macro, which includes the clang version
|
||||||
/// number, the repository version, and the vendor tag.
|
/// number, the repository version, and the vendor tag.
|
||||||
std::string getClangFullCPPVersion();
|
std::string getClangFullCPPVersion();
|
||||||
}
|
} // namespace clang
|
||||||
|
|
||||||
#endif // LLVM_CLANG_BASIC_VERSION_H
|
#endif // LLVM_CLANG_BASIC_VERSION_H
|
||||||
|
|
|
@ -136,6 +136,6 @@ public:
|
||||||
if (withVis) mergeVisibility(other);
|
if (withVis) mergeVisibility(other);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
}
|
} // namespace clang
|
||||||
|
|
||||||
#endif // LLVM_CLANG_BASIC_VISIBILITY_H
|
#endif // LLVM_CLANG_BASIC_VISIBILITY_H
|
||||||
|
|
|
@ -35,6 +35,6 @@ namespace clang {
|
||||||
const TargetOptions &TOpts, const LangOptions &LOpts,
|
const TargetOptions &TOpts, const LangOptions &LOpts,
|
||||||
StringRef TDesc, llvm::Module *M, BackendAction Action,
|
StringRef TDesc, llvm::Module *M, BackendAction Action,
|
||||||
raw_pwrite_stream *OS);
|
raw_pwrite_stream *OS);
|
||||||
}
|
} // namespace clang
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -98,6 +98,6 @@ public:
|
||||||
EmitObjAction(llvm::LLVMContext *_VMContext = nullptr);
|
EmitObjAction(llvm::LLVMContext *_VMContext = nullptr);
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
} // namespace clang
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -45,6 +45,6 @@ namespace clang {
|
||||||
const CodeGenOptions &CGO,
|
const CodeGenOptions &CGO,
|
||||||
llvm::LLVMContext& C,
|
llvm::LLVMContext& C,
|
||||||
CoverageSourceInfo *CoverageInfo = nullptr);
|
CoverageSourceInfo *CoverageInfo = nullptr);
|
||||||
}
|
} // namespace clang
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -168,8 +168,8 @@ private:
|
||||||
};
|
};
|
||||||
|
|
||||||
raw_ostream &operator<<(raw_ostream &OS, const MultilibSet &MS);
|
raw_ostream &operator<<(raw_ostream &OS, const MultilibSet &MS);
|
||||||
}
|
} // namespace driver
|
||||||
}
|
} // namespace clang
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
@ -42,10 +42,10 @@ enum ID {
|
||||||
LastOption
|
LastOption
|
||||||
#undef OPTION
|
#undef OPTION
|
||||||
};
|
};
|
||||||
}
|
} // namespace options
|
||||||
|
|
||||||
llvm::opt::OptTable *createDriverOptTable();
|
llvm::opt::OptTable *createDriverOptTable();
|
||||||
}
|
} // namespace driver
|
||||||
}
|
} // namespace clang
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -142,7 +142,7 @@ private:
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
} // namespace edit
|
||||||
|
|
||||||
} // end namespace clang
|
} // end namespace clang
|
||||||
|
|
||||||
|
|
|
@ -82,7 +82,7 @@ private:
|
||||||
FileEditsTy::iterator getActionForOffset(FileOffset Offs);
|
FileEditsTy::iterator getActionForOffset(FileOffset Offs);
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
} // namespace edit
|
||||||
|
|
||||||
} // end namespace clang
|
} // end namespace clang
|
||||||
|
|
||||||
|
|
|
@ -28,7 +28,7 @@ public:
|
||||||
virtual void remove(CharSourceRange range);
|
virtual void remove(CharSourceRange range);
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
} // namespace edit
|
||||||
|
|
||||||
} // end namespace clang
|
} // end namespace clang
|
||||||
|
|
||||||
|
|
|
@ -54,7 +54,7 @@ public:
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
} // namespace edit
|
||||||
|
|
||||||
} // end namespace clang
|
} // end namespace clang
|
||||||
|
|
||||||
|
|
|
@ -34,7 +34,7 @@ bool rewriteToObjCLiteralSyntax(const ObjCMessageExpr *Msg,
|
||||||
bool rewriteToObjCSubscriptSyntax(const ObjCMessageExpr *Msg,
|
bool rewriteToObjCSubscriptSyntax(const ObjCMessageExpr *Msg,
|
||||||
const NSAPI &NS, Commit &commit);
|
const NSAPI &NS, Commit &commit);
|
||||||
|
|
||||||
}
|
} // namespace edit
|
||||||
|
|
||||||
} // end namespace clang
|
} // end namespace clang
|
||||||
|
|
||||||
|
|
|
@ -53,6 +53,6 @@ std::unique_ptr<ASTConsumer> CreateASTViewer();
|
||||||
// to stderr; this is intended for debugging.
|
// to stderr; this is intended for debugging.
|
||||||
std::unique_ptr<ASTConsumer> CreateDeclContextPrinter();
|
std::unique_ptr<ASTConsumer> CreateDeclContextPrinter();
|
||||||
|
|
||||||
} // end clang namespace
|
} // namespace clang
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -67,6 +67,6 @@ public:
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
} // end namspace clang
|
} // namespace clang
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -51,7 +51,7 @@ public:
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
} // namespace clang
|
||||||
|
|
||||||
namespace llvm {
|
namespace llvm {
|
||||||
namespace cl {
|
namespace cl {
|
||||||
|
@ -81,7 +81,7 @@ namespace llvm {
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
} // namespace cl
|
||||||
}
|
} // namespace llvm
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -172,5 +172,5 @@ public:
|
||||||
virtual void emitNote(SourceLocation Loc, StringRef Message,
|
virtual void emitNote(SourceLocation Loc, StringRef Message,
|
||||||
const SourceManager *SM) = 0;
|
const SourceManager *SM) = 0;
|
||||||
};
|
};
|
||||||
} // end clang namespace
|
} // namespace clang
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -56,7 +56,7 @@ namespace frontend {
|
||||||
MigrateSource, ///< Run migrator.
|
MigrateSource, ///< Run migrator.
|
||||||
RunPreprocessorOnly ///< Just lex, no output.
|
RunPreprocessorOnly ///< Just lex, no output.
|
||||||
};
|
};
|
||||||
}
|
} // namespace frontend
|
||||||
|
|
||||||
enum InputKind {
|
enum InputKind {
|
||||||
IK_None,
|
IK_None,
|
||||||
|
|
|
@ -32,7 +32,7 @@ enum LangFeatures {
|
||||||
ImplicitInt = (1 << 11)
|
ImplicitInt = (1 << 11)
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
} // namespace frontend
|
||||||
|
|
||||||
/// LangStandard - Information about the properties of a particular language
|
/// LangStandard - Information about the properties of a particular language
|
||||||
/// standard.
|
/// standard.
|
||||||
|
|
|
@ -58,6 +58,6 @@ namespace clang {
|
||||||
/// \brief Dump the overridden layouts.
|
/// \brief Dump the overridden layouts.
|
||||||
void dump();
|
void dump();
|
||||||
};
|
};
|
||||||
}
|
} // namespace clang
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -27,5 +27,5 @@ public:
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
} // namespace clang
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -37,7 +37,7 @@ std::unique_ptr<DiagnosticConsumer> create(StringRef OutputFile,
|
||||||
DiagnosticOptions *Diags,
|
DiagnosticOptions *Diags,
|
||||||
bool MergeChildRecords = false);
|
bool MergeChildRecords = false);
|
||||||
|
|
||||||
} // end serialized_diags namespace
|
} // namespace serialized_diags
|
||||||
} // end clang namespace
|
} // namespace clang
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -120,8 +120,8 @@ protected:
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
} // end serialized_diags namespace
|
} // namespace serialized_diags
|
||||||
} // end clang namespace
|
} // namespace clang
|
||||||
|
|
||||||
namespace std {
|
namespace std {
|
||||||
template <>
|
template <>
|
||||||
|
|
|
@ -53,7 +53,7 @@ enum Level {
|
||||||
/// \brief The serialized diagnostics version number.
|
/// \brief The serialized diagnostics version number.
|
||||||
enum { VersionNumber = 2 };
|
enum { VersionNumber = 2 };
|
||||||
|
|
||||||
} // end serialized_diags namespace
|
} // namespace serialized_diags
|
||||||
} // end clang namespace
|
} // namespace clang
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -50,6 +50,6 @@ public:
|
||||||
void FlushDiagnostics(DiagnosticsEngine &Diags) const;
|
void FlushDiagnostics(DiagnosticsEngine &Diags) const;
|
||||||
};
|
};
|
||||||
|
|
||||||
} // end namspace clang
|
} // namespace clang
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -273,6 +273,6 @@ public:
|
||||||
const Diagnostic &Info) override;
|
const Diagnostic &Info) override;
|
||||||
};
|
};
|
||||||
|
|
||||||
} // end namspace clang
|
} // namespace clang
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -66,6 +66,6 @@ public:
|
||||||
virtual void CodeCompleteNaturalLanguage() { }
|
virtual void CodeCompleteNaturalLanguage() { }
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
} // namespace clang
|
||||||
|
|
||||||
#endif // LLVM_CLANG_LEX_CODECOMPLETIONHANDLER_H
|
#endif // LLVM_CLANG_LEX_CODECOMPLETIONHANDLER_H
|
||||||
|
|
|
@ -38,6 +38,6 @@ public:
|
||||||
virtual Module *getModule(unsigned ModuleID) = 0;
|
virtual Module *getModule(unsigned ModuleID) = 0;
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
} // namespace clang
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -38,7 +38,7 @@ namespace frontend {
|
||||||
ObjCXXSystem, ///< Like System, but only used for ObjC++.
|
ObjCXXSystem, ///< Like System, but only used for ObjC++.
|
||||||
After ///< Like System, but searched after the system directories.
|
After ///< Like System, but searched after the system directories.
|
||||||
};
|
};
|
||||||
}
|
} // namespace frontend
|
||||||
|
|
||||||
/// HeaderSearchOptions - Helper class for storing options related to the
|
/// HeaderSearchOptions - Helper class for storing options related to the
|
||||||
/// initialization of the HeaderSearch object.
|
/// initialization of the HeaderSearch object.
|
||||||
|
|
|
@ -124,6 +124,6 @@ public:
|
||||||
bool HadFatalFailure;
|
bool HadFatalFailure;
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
} // namespace clang
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -466,5 +466,5 @@ public:
|
||||||
module_iterator module_end() const { return Modules.end(); }
|
module_iterator module_end() const { return Modules.end(); }
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
} // namespace clang
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -67,6 +67,6 @@ namespace clang {
|
||||||
/// is literally 'L', 'u', 'U', or 'u8'.
|
/// is literally 'L', 'u', 'U', or 'u8'.
|
||||||
bool IsIdentifierStringPrefix(const Token &Tok) const;
|
bool IsIdentifierStringPrefix(const Token &Tok) const;
|
||||||
};
|
};
|
||||||
} // end clang namespace
|
} // namespace clang
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -75,7 +75,7 @@ namespace html {
|
||||||
/// reasonably close.
|
/// reasonably close.
|
||||||
void HighlightMacros(Rewriter &R, FileID FID, const Preprocessor &PP);
|
void HighlightMacros(Rewriter &R, FileID FID, const Preprocessor &PP);
|
||||||
|
|
||||||
} // end html namespace
|
} // namespace html
|
||||||
} // end clang namespace
|
} // namespace clang
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -43,6 +43,6 @@ std::unique_ptr<ASTConsumer> CreateHTMLPrinter(raw_ostream *OS,
|
||||||
bool SyntaxHighlight = true,
|
bool SyntaxHighlight = true,
|
||||||
bool HighlightMacros = true);
|
bool HighlightMacros = true);
|
||||||
|
|
||||||
} // end clang namespace
|
} // namespace clang
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -127,6 +127,6 @@ public:
|
||||||
void Diag(SourceLocation Loc, unsigned DiagID);
|
void Diag(SourceLocation Loc, unsigned DiagID);
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
} // namespace clang
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -98,6 +98,7 @@ public:
|
||||||
void PrintStats() const;
|
void PrintStats() const;
|
||||||
};
|
};
|
||||||
|
|
||||||
}} // end namespace clang::sema
|
} // namespace sema
|
||||||
|
} // namespace clang
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -291,7 +291,7 @@ public:
|
||||||
bool pool_empty() const { return Diagnostics.empty(); }
|
bool pool_empty() const { return Diagnostics.empty(); }
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
} // namespace sema
|
||||||
|
|
||||||
/// Add a diagnostic to the current delay pool.
|
/// Add a diagnostic to the current delay pool.
|
||||||
inline void Sema::DelayedDiagnostics::add(const sema::DelayedDiagnostic &diag) {
|
inline void Sema::DelayedDiagnostics::add(const sema::DelayedDiagnostic &diag) {
|
||||||
|
@ -300,6 +300,6 @@ inline void Sema::DelayedDiagnostics::add(const sema::DelayedDiagnostic &diag) {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
} // namespace clang
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -750,6 +750,6 @@ public:
|
||||||
iterator end() { return iterator(Decls.end()); }
|
iterator end() { return iterator(Decls.end()); }
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
} // namespace clang
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -53,6 +53,6 @@ struct ObjCMethodList {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
} // namespace clang
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -103,7 +103,7 @@ namespace clang {
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
}
|
} // namespace clang
|
||||||
|
|
||||||
namespace llvm {
|
namespace llvm {
|
||||||
template <class T>
|
template <class T>
|
||||||
|
@ -121,7 +121,7 @@ namespace llvm {
|
||||||
|
|
||||||
template <class T>
|
template <class T>
|
||||||
struct isPodLike<clang::OpaquePtr<T> > { static const bool value = true; };
|
struct isPodLike<clang::OpaquePtr<T> > { static const bool value = true; };
|
||||||
}
|
} // namespace llvm
|
||||||
|
|
||||||
namespace clang {
|
namespace clang {
|
||||||
// Basic
|
// Basic
|
||||||
|
@ -282,6 +282,6 @@ namespace clang {
|
||||||
assert(!R.isInvalid() && "operation was asserted to never fail!");
|
assert(!R.isInvalid() && "operation was asserted to never fail!");
|
||||||
return R.get();
|
return R.get();
|
||||||
}
|
}
|
||||||
}
|
} // namespace clang
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -209,6 +209,6 @@ namespace clang {
|
||||||
/// Retrieves the range of the given template parameter lists.
|
/// Retrieves the range of the given template parameter lists.
|
||||||
SourceRange getTemplateParamsRange(TemplateParameterList const *const *Params,
|
SourceRange getTemplateParamsRange(TemplateParameterList const *const *Params,
|
||||||
unsigned NumParams);
|
unsigned NumParams);
|
||||||
}
|
} // namespace clang
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -42,6 +42,6 @@ public:
|
||||||
void print(raw_ostream &OS) const override;
|
void print(raw_ostream &OS) const override;
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
} // namespace clang
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -198,7 +198,7 @@ namespace sema {
|
||||||
class LambdaScopeInfo;
|
class LambdaScopeInfo;
|
||||||
class PossiblyUnreachableDiag;
|
class PossiblyUnreachableDiag;
|
||||||
class TemplateDeductionInfo;
|
class TemplateDeductionInfo;
|
||||||
}
|
} // namespace sema
|
||||||
|
|
||||||
namespace threadSafety {
|
namespace threadSafety {
|
||||||
class BeforeSet;
|
class BeforeSet;
|
||||||
|
|
|
@ -43,6 +43,6 @@ namespace clang {
|
||||||
return Consumer->SemaConsumer;
|
return Consumer->SemaConsumer;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
}
|
} // namespace clang
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -87,5 +87,5 @@ struct ConversionFixItGenerator {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
} // endof namespace clang
|
} // namespace clang
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -31,6 +31,6 @@ Optional<unsigned> getStackIndexOfNearestEnclosingCaptureCapableLambda(
|
||||||
ArrayRef<const sema::FunctionScopeInfo *> FunctionScopes,
|
ArrayRef<const sema::FunctionScopeInfo *> FunctionScopes,
|
||||||
VarDecl *VarToCapture, Sema &S);
|
VarDecl *VarToCapture, Sema &S);
|
||||||
|
|
||||||
} // clang
|
} // namespace clang
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -513,6 +513,6 @@ namespace clang {
|
||||||
VarTemplatePartialSpecializationDecl *PartialSpec);
|
VarTemplatePartialSpecializationDecl *PartialSpec);
|
||||||
void InstantiateEnumDefinition(EnumDecl *Enum, EnumDecl *Pattern);
|
void InstantiateEnumDefinition(EnumDecl *Enum, EnumDecl *Pattern);
|
||||||
};
|
};
|
||||||
}
|
} // namespace clang
|
||||||
|
|
||||||
#endif // LLVM_CLANG_SEMA_TEMPLATE_H
|
#endif // LLVM_CLANG_SEMA_TEMPLATE_H
|
||||||
|
|
|
@ -355,6 +355,6 @@ public:
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
} // namespace clang
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -1481,7 +1481,7 @@ namespace clang {
|
||||||
};
|
};
|
||||||
|
|
||||||
/// @}
|
/// @}
|
||||||
}
|
} // namespace serialization
|
||||||
} // end namespace clang
|
} // end namespace clang
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue