OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:prope
(Results
1 - 4
of
4
) sorted by null
/external/clang/lib/StaticAnalyzer/Core/
ObjCMessage.cpp
24
const ObjCPropertyRefExpr *
propE
= cast<ObjCPropertyRefExpr>(MsgOrPropE);
27
return
propE
->getType();
34
const ObjCPropertyRefExpr *
propE
= cast<ObjCPropertyRefExpr>(MsgOrPropE);
36
return
propE
->getSetterSelector();
37
return
propE
->getGetterSelector();
46
const ObjCPropertyRefExpr *
propE
= cast<ObjCPropertyRefExpr>(MsgOrPropE);
49
if (
propE
->isImplicitProperty()) {
51
return
propE
->getImplicitPropertySetter()->getMethodFamily();
53
return
propE
->getImplicitPropertyGetter()->getMethodFamily();
57
const ObjCPropertyDecl *prop =
propE
->getExplicitProperty()
[
all
...]
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ObjCMessage.h
83
const ObjCPropertyRefExpr *
propE
= cast<ObjCPropertyRefExpr>(MsgOrPropE);
84
if (
propE
->isObjectReceiver())
85
return
propE
->getBase();
93
const ObjCPropertyRefExpr *
propE
= cast<ObjCPropertyRefExpr>(MsgOrPropE);
95
return
propE
->isObjectReceiver() ||
propE
->isSuperReceiver();
152
ObjCPropertyGetter(const ObjCPropertyRefExpr *
propE
, const Expr *originE)
153
: ObjCMessage(
propE
, originE, false, SVal()) {
154
assert(
propE
&& originE &&
161
ObjCPropertySetter(const ObjCPropertyRefExpr *
propE
, const Expr *storeE
[
all
...]
/external/clang/lib/ARCMigrate/
TransRetainReleaseDealloc.cpp
164
if (ObjCPropertyRefExpr *
propE
= dyn_cast<ObjCPropertyRefExpr>(E))
165
return
propE
->getGetterSelector() == DelegateSel;
TransProperties.cpp
72
propE
= iface->prop_end(); propI !=
propE
; ++propI) {
Completed in 222 milliseconds