OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DeclRegion
(Results
1 - 5
of
5
) sorted by null
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
MemRegion.h
842
class
DeclRegion
: public TypedValueRegion {
846
DeclRegion
(const Decl *d, const MemRegion* sReg, Kind k)
862
class VarRegion : public
DeclRegion
{
867
:
DeclRegion
(vd, sReg, VarRegionKind) {}
871
DeclRegion
::ProfileRegion(ID, VD, superRegion, VarRegionKind);
927
class FieldRegion : public
DeclRegion
{
931
:
DeclRegion
(fd, sReg, FieldRegionKind) {}
945
DeclRegion
::ProfileRegion(ID, FD, superRegion, FieldRegionKind);
960
class ObjCIvarRegion : public
DeclRegion
{
[
all
...]
/external/clang/lib/StaticAnalyzer/Checkers/
ObjCSelfInitChecker.cpp
423
if (const
DeclRegion
*DR = dyn_cast<
DeclRegion
>(MRV.stripCasts()))
GenericTaintChecker.cpp
589
const
DeclRegion
*DeclReg = dyn_cast_or_null<
DeclRegion
>(Sm->getRegion());
/external/clang/lib/StaticAnalyzer/Core/
MemRegion.cpp
202
DefinedOrUnknownSVal Extent =
DeclRegion
::getExtent(svalBuilder);
230
:
DeclRegion
(ivd, sReg, ObjCIvarRegionKind) {}
318
DeclRegion
::ProfileRegion(ID, ivd, superRegion, ObjCIvarRegionKind);
321
void
DeclRegion
::ProfileRegion(llvm::FoldingSetNodeID& ID, const Decl *D,
328
void
DeclRegion
::Profile(llvm::FoldingSetNodeID& ID) const {
329
DeclRegion
::ProfileRegion(ID, D, superRegion, getKind());
[
all
...]
ExprEngineCallAndReturn.cpp
643
if (!Target || !isa<
DeclRegion
>(Target))
[
all
...]
Completed in 372 milliseconds