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

  /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/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/lib/Sema/
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...]
  /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/CodeGen/
CGObjCMac.cpp     [all...]

Completed in 196 milliseconds