HomeSort by relevance Sort by last modified time
    Searched refs:PDecl (Results 1 - 16 of 16) sorted by null

  /external/clang/lib/Sema/
SemaObjCProperty.cpp 348 ObjCPropertyDecl *PDecl =
351 PDecl->setPropertyAttributesAsWritten(
354 PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_readonly);
356 PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_readwrite);
358 PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_nonatomic);
360 PDecl->setPropertyAttributes(ObjCPropertyDecl::OBJC_PR_atomic);
362 PDecl->setGetterName(GetterSel);
363 PDecl->setSetterName(SetterSel);
364 ProcessDeclAttributes(S, PDecl, FD.D);
365 DC->addDecl(PDecl);
    [all...]
SemaDeclObjC.cpp 683 if (ObjCProtocolDecl *PDecl = LookupProtocol((*I)->getIdentifier(),
685 if (PDecl->getIdentifier() == PName) {
691 if (!PDecl->hasDefinition())
695 PDecl->getLocation(), PDecl->getReferencedProtocols()))
716 ObjCProtocolDecl *PDecl = nullptr;
726 PDecl = ObjCProtocolDecl::Create(Context, CurContext, ProtocolName,
729 PDecl->startDefinition();
741 PDecl = ObjCProtocolDecl::Create(Context, CurContext, ProtocolName,
745 PushOnScopeChains(PDecl, TUScope)
    [all...]
SemaExprObjC.cpp     [all...]
SemaExprMember.cpp 394 static Decl *FindGetterSetterNameDeclFromProtocolList(const ObjCProtocolDecl*PDecl,
399 if (ObjCPropertyDecl *PD = PDecl->FindPropertyDeclaration(Member))
401 if (ObjCMethodDecl *OMD = PDecl->getInstanceMethod(Sel))
404 for (const auto *I : PDecl->protocols()) {
    [all...]
SemaCodeComplete.cpp     [all...]
SemaDeclAttr.cpp     [all...]
SemaExpr.cpp     [all...]
  /external/clang/lib/AST/
DeclPrinter.cpp     [all...]
DeclObjC.cpp     [all...]
ASTContext.cpp 467 if (const ObjCPropertyDecl *PDecl = OMD->findPropertyDecl())
468 if (comments::FullComment *FC = getCommentForDecl(PDecl, PP))
    [all...]
  /external/clang/lib/ARCMigrate/
TransZeroOutPropsInDealloc.cpp 206 if (ObjCPropertyDecl *PDecl = PropRefExp->getExplicitProperty()) {
207 if (!SynthesizedProperties.count(PDecl))
ObjCMT.cpp 505 if (const ObjCProtocolDecl *PDecl = Protocol->getDefinition())
506 for (const auto *Property : PDecl->properties()) {
533 if (const ObjCProtocolDecl *PDecl = Protocol->getDefinition()) {
534 if (PDecl->meth_begin() == PDecl->meth_end())
536 for (const auto *MD : PDecl->methods()) {
737 ObjCProtocolDecl *PDecl = ConformingProtocols[i1];
738 if (PDecl == TargetPDecl)
740 if (PDecl->lookupProtocolNamed(
    [all...]
  /external/clang/lib/Rewrite/Frontend/
RewriteModernObjC.cpp     [all...]
RewriteObjC.cpp     [all...]
  /external/clang/include/clang/AST/
ExprObjC.h 684 const ObjCPropertyDecl *PDecl = getExplicitProperty();
685 if (const ObjCMethodDecl *Getter = PDecl->getGetterMethodDecl())
688 ResultType = PDecl->getType();
704 if (ObjCPropertyDecl *PDecl = getExplicitProperty())
705 if (const ObjCMethodDecl *Setter = PDecl->getSetterMethodDecl()) {
    [all...]
  /external/clang/include/clang/Sema/
Sema.h     [all...]

Completed in 2459 milliseconds