Current Path : /compat/linux/proc/68247/root/usr/src/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/ |
FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64 |
Current File : //compat/linux/proc/68247/root/usr/src/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerOptInfo.h |
//===--- CheckerOptInfo.h - Specifies which checkers to use -----*- C++ -*-===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// #ifndef LLVM_CLANG_STATICANALYZER_CORE_CHECKEROPTINFO_H #define LLVM_CLANG_STATICANALYZER_CORE_CHECKEROPTINFO_H #include "clang/Basic/LLVM.h" namespace clang { namespace ento { /// Represents a request to include or exclude a checker or package from a /// specific analysis run. /// /// \sa CheckerRegistry::initializeManager class CheckerOptInfo { StringRef Name; bool Enable; bool Claimed; public: CheckerOptInfo(StringRef name, bool enable) : Name(name), Enable(enable), Claimed(false) { } StringRef getName() const { return Name; } bool isEnabled() const { return Enable; } bool isDisabled() const { return !isEnabled(); } bool isClaimed() const { return Claimed; } bool isUnclaimed() const { return !isClaimed(); } void claim() { Claimed = true; } }; } // end namespace ento } // end namespace clang #endif