Changeset View
Changeset View
Standalone View
Standalone View
include/clang/StaticAnalyzer/Core/AnalyzerOptions.h
Show First 20 Lines • Show All 214 Lines • ▼ Show 20 Lines | private: | ||||
Optional<bool> IncludeLifetimeInCFG; | Optional<bool> IncludeLifetimeInCFG; | ||||
/// \sa IncludeLoopExitInCFG | /// \sa IncludeLoopExitInCFG | ||||
Optional<bool> IncludeLoopExitInCFG; | Optional<bool> IncludeLoopExitInCFG; | ||||
/// \sa mayInlineCXXStandardLibrary | /// \sa mayInlineCXXStandardLibrary | ||||
Optional<bool> InlineCXXStandardLibrary; | Optional<bool> InlineCXXStandardLibrary; | ||||
/// \sa includeScopesInCFG | |||||
Optional<bool> IncludeScopesInCFG; | |||||
/// \sa mayInlineTemplateFunctions | /// \sa mayInlineTemplateFunctions | ||||
Optional<bool> InlineTemplateFunctions; | Optional<bool> InlineTemplateFunctions; | ||||
/// \sa mayInlineCXXAllocator | /// \sa mayInlineCXXAllocator | ||||
Optional<bool> InlineCXXAllocator; | Optional<bool> InlineCXXAllocator; | ||||
/// \sa mayInlineCXXContainerMethods | /// \sa mayInlineCXXContainerMethods | ||||
Optional<bool> InlineCXXContainerMethods; | Optional<bool> InlineCXXContainerMethods; | ||||
▲ Show 20 Lines • Show All 192 Lines • ▼ Show 20 Lines | public: | ||||
/// Returns whether or not the end of the loop information should be included | /// Returns whether or not the end of the loop information should be included | ||||
/// in the CFG. | /// in the CFG. | ||||
/// | /// | ||||
/// This is controlled by the 'cfg-loopexit' config option, which accepts | /// This is controlled by the 'cfg-loopexit' config option, which accepts | ||||
/// the values "true" and "false". | /// the values "true" and "false". | ||||
bool includeLoopExitInCFG(); | bool includeLoopExitInCFG(); | ||||
/// Returns whether or not scope information should be included in the CFG. | |||||
/// | |||||
/// This is controlled by the 'cfg-scope-info' config option, which accepts | |||||
/// the values "true" and "false". | |||||
bool includeScopesInCFG(); | |||||
/// Returns whether or not C++ standard library functions may be considered | /// Returns whether or not C++ standard library functions may be considered | ||||
/// for inlining. | /// for inlining. | ||||
/// | /// | ||||
/// This is controlled by the 'c++-stdlib-inlining' config option, which | /// This is controlled by the 'c++-stdlib-inlining' config option, which | ||||
/// accepts the values "true" and "false". | /// accepts the values "true" and "false". | ||||
bool mayInlineCXXStandardLibrary(); | bool mayInlineCXXStandardLibrary(); | ||||
/// Returns whether or not templated functions may be considered for inlining. | /// Returns whether or not templated functions may be considered for inlining. | ||||
▲ Show 20 Lines • Show All 182 Lines • Show Last 20 Lines |