OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getMethodFamily
(Results
1 - 17
of
17
) sorted by null
/external/clang/lib/StaticAnalyzer/Core/
ObjCMessage.cpp
40
ObjCMethodFamily ObjCMessage::
getMethodFamily
() const {
44
return msgE->
getMethodFamily
();
51
return propE->getImplicitPropertySetter()->
getMethodFamily
();
53
return propE->getImplicitPropertyGetter()->
getMethodFamily
();
60
return prop->getSetterMethodDecl()->
getMethodFamily
();
61
return prop->getSetterName().
getMethodFamily
();
64
return prop->getGetterMethodDecl()->
getMethodFamily
();
65
return prop->getGetterName().
getMethodFamily
();
/external/clang/lib/ARCMigrate/
TransRetainReleaseDealloc.cpp
57
switch (E->
getMethodFamily
()) {
78
(E->
getMethodFamily
() != OMF_retain || isRemovable(E))) {
87
(E->
getMethodFamily
() != OMF_retain || isRemovable(E))) {
95
if (E->
getMethodFamily
() == OMF_release && isDelegateMessage(rec)) {
128
if (E->
getMethodFamily
() == OMF_release &&
TransAutoreleasePool.cpp
54
if (E->
getMethodFamily
() != OMF_release)
356
if (ME->
getMethodFamily
() == OMF_new &&
361
ME->
getMethodFamily
() == OMF_init) {
364
if (recME->
getMethodFamily
() == OMF_alloc &&
383
return ME->
getMethodFamily
() == OMF_release ||
TransZeroOutPropsInDealloc.cpp
88
if (D->
getMethodFamily
() != OMF_dealloc)
TransEmptyStatementsAndDealloc.cpp
185
if (MD->
getMethodFamily
() == OMF_dealloc) {
Transforms.cpp
134
switch (ME->
getMethodFamily
()) {
/external/clang/lib/Analysis/
CocoaConventions.cpp
41
switch (MD && MD->hasAttr<ObjCMethodFamilyAttr>()? MD->
getMethodFamily
()
42
: S.
getMethodFamily
()) {
/external/clang/lib/StaticAnalyzer/Checkers/
ObjCSelfInitChecker.cpp
349
return MD->
getMethodFamily
() == OMF_init;
353
return msg.
getMethodFamily
() == OMF_init;
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ObjCMessage.h
75
ObjCMethodFamily
getMethodFamily
() const;
/external/clang/lib/Sema/
SemaExprObjC.cpp
193
switch (Sel.
getMethodFamily
()) {
[
all
...]
SemaDeclObjC.cpp
152
<< Overridden->
getMethodFamily
();
255
ObjCMethodFamily family = method->
getMethodFamily
();
357
switch (MDecl->
getMethodFamily
()) {
[
all
...]
SemaObjCProperty.cpp
[
all
...]
/external/clang/include/clang/AST/
ExprObjC.h
784
ObjCMethodFamily
getMethodFamily
() const {
785
if (HasMethod) return getMethodDecl()->
getMethodFamily
();
786
return getSelector().
getMethodFamily
();
[
all
...]
DeclObjC.h
298
ObjCMethodFamily
getMethodFamily
() const;
[
all
...]
/external/clang/lib/AST/
DeclObjC.cpp
403
ObjCMethodFamily ObjCMethodDecl::
getMethodFamily
() const {
424
family = getSelector().
getMethodFamily
();
517
if (
getMethodFamily
() != OMF_init) {
[
all
...]
/external/clang/include/clang/Basic/
IdentifierTable.h
604
///
getMethodFamily
- Derive the conventional family of this method.
605
ObjCMethodFamily
getMethodFamily
() const {
/external/clang/lib/CodeGen/
CGDecl.cpp
[
all
...]
Completed in 218 milliseconds