OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ImplD
(Results
1 - 17
of
17
) sorted by relevancy
/src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
ObjCPropertyChecker.cpp
56
const ObjCImplDecl *
ImplD
= nullptr;
59
ImplD
= IntD->getImplementation();
61
ImplD
= CatD->getClassInterface()->getImplementation();
64
if (!
ImplD
||
ImplD
->HasUserDeclaredSetterMethod(D))
IvarInvalidationChecker.cpp
359
visit(const ObjCImplementationDecl *
ImplD
) const {
366
const ObjCInterfaceDecl *InterfaceD =
ImplD
->getClassInterface();
432
const ObjCMethodDecl *D =
ImplD
->getMethod(InterfD->getSelector(),
484
const ObjCMethodDecl *D =
ImplD
->getMethod(InterfD->getSelector(),
/src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/
CompileOnDemandLayer.h
103
PerDylibResources(JITDylib &
ImplD
,
105
:
ImplD
(
ImplD
), ISMgr(std::move(ISMgr)) {}
106
JITDylib &getImplDylib() { return
ImplD
; }
110
JITDylib &
ImplD
;
/src/external/apache2/llvm/dist/clang/lib/ARCMigrate/
TransProperties.cpp
61
ObjCPropertyImplDecl *
ImplD
;
64
: PropD(propD), IvarD(nullptr),
ImplD
(nullptr) {}
107
ObjCPropertyImplDecl *
implD
= *I;
108
if (
implD
->getPropertyImplementation() != ObjCPropertyImplDecl::Synthesize)
110
ObjCPropertyDecl *propD =
implD
->getPropertyDecl();
113
ObjCIvarDecl *ivarD =
implD
->getPropertyIvarDecl();
124
I->
ImplD
=
implD
;
205
if (I->
ImplD
)
234
if (I->
ImplD
)
[
all
...]
ObjCMT.cpp
85
const ObjCImplementationDecl *
ImplD
);
1701
const ObjCImplementationDecl *
ImplD
) {
1703
const ObjCInterfaceDecl *IFace =
ImplD
->getClassInterface();
1709
for (const auto *MD :
ImplD
->instance_methods()) {
1932
ImplD
= dyn_cast<ObjCImplementationDecl>(*D)) {
1934
canModify(
ImplD
))
1935
inferDesignatedInitializers(Ctx,
ImplD
);
/src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/Orc/
CompileOnDemandLayer.cpp
189
auto &
ImplD
=
202
{&
ImplD
, JITDylibLookupFlags::MatchAllSymbols});
203
ImplD
.setLinkOrder(NewLinkOrder, false);
206
PerDylibResources PDR(
ImplD
, BuildIndirectStubsManager());
/src/external/apache2/llvm/dist/clang/lib/AST/
DeclObjC.cpp
499
if (const auto *
ImplD
= D->getImplementation()) {
500
for (const auto *MD :
ImplD
->instance_methods()) {
924
if (ObjCImplementationDecl *
ImplD
= Ctx.getObjCImplementation(IFD))
925
if (!
ImplD
->isInvalidDecl())
926
Redecl =
ImplD
->getMethod(getSelector(), isInstanceMethod());
929
if (ObjCCategoryImplDecl *
ImplD
= Ctx.getObjCImplementation(CD))
930
if (!
ImplD
->isInvalidDecl())
931
Redecl =
ImplD
->getMethod(getSelector(), isInstanceMethod());
933
} else if (auto *
ImplD
= dyn_cast<ObjCImplementationDecl>(CtxD)) {
934
if (ObjCInterfaceDecl *IFD =
ImplD
->getClassInterface()
[
all
...]
ASTContext.cpp
2820
ObjCImplementationDecl *
ImplD
) {
2821
assert(IFaceD &&
ImplD
&& "Passed null params");
2822
ObjCImpls[IFaceD] =
ImplD
;
2827
ObjCCategoryImplDecl *
ImplD
) {
2828
assert(CatD &&
ImplD
&& "Passed null params");
2829
ObjCImpls[CatD] =
ImplD
;
/src/external/apache2/llvm/dist/clang/tools/libclang/
CIndexHigh.cpp
84
if (const ObjCImplDecl *
ImplD
= dyn_cast<ObjCImplDecl>(D)) {
85
if (
ImplD
->getClassInterface())
86
return getCanonical(
ImplD
->getClassInterface());
CXIndexDataConsumer.cpp
1035
ImplD
= dyn_cast<ObjCImplementationDecl>(D)) {
1036
return getEntityDecl(
ImplD
->getClassInterface());
CIndex.cpp
6641
if (const ObjCImplDecl *
ImplD
= dyn_cast<ObjCImplDecl>(D))
6642
if (const ObjCInterfaceDecl *IFD =
ImplD
->getClassInterface())
/src/external/apache2/llvm/dist/clang/include/clang/AST/
ASTContext.h
2809
ObjCImplementationDecl *
ImplD
);
2813
ObjCCategoryImplDecl *
ImplD
);
DeclObjC.h
1326
void setImplementation(ObjCImplementationDecl *
ImplD
);
2324
void setImplementation(ObjCCategoryImplDecl *
ImplD
);
/src/external/apache2/llvm/dist/clang/lib/Sema/
SemaObjCProperty.cpp
2321
const ObjCImplementationDecl *
ImplD
,
2329
for (const auto *I :
ImplD
->instance_methods())
2353
Diag(
ImplD
->getLocation(),
SemaDeclObjC.cpp
5320
const ObjCImplementationDecl *
ImplD
) {
5324
for (const auto *CurMethod :
ImplD
->instance_methods()) {
/src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReader.cpp
7676
static void PassObjCImplDeclToConsumer(ObjCImplDecl *
ImplD
,
7678
assert(
ImplD
&& Consumer);
7680
for (auto *I :
ImplD
->methods())
7683
Consumer->HandleInterestingDecl(DeclGroupRef(
ImplD
));
7687
if (ObjCImplDecl *
ImplD
= dyn_cast<ObjCImplDecl>(D))
7688
PassObjCImplDeclToConsumer(
ImplD
, Consumer);
/src/external/apache2/llvm/dist/clang/include/clang/Sema/
Sema.h
4372
const ObjCImplementationDecl *
ImplD
);
4425
const ObjCImplementationDecl *
ImplD
,
Completed in 76 milliseconds
Indexes created Sat Jun 13 00:24:39 UTC 2026