/external/clang/lib/Sema/ |
ScopeInfo.cpp | 107 const ObjCPropertyDecl *Prop) 108 : Base(0, true), Property(Prop) { 126 const ObjCPropertyDecl *Prop) { 127 assert(Msg && Prop); 129 WeakObjectUses[WeakObjectProfileTy(Msg->getInstanceReceiver(), Prop)]; 165 if (const ObjCPropertyDecl *Prop = MD->findPropertyDecl()) { 168 Prop));
|
SemaObjCProperty.cpp | 118 CheckPropertyAgainstProtocol(Sema &S, ObjCPropertyDecl *Prop, 126 DeclContext::lookup_result R = Proto->lookup(Prop->getDeclName()); 129 S.DiagnosePropertyMismatch(Prop, ProtoProp, Proto->getIdentifier()); 138 CheckPropertyAgainstProtocol(S, Prop, *P, Known); 757 ObjCPropertyDecl *Prop = I->second; 758 QualType LHSType = S.Context.getCanonicalType(Prop->getType()); 769 S.Diag(Prop->getLocation(), diag::note_protocol_property_declare) 770 << 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] 537 const ObjCPropertyDecl *Prop = RefExpr->getExplicitProperty(); 538 if (Prop->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_weak) 541 T = Prop->getType(); 576 ObjCPropertyDecl *prop = RefExpr->getExplicitProperty(); local 577 Getter = LookupMethodInReceiverType(S, prop->getGetterName(), RefExpr) 605 ObjCPropertyDecl *prop = RefExpr->getExplicitProperty(); local [all...] |
SemaExprObjC.cpp | [all...] |
SemaLookup.cpp | [all...] |
/external/clang/include/clang/AST/ |
ASTMutationListener.h | 83 /// \param Prop the property in the class extension 89 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/llvm/utils/TableGen/ |
CodeGenTarget.h | 206 bool hasProperty(enum SDNP Prop) const { return Properties & (1 << Prop); }
|
CodeGenDAGPatterns.h | 230 bool hasProperty(enum SDNP Prop) const { return Properties & (1 << Prop); }
|
/external/clang/lib/AST/ |
DeclObjC.cpp | 291 ObjCPropertyDecl *Prop = *P; 292 PM[Prop->getIdentifier()] = Prop; 293 PO.push_back(Prop); [all...] |
/external/clang/lib/Frontend/ |
MultiplexConsumer.cpp | 107 virtual void AddedObjCPropertyInClassExtension(const ObjCPropertyDecl *Prop, 172 const ObjCPropertyDecl *Prop, 176 Listeners[i]->AddedObjCPropertyInClassExtension(Prop, OrigProp, ClassExt);
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
IvarInvalidationChecker.cpp | 193 const ObjCPropertyDecl *Prop, 317 const ObjCPropertyDecl *Prop, 324 IvarD = Prop->getPropertyIvarDecl(); 337 StringRef PropName = Prop->getIdentifier()->getName();
|
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/ |
StyleBuilderCustom.cpp | [all...] |
StyleAdjuster.cpp | 415 #define CLEAR_UNKNOWN_NAMED_AREA(prop, Prop) \ 416 if (prop.isNamedGridArea() && !map.contains(prop.namedGridLine())) \ 417 style->setGrid##Prop(GridPosition());
|
/external/clang/include/clang/Sema/ |
ScopeInfo.h | 140 /// self->ivar.prop | ivar (ObjCIvarDecl) | prop (ObjCPropertyDecl) 141 /// cxxObj.obj.prop | obj (FieldDecl) | prop (ObjCPropertyDecl) 142 /// [self foo].prop | 0 (unknown) | prop (ObjCPropertyDecl) 144 /// MyClass.prop | MyClass (ObjCInterfaceDecl) | -prop (ObjCMethodDecl) 274 const ObjCPropertyDecl *Prop);
|
/external/clang/lib/Rewrite/Frontend/ |
RewriteObjC.cpp | 290 void RewriteProperty(ObjCPropertyDecl *prop); [all...] |
RewriteModernObjC.cpp | 330 void RewriteProperty(ObjCPropertyDecl *prop); [all...] |
/external/clang/include/clang/Serialization/ |
ASTWriter.h | 737 virtual void AddedObjCPropertyInClassExtension(const ObjCPropertyDecl *Prop,
|
/external/clang/lib/CodeGen/ |
CGObjCMac.cpp | [all...] |
/external/clang/lib/Serialization/ |
ASTWriter.cpp | [all...] |