OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CompoundVal
(Results
1 - 8
of
8
) sorted by null
/external/clang/lib/StaticAnalyzer/Core/
SVals.cpp
162
nonloc::
CompoundVal
::iterator nonloc::
CompoundVal
::begin() const {
166
nonloc::
CompoundVal
::iterator nonloc::
CompoundVal
::end() const {
280
const nonloc::
CompoundVal
& C = castAs<nonloc::
CompoundVal
>();
281
os << "
compoundVal
{";
283
for (nonloc::
CompoundVal
::iterator I=C.begin(), E=C.end(); I!=E; ++I) {
RegionStore.cpp
519
/// Get bindings for the values in a struct and return a
CompoundVal
, used
[
all
...]
ProgramState.cpp
529
bool ScanReachableSymbols::scan(nonloc::
CompoundVal
val) {
530
for (nonloc::
CompoundVal
::iterator I=val.begin(), E=val.end(); I!=E; ++I)
593
if (Optional<nonloc::
CompoundVal
> X = val.getAs<nonloc::
CompoundVal
>())
BugReporterVisitors.cpp
275
V.getAs<nonloc::
CompoundVal
>())
[
all
...]
/external/clang/lib/StaticAnalyzer/Checkers/
NonNullParamChecker.cpp
94
if (Optional<nonloc::
CompoundVal
> CSV =
95
DV->getAs<nonloc::
CompoundVal
>()) {
96
nonloc::
CompoundVal
::iterator CSV_I = CSV->begin();
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SVals.h
410
class
CompoundVal
: public NonLoc {
413
explicit
CompoundVal
(const CompoundValData* D) : NonLoc(CompoundValKind, D) {}
426
CompoundVal
() {}
SValBuilder.h
212
return nonloc::
CompoundVal
(BasicVals.getCompoundValData(type, vals));
ProgramState.h
811
bool scan(nonloc::
CompoundVal
val);
Completed in 72 milliseconds