HomeSort by: relevance | last modified time | path
    Searched defs:Prop (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/Analysis/
BodyFarm.cpp 704 static const ObjCIvarDecl *findBackingIvar(const ObjCPropertyDecl *Prop) {
705 const ObjCIvarDecl *IVar = Prop->getPropertyIvarDecl();
716 if (!Prop->isReadOnly())
719 auto *Container = cast<ObjCContainerDecl>(Prop->getDeclContext());
735 Prop->getIdentifier(), Prop->getQueryKind());
736 if (ShadowingProp && ShadowingProp != Prop) {
747 const ObjCPropertyDecl *Prop = nullptr;
758 Prop = Candidate;
759 IVar = Prop->getPropertyIvarDecl()
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
CheckObjCDealloc.cpp 945 const ObjCPropertyDecl *Prop = M.getAccessedProperty();
946 if (!Prop)
949 ObjCIvarDecl *PropIvarDecl = Prop->getPropertyIvarDecl();
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaPseudoObject.cpp 16 // expr.prop
17 // where 'expr' is an r-value of Objective-C pointer type and 'prop'
21 // [expr prop]
27 // 'expr.prop *= 100' would be translated to:
28 // [expr setProp: [expr prop] * 100]
584 const ObjCPropertyDecl *Prop = RefExpr->getExplicitProperty();
585 if (Prop->getPropertyAttributes() & ObjCPropertyAttribute::kind_weak)
588 T = Prop->getType();
621 ObjCPropertyDecl *prop = RefExpr->getExplicitProperty(); local
622 Getter = LookupMethodInReceiverType(S, prop->getGetterName(), RefExpr)
650 ObjCPropertyDecl *prop = RefExpr->getExplicitProperty(); local
    [all...]
SemaObjCProperty.cpp 107 CheckPropertyAgainstProtocol(Sema &S, ObjCPropertyDecl *Prop,
116 Proto->lookup(Prop->getDeclName()).find_first<ObjCPropertyDecl>()) {
117 S.DiagnosePropertyMismatch(Prop, ProtoProp, Proto->getIdentifier(), true);
123 CheckPropertyAgainstProtocol(S, Prop, P, Known);
866 for (const auto &Prop : llvm::enumerate(Properties)) {
868 if (Property->isReadOnly() && !Prop.value()->isReadOnly()) {
869 Property = Prop.value();
870 SelectedIndex = Prop.index();
890 const ObjCPropertyDecl *Prop;
895 for (ObjCPropertyDecl *Prop : Properties)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/ARCMigrate/
ObjCMT.cpp 252 const ObjCPropertyDecl *Prop = Method->findPropertyDecl();
253 if (!Prop)
280 PropertyDotString += Prop->getName();
290 PropertyDotString += Prop->getName();
594 for (auto *Prop : D->instance_properties()) {
596 !Prop->isDeprecated())
597 migratePropertyNsReturnsInnerPointer(Ctx, Prop);

Completed in 41 milliseconds