Changeset View
Changeset View
Standalone View
Standalone View
include/clang/StaticAnalyzer/Core/AnalyzerOptions.h
Show First 20 Lines • Show All 211 Lines • ▼ Show 20 Lines | private: | ||||
Optional<bool> IncludeTemporaryDtorsInCFG; | Optional<bool> IncludeTemporaryDtorsInCFG; | ||||
/// \sa IncludeLifetimeInCFG | /// \sa IncludeLifetimeInCFG | ||||
Optional<bool> IncludeLifetimeInCFG; | Optional<bool> IncludeLifetimeInCFG; | ||||
/// \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 182 Lines • ▼ Show 20 Lines | public: | ||||
/// Returns whether or not end-of-lifetime information should be included in | /// Returns whether or not end-of-lifetime information should be included in | ||||
/// the CFG. | /// the CFG. | ||||
/// | /// | ||||
/// This is controlled by the 'cfg-lifetime' config option, which accepts | /// This is controlled by the 'cfg-lifetime' config option, which accepts | ||||
/// the values "true" and "false". | /// the values "true" and "false". | ||||
bool includeLifetimeInCFG(); | bool includeLifetimeInCFG(); | ||||
/// 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 178 Lines • Show Last 20 Lines |