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

  /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);
    [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]
488 const ObjCPropertyDecl *Prop = RefExpr->getExplicitProperty();
489 if (Prop->getPropertyAttributes() & ObjCPropertyDecl::OBJC_PR_weak)
492 T = Prop->getType();
527 ObjCPropertyDecl *prop = RefExpr->getExplicitProperty(); local
528 Getter = LookupMethodInReceiverType(S, prop->getGetterName(), RefExpr)
556 ObjCPropertyDecl *prop = RefExpr->getExplicitProperty(); local
    [all...]
SemaExprObjC.cpp     [all...]
SemaLookup.cpp     [all...]
  /external/clang/include/clang/AST/
ASTMutationListener.h 71 /// \param Prop the property in the class extension
77 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/webkit/Source/WebCore/css/
SVGCSSStyleSelector.cpp 49 #define HANDLE_INHERIT(prop, Prop) \
52 svgstyle->set##Prop(m_parentStyle->svgStyle()->prop()); \
56 #define HANDLE_INHERIT_AND_INITIAL(prop, Prop) \
57 HANDLE_INHERIT(prop, Prop) \
59 svgstyle->set##Prop(SVGRenderStyle::initial##Prop()); \
    [all...]
CSSStyleSelector.cpp 132 #define HANDLE_INHERIT(prop, Prop) \
134 m_style->set##Prop(m_parentStyle->prop()); \
138 #define HANDLE_INHERIT_AND_INITIAL(prop, Prop) \
139 HANDLE_INHERIT(prop, Prop) \
141 m_style->set##Prop(RenderStyle::initial##Prop()); \
    [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/Frontend/
MultiplexConsumer.cpp 103 virtual void AddedObjCPropertyInClassExtension(const ObjCPropertyDecl *Prop,
158 const ObjCPropertyDecl *Prop,
162 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/clang/lib/AST/
DeclObjC.cpp 224 ObjCPropertyDecl *Prop = *P;
225 PM[Prop->getIdentifier()] = Prop;
226 PO.push_back(Prop);
    [all...]
  /external/clang/include/clang/Sema/
ScopeInfo.h 135 /// self->ivar.prop | ivar (ObjCIvarDecl) | prop (ObjCPropertyDecl)
136 /// cxxObj.obj.prop | obj (FieldDecl) | prop (ObjCPropertyDecl)
137 /// [self foo].prop | 0 (unknown) | prop (ObjCPropertyDecl)
139 /// MyClass.prop | MyClass (ObjCInterfaceDecl) | -prop (ObjCMethodDecl)
269 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 725 virtual void AddedObjCPropertyInClassExtension(const ObjCPropertyDecl *Prop,
  /external/clang/lib/CodeGen/
CGObjCMac.cpp     [all...]
  /external/clang/lib/Serialization/
ASTWriter.cpp     [all...]

Completed in 1739 milliseconds