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

  /external/clang/lib/AST/
DeclObjC.cpp     [all...]
  /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...]
SemaExpr.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/lib/ARCMigrate/
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...]

Completed in 327 milliseconds