/external/webkit/Source/JavaScriptCore/runtime/ |
PropertySlot.h | 43 Getter, 171 m_cachedPropertyType = Getter;
|
JSObject.h | 68 Getter = 1 << 5, // property is a getter [all...] |
/external/clang/include/clang/AST/ |
ExprObjC.h | 269 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter, 275 PropertyOrGetter(Getter, true), Setter(Setter), 279 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter, 284 PropertyOrGetter(Getter, true), Setter(Setter), 288 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter, 293 PropertyOrGetter(Getter, true), Setter(Setter), 347 if (const ObjCMethodDecl *Getter = PDecl->getGetterMethodDecl()) 348 ResultType = Getter->getResultType(); 352 const ObjCMethodDecl *Getter = getImplicitPropertyGetter(); 353 ResultType = Getter->getResultType(); // with reference [all...] |
/external/clang/lib/Sema/ |
SemaExprMember.cpp | 398 // Also must look for a getter or setter name which uses property syntax. [all...] |
SemaExprObjC.cpp | 560 ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Sel); 561 if (Getter && 562 (Getter->hasRelatedResultType() 563 || DiagnosePropertyAccessorMismatch(PD, Getter, MemberLoc))) 564 ResTy = getMessageSendResultType(QualType(OPT, 0), Getter, false, 586 if (ObjCMethodDecl *Getter = PD->getGetterMethodDecl()) 587 T = getMessageSendResultType(QualType(OPT, 0), Getter, false, Super); 608 ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Sel); 611 if (!Getter) 612 Getter = LookupMethodInQualifiedType(Sel, OPT, true) [all...] |
/external/clang/lib/Serialization/ |
ASTReaderStmt.cpp | 802 ObjCMethodDecl *Getter = 806 E->setImplicitProperty(Getter, Setter); [all...] |
/external/webkit/Source/JavaScriptCore/parser/ |
Nodes.h | 412 enum Type { Constant = 1, Getter = 2, Setter = 4 }; [all...] |
/external/valgrind/main/drd/tests/ |
tsan_unittest.cpp | 453 // Putter: Getter: 465 void Getter() { 472 MyThreadArray t(Putter, Getter); 789 // Putter: Getter: 807 void Getter() { 819 MyThreadArray t(Putter, Getter); 891 // Putter2: Putter1: Getter: 907 void Getter() { 915 MyThreadArray t(Getter, Putter1, Putter2); [all...] |
/external/valgrind/unittest/ |
racecheck_unittest.cc | 215 // Putter: Getter: 227 void Getter() { 234 MyThreadArray t(Putter, Getter); 495 // Putter: Getter: 513 void Getter() { 525 MyThreadArray t(Putter, Getter); 597 // Putter2: Putter1: Getter: 613 void Getter() { 621 MyThreadArray t(Getter, Putter1, Putter2); 1094 // Putter1: Getter: Putter2 [all...] |
/external/v8/test/cctest/ |
test-api.cc | 5646 Local<Value> getter = global0->Get(v8_str("getter")); local [all...] |