OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:evalComplement
(Results
1 - 3
of
3
) sorted by null
/external/clang/lib/StaticAnalyzer/Core/
SVals.cpp
208
nonloc::ConcreteInt::
evalComplement
(SValBuilder &svalBuilder) const {
SimpleSValBuilder.cpp
35
SVal
evalComplement
(NonLoc val) override;
196
SVal SimpleSValBuilder::
evalComplement
(NonLoc X) {
199
return X.castAs<nonloc::ConcreteInt>().
evalComplement
(*this);
[
all
...]
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ExprEngine.h
470
SVal
evalComplement
(SVal X) {
471
return X.isValid() ? svalBuilder.
evalComplement
(X.castAs<NonLoc>()) : X;
Completed in 164 milliseconds