HomeSort by: relevance | last modified time | path
    Searched refs:Prop (Results 1 - 25 of 28) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/clang/lib/Sema/
ScopeInfo.cpp 132 const ObjCPropertyDecl *Prop)
133 : Base(nullptr, true), Property(Prop) {
151 const ObjCPropertyDecl *Prop) {
152 assert(Msg && Prop);
154 WeakObjectUses[WeakObjectProfileTy(Msg->getInstanceReceiver(), Prop)];
198 if (const ObjCPropertyDecl *Prop = MD->findPropertyDecl()) {
201 Prop));
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...]
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...]
AnalysisBasedWarnings.cpp 1489 if (const ObjCPropertyDecl *Prop = dyn_cast<ObjCPropertyDecl>(KeyProp))
1490 if (Prop->hasAttr<IBOutletAttr>())
  /src/external/apache2/llvm/dist/clang/include/clang/Index/
USRGeneration.h 54 void generateUSRForObjCProperty(StringRef Prop, bool isClassProp, raw_ostream &OS);
  /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/llvm/utils/TableGen/
CodeGenIntrinsics.h 179 bool hasProperty(enum SDNP Prop) const {
180 return Properties & (1 << Prop);
CodeGenTarget.h 220 bool hasProperty(enum SDNP Prop) const { return Properties & (1 << Prop); }
CodeGenDAGPatterns.h 476 bool hasProperty(enum SDNP Prop) const { return Properties & (1 << Prop); }
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
JSON.h 763 template <typename T> bool map(StringLiteral Prop, T &Out) {
765 if (const Value *E = O->get(Prop))
766 return fromJSON(*E, Out, P.field(Prop));
767 P.field(Prop).report("missing value");
774 template <typename T> bool map(StringLiteral Prop, llvm::Optional<T> &Out) {
776 if (const Value *E = O->get(Prop))
777 return fromJSON(*E, Out, P.field(Prop));
785 template <typename T> bool mapOptional(StringLiteral Prop, T &Out) {
787 if (const Value *E = O->get(Prop))
788 return fromJSON(*E, Out, P.field(Prop));
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/
DeclObjC.cpp 396 for (auto *Prop : properties()) {
397 PM[std::make_pair(Prop->getIdentifier(), Prop->isClassProperty())] = Prop;
398 PO.push_back(Prop);
402 for (auto *Prop : ClassExt->properties()) {
403 PM[std::make_pair(Prop->getIdentifier(), Prop->isClassProperty())] = Prop;
404 PO.push_back(Prop);
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/ARCMigrate/
TransProperties.cpp 78 for (auto *Prop : D->instance_properties()) {
79 SourceLocation Loc = Prop->getAtLoc();
86 props.push_back(Prop);
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);
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
IvarInvalidationChecker.cpp 192 const ObjCPropertyDecl *Prop,
300 const ObjCPropertyDecl *Prop,
307 IvarD = Prop->getPropertyIvarDecl();
320 StringRef PropName = Prop->getIdentifier()->getName();
CheckObjCDealloc.cpp 945 const ObjCPropertyDecl *Prop = M.getAccessedProperty();
946 if (!Prop)
949 ObjCIvarDecl *PropIvarDecl = Prop->getPropertyIvarDecl();
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/internal/
traits.d 635 interface Prop { int prop() @property; }
636 Prop prop;
637 static assert(is( FunctionTypeOf!(Prop.prop) == GetterType ));
638 static assert(is( FunctionTypeOf!(prop.prop) == GetterType ));
725 int prop() @property { return 0; }
727 alias R_Test_prop = ReturnType!(Test.prop);
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Index/
IndexSymbol.cpp 580 applyForEachSymbolProperty(Props, [&](SymbolProperty Prop) {
585 switch (Prop) {
USRGeneration.cpp 156 void GenObjCProperty(StringRef prop, bool isClassProp) {
157 generateUSRForObjCProperty(prop, isClassProp, Out);
1056 void clang::index::generateUSRForObjCProperty(StringRef Prop, bool isClassProp,
1058 OS << (isClassProp ? "(cpy)" : "(py)") << Prop;
  /src/external/apache2/llvm/dist/llvm/lib/BinaryFormat/
Dwarf.cpp 565 StringRef llvm::dwarf::ApplePropertyString(unsigned Prop) {
566 switch (Prop) {
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/LiveDebugValues/
InstrRefBasedImpl.cpp 824 DbgValue(const ValueIDNum &Val, const DbgValueProperties &Prop, KindT Kind)
825 : ID(Val), Properties(Prop), Kind(Kind) {
829 DbgValue(unsigned BlockNo, const DbgValueProperties &Prop, KindT Kind)
830 : BlockNo(BlockNo), Properties(Prop), Kind(Kind) {
834 DbgValue(const MachineOperand &MO, const DbgValueProperties &Prop, KindT Kind)
835 : MO(MO), Properties(Prop), Kind(Kind) {
839 DbgValue(const DbgValueProperties &Prop, KindT Kind)
840 : Properties(Prop), Kind(Kind) {
  /src/external/apache2/llvm/dist/clang/lib/Frontend/Rewrite/
RewriteModernObjC.cpp 335 void RewriteProperty(ObjCPropertyDecl *prop);
1122 void RewriteModernObjC::RewriteProperty(ObjCPropertyDecl *prop) {
1123 SourceLocation Loc = prop->getAtLoc();
7041 for (const auto *Prop : IDecl->property_impls()) {
7042 if (Prop->getPropertyImplementation() == ObjCPropertyImplDecl::Dynamic)
7044 if (!Prop->getPropertyIvarDecl())
7046 ObjCPropertyDecl *PD = Prop->getPropertyDecl();
7049 if (ObjCMethodDecl *Getter = Prop->getGetterMethodDecl())
7054 if (ObjCMethodDecl *Setter = Prop->getSetterMethodDecl())
7291 for (const auto *Prop : IDecl->property_impls())
    [all...]
RewriteObjC.cpp 283 void RewriteProperty(ObjCPropertyDecl *prop);
963 void RewriteObjC::RewriteProperty(ObjCPropertyDecl *prop) {
964 SourceLocation Loc = prop->getAtLoc();
5366 for (const auto *Prop : IDecl->property_impls()) {
5367 if (Prop->getPropertyImplementation() == ObjCPropertyImplDecl::Dynamic)
5369 if (!Prop->getPropertyIvarDecl())
5371 ObjCPropertyDecl *PD = Prop->getPropertyDecl();
5374 if (ObjCMethodDecl *Getter = Prop->getGetterMethodDecl())
5379 if (ObjCMethodDecl *Setter = Prop->getSetterMethodDecl())
5644 for (const auto *Prop : IDecl->property_impls())
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
ScopeInfo.h 243 /// self->ivar.prop | ivar (ObjCIvarDecl) | prop (ObjCPropertyDecl)
244 /// cxxObj.obj.prop | obj (FieldDecl) | prop (ObjCPropertyDecl)
245 /// [self foo].prop | 0 (unknown) | prop (ObjCPropertyDecl)
247 /// MyClass.prop | MyClass (ObjCInterfaceDecl) | -prop (ObjCMethodDecl)
248 /// MyClass.foo.prop | +foo (ObjCMethodDecl) | -prop (ObjCPropertyDecl
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
MachineFunction.cpp 89 static const char *getPropertyName(MachineFunctionProperties::Property Prop) {
92 switch(Prop) {
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
DeclObjC.h 2808 void setPropertyDecl(ObjCPropertyDecl *Prop) { PropertyDecl = Prop; }

Completed in 74 milliseconds

1 2