Searched defs:PD (Results 51 - 57 of 57) sorted by relevance

123

/external/clang/lib/Frontend/Rewrite/
H A DRewriteModernObjC.cpp736 } else if (ObjCProtocolDecl *PD = dyn_cast<ObjCProtocolDecl>(D)) {
737 if (PD->isThisDeclarationADefinition())
738 RewriteProtocolDecl(PD);
908 ObjCPropertyDecl *PD,
910 return getter ? !IMP->getInstanceMethod(PD->getGetterName())
911 : !IMP->getInstanceMethod(PD->getSetterName());
938 ObjCPropertyDecl *PD = PID->getPropertyDecl();
942 unsigned Attributes = PD->getPropertyAttributes();
943 if (mustSynthesizeSetterGetterMethod(IMD, PD, true /*getter*/)) {
955 PD
907 mustSynthesizeSetterGetterMethod(ObjCImplementationDecl *IMP, ObjCPropertyDecl *PD, bool getter) argument
7046 ObjCPropertyDecl *PD = Prop->getPropertyDecl(); local
7296 ObjCPropertyDecl *PD = Prop->getPropertyDecl(); local
[all...]
/external/clang/lib/Sema/
H A DSemaChecking.cpp8590 const PartialDiagnostic &PD) {
8609 SemaRef.Diag(E->getExprLoc(), PD);
8678 PartialDiagnostic PD = PDiag(DiagID) << E->getSourceRange() << Range local
8680 if (CheckForReference(*this, E, PD)) {
10252 const ObjCPropertyDecl *PD = PRE->getExplicitProperty(); local
10253 if (PD)
10254 LHSType = PD->getType();
10277 const ObjCPropertyDecl *PD = PRE->getExplicitProperty(); local
10278 if (!PD)
10281 unsigned Attributes = PD
8589 CheckForReference(Sema &SemaRef, const Expr *E, const PartialDiagnostic &PD) argument
[all...]
H A DSemaDecl.cpp5797 static bool hasParsedAttr(Scope *S, const Declarator &PD, argument
5800 if (hasParsedAttr(S, PD.getDeclSpec().getAttributes().getList(), Kind))
5805 for (unsigned I = 0, E = PD.getNumTypeObjects(); I != E; ++I) {
5806 if (hasParsedAttr(S, PD.getTypeObject(I).getAttrs(), Kind))
5811 return hasParsedAttr(S, PD.getAttributes(), Kind);
7576 const RecordDecl *PD = PT->castAs<RecordType>()->getDecl(); local
7577 VisitStack.push_back(PD);
7634 S.Diag(PD->getLocation(), diag::note_within_field_of_type)
7635 << PD->getDeclName();
H A DSemaDeclCXX.cpp771 const ParmVarDecl *PD = FD->getParamDecl(ArgIndex); local
772 SourceLocation ParamLoc = PD->getLocation();
776 ArgIndex+1, PD->getSourceRange(),
6546 PartialDiagnostic PD = PDiag( local
6548 HandleFunctionTypeMismatch(PD, MD->getType(), overloadedMD->getType());
6549 Diag(overloadedMD->getLocation(), PD);
9300 ParmVarDecl *PD = ParmVarDecl::Create( local
9303 PD->setScopeInfo(0, I);
9304 PD->setImplicit();
9307 mergeDeclAttributes(PD, BaseCto
[all...]
H A DSemaExpr.cpp146 if (const ObjCPropertyDecl *PD = MD->findPropertyDecl()) {
147 AvailabilityResult PDeclResult = PD->getAvailability(nullptr);
149 ObjCPDecl = PD;
14217 const PartialDiagnostic &PD) {
14233 push_back(sema::PossiblyUnreachableDiag(PD, Loc, Statement));
14236 Diag(Loc, PD);
14994 PartialDiagnostic PD = PDiag(diag::err_bound_member_function); local
14997 PD = PDiag(diag::err_dtor_expr_without_call) << /*pseudo-destructor*/ 1;
15001 PD = PDiag(diag::err_dtor_expr_without_call) << /*destructor*/ 0;
15003 tryToRecoverWithCall(result, PD,
14216 DiagRuntimeBehavior(SourceLocation Loc, const Stmt *Statement, const PartialDiagnostic &PD) argument
[all...]
H A DTreeTransform.h7071 MSPropertyDecl *PD = cast_or_null<MSPropertyDecl>( local
7073 if (!PD)
7081 MSPropertyRefExpr(Base.get(), PD, E->isArrow(),
/external/clang/tools/libclang/
H A DCIndex.cpp655 auto *PD = cast<ObjCProtocolDecl>(D); local
656 if (!PD->isThisDeclarationADefinition())
657 Cursor = MakeCursorObjCProtocolRef(PD, PD->getLocation(), TU);
1070 bool CursorVisitor::VisitObjCPropertyDecl(ObjCPropertyDecl *PD) { argument
1071 if (PD->getTypeSourceInfo() && Visit(PD->getTypeSourceInfo()->getTypeLoc()))
1077 ObjCCategoryDecl *CDecl = dyn_cast<ObjCCategoryDecl>(PD->getDeclContext());
1085 IdentifierInfo *PropertyId = PD->getIdentifier();
1088 PD
1178 VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *PD) argument
[all...]

Completed in 391 milliseconds

123