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

  /external/webkit/Source/JavaScriptCore/runtime/
JSObject.h 69 Setter = 1 << 6 // property is a setter
    [all...]
  /external/clang/include/clang/AST/
ExprObjC.h 233 /// pointer is an (optional) ObjCMethodDecl and Setter may be set.
235 /// the pointer is an ObjCPropertyDecl and Setter is always null.
237 ObjCMethodDecl *Setter;
255 PropertyOrGetter(PD, false), Setter(0),
265 PropertyOrGetter(PD, false), Setter(0),
269 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter,
275 PropertyOrGetter(Getter, true), Setter(Setter),
279 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter,
284 PropertyOrGetter(Getter, true), Setter(Setter)
    [all...]
  /external/clang/lib/Sema/
SemaExprMember.cpp 398 // Also must look for a getter or setter name which uses property syntax.
    [all...]
SemaExprObjC.cpp 627 // will look for the matching setter, in case it is needed.
631 ObjCMethodDecl *Setter = IFace->lookupInstanceMethod(SetterSel);
634 if (!Setter)
635 Setter = LookupMethodInQualifiedType(SetterSel, OPT, true);
637 if (!Setter) {
640 Setter = IFace->lookupPrivateMethod(SetterSel);
643 if (!Setter)
644 Setter = IFace->getCategoryInstanceMethod(SetterSel);
646 if (Setter && DiagnoseUseOfDecl(Setter, MemberLoc)
    [all...]
  /external/clang/lib/Serialization/
ASTReaderStmt.cpp 804 ObjCMethodDecl *Setter =
806 E->setImplicitProperty(Getter, Setter);
    [all...]
  /external/webkit/Source/JavaScriptCore/parser/
Nodes.h 412 enum Type { Constant = 1, Getter = 2, Setter = 4 };
    [all...]

Completed in 307 milliseconds