OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DefaultVal
(Results
1 - 3
of
3
) sorted by null
/external/clang/lib/StaticAnalyzer/Core/
AnalyzerOptions.cpp
101
bool AnalyzerOptions::getBooleanOption(StringRef Name, bool
DefaultVal
) {
105
StringRef V(Config.GetOrCreateValue(Name, toString(
DefaultVal
)).getValue());
109
.Default(
DefaultVal
);
113
bool
DefaultVal
) {
115
V = getBooleanOption(Name,
DefaultVal
);
186
int AnalyzerOptions::getOptionAsInteger(StringRef Name, int
DefaultVal
) {
189
OS <<
DefaultVal
;
192
int Res =
DefaultVal
;
RegionStore.cpp
463
SVal
DefaultVal
);
[
all
...]
/external/clang/include/clang/StaticAnalyzer/Core/
AnalyzerOptions.h
245
/// If an option value is not provided, returns the given \p
DefaultVal
.
246
bool getBooleanOption(StringRef Name, bool
DefaultVal
);
249
bool getBooleanOption(Optional<bool> &V, StringRef Name, bool
DefaultVal
);
252
int getOptionAsInteger(StringRef Name, int
DefaultVal
);
Completed in 137 milliseconds