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

  /external/clang/include/clang/Index/
USRGeneration.h 47 void generateUSRForObjCProperty(StringRef Prop, raw_ostream &OS);
  /external/clang/lib/Sema/
ScopeInfo.cpp 112 const ObjCPropertyDecl *Prop)
113 : Base(nullptr, true), Property(Prop) {
131 const ObjCPropertyDecl *Prop) {
132 assert(Msg && Prop);
134 WeakObjectUses[WeakObjectProfileTy(Msg->getInstanceReceiver(), Prop)];
176 if (const ObjCPropertyDecl *Prop = MD->findPropertyDecl()) {
179 Prop));
SemaObjCProperty.cpp 117 CheckPropertyAgainstProtocol(Sema &S, ObjCPropertyDecl *Prop,
125 DeclContext::lookup_result R = Proto->lookup(Prop->getDeclName());
128 S.DiagnosePropertyMismatch(Prop, ProtoProp, Proto->getIdentifier(), true);
135 CheckPropertyAgainstProtocol(S, Prop, P, Known);
771 ObjCPropertyDecl *Prop = I->second;
772 QualType LHSType = S.Context.getCanonicalType(Prop->getType())
    [all...]
SemaPseudoObject.cpp 17 // expr.prop
18 // where 'expr' is an r-value of Objective-C pointer type and 'prop'
22 // [expr prop]
28 // 'expr.prop *= 100' would be translated to:
29 // [expr setProp: [expr prop] * 100]
543 const ObjCPropertyDecl *Prop = RefExpr->getExplicitProperty();
544 if (Prop->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_weak)
545 return !Prop->hasAttr<IBOutletAttr>();
547 T = Prop->getType();
580 ObjCPropertyDecl *prop = RefExpr->getExplicitProperty() local
609 ObjCPropertyDecl *prop = RefExpr->getExplicitProperty(); local
    [all...]
SemaExprObjC.cpp     [all...]
SemaLookup.cpp     [all...]
  /external/clang/include/clang/AST/
ASTMutationListener.h 90 /// \param Prop the property in the class extension
96 virtual void AddedObjCPropertyInClassExtension(const ObjCPropertyDecl *Prop,
DeclObjC.h     [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
BaseViewRule.java 84 private static final String PROP_PREFIX = "@prop@"; //$NON-NLS-1$
92 private Map<String, Map<String, Prop>> mAttributesMap =
93 new HashMap<String, Map<String, Prop>>();
202 Map<String, Prop> props = mAttributesMap.get(key);
203 final Prop prop = (props != null) ? props.get(actionId) : null;
205 if (prop != null) {
215 if (prop.isStringEdit()) {
243 if (prop.isToggle()) {
252 } else if (prop.isFlag())
    [all...]
  /external/clang/lib/Analysis/
BodyFarm.cpp 390 const ObjCPropertyDecl *Prop) {
392 const ObjCIvarDecl *IVar = Prop->getPropertyIvarDecl();
397 if (Prop->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_weak)
409 if (I->getPropertyDecl() != Prop)
423 Prop->getType().getNonReferenceType()))
433 const VarDecl *selfVar = Prop->getGetterMethodDecl()->getSelfDecl();
442 if (!Prop->getType()->isReferenceType())
460 const ObjCPropertyDecl *Prop = D->findPropertyDecl();
461 if (!Prop)
468 Val = createObjCPropertyGetter(C, Prop);
    [all...]
  /external/llvm/utils/TableGen/
CodeGenTarget.h 213 bool hasProperty(enum SDNP Prop) const { return Properties & (1 << Prop); }
CodeGenDAGPatterns.h 234 bool hasProperty(enum SDNP Prop) const { return Properties & (1 << Prop); }
  /external/clang/lib/ARCMigrate/
TransProperties.cpp 79 for (auto *Prop : D->properties()) {
80 if (Prop->getAtLoc().isInvalid())
82 unsigned RawLoc = Prop->getAtLoc().getRawEncoding();
87 props.push_back(Prop);
ObjCMT.cpp 489 for (auto *Prop : D->properties()) {
491 !Prop->isDeprecated())
492 migratePropertyNsReturnsInnerPointer(Ctx, Prop);
    [all...]
  /external/clang/lib/AST/
DeclObjC.cpp 269 for (auto *Prop : properties()) {
270 PM[Prop->getIdentifier()] = Prop;
271 PO.push_back(Prop);
    [all...]
  /external/clang/lib/Frontend/
MultiplexConsumer.cpp 106 void AddedObjCPropertyInClassExtension(const ObjCPropertyDecl *Prop,
173 const ObjCPropertyDecl *Prop,
177 Listeners[i]->AddedObjCPropertyInClassExtension(Prop, OrigProp, ClassExt);
  /external/clang/lib/StaticAnalyzer/Checkers/
IvarInvalidationChecker.cpp 196 const ObjCPropertyDecl *Prop,
305 const ObjCPropertyDecl *Prop,
312 IvarD = Prop->getPropertyIvarDecl();
325 StringRef PropName = Prop->getIdentifier()->getName();
  /external/clang/lib/Index/
USRGeneration.cpp 134 void GenObjCProperty(StringRef prop) {
135 generateUSRForObjCProperty(prop, Out);
790 void clang::index::generateUSRForObjCProperty(StringRef Prop, raw_ostream &OS) {
791 OS << "(py)" << Prop;
  /external/clang/include/clang/Sema/
ScopeInfo.h 161 /// self->ivar.prop | ivar (ObjCIvarDecl) | prop (ObjCPropertyDecl)
162 /// cxxObj.obj.prop | obj (FieldDecl) | prop (ObjCPropertyDecl)
163 /// [self foo].prop | 0 (unknown) | prop (ObjCPropertyDecl)
165 /// MyClass.prop | MyClass (ObjCInterfaceDecl) | -prop (ObjCMethodDecl)
295 const ObjCPropertyDecl *Prop);
  /external/clang/include/clang/Serialization/
ASTWriter.h 774 void AddedObjCPropertyInClassExtension(const ObjCPropertyDecl *Prop,
  /external/clang/lib/Rewrite/Frontend/
RewriteModernObjC.cpp 345 void RewriteProperty(ObjCPropertyDecl *prop);
    [all...]
RewriteObjC.cpp 291 void RewriteProperty(ObjCPropertyDecl *prop);
    [all...]
  /external/clang/lib/CodeGen/
CGObjCMac.cpp     [all...]
  /external/clang/lib/Serialization/
ASTWriter.cpp     [all...]

Completed in 460 milliseconds