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

  /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/lib/Sema/
SemaExprMember.cpp 409 // Also must look for a getter or setter name which uses property syntax.
    [all...]
SemaPseudoObject.cpp 21 // of the associated 'getter' selector, typically:
222 ObjCMethodDecl *Getter;
231 SyntacticRefExpr(0), InstanceReceiver(0), Getter(0), Setter(0) {
493 } else if (Getter) {
494 T = Getter->getResultType();
503 if (Getter) return true;
507 if ((Getter = RefExpr->getImplicitPropertyGetter())) {
508 GetterSelector = Getter->getSelector();
512 // Must build the getter selector the hard way.
514 assert(setter && "both setter and getter are null - cannot happen")
    [all...]
SemaExprObjC.cpp     [all...]
  /external/clang/include/clang/AST/
ExprObjC.h 520 /// to the getter, the setter, or both.
533 // implicit property with no getter (because the 'foo' -> 'setFoo:'
568 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter,
574 PropertyOrGetter(Getter, true), SetterAndMethodRefFlags(Setter, 0),
579 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter,
584 PropertyOrGetter(Getter, true), SetterAndMethodRefFlags(Setter, 0),
589 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter,
594 PropertyOrGetter(Getter, true), SetterAndMethodRefFlags(Setter, 0),
633 /// getter.
671 if (const ObjCMethodDecl *Getter = PDecl->getGetterMethodDecl()
    [all...]
  /external/clang/lib/Serialization/
ASTReaderStmt.cpp 905 ObjCMethodDecl *Getter = ReadDeclAs<ObjCMethodDecl>(Record, Idx);
907 E->setImplicitProperty(Getter, Setter, MethodRefFlags);
    [all...]
  /external/clang/lib/CodeGen/
CGDebugInfo.cpp     [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 455 // Putter: Getter:
467 void Getter() {
474 MyThreadArray t(Putter, Getter);
791 // Putter: Getter:
809 void Getter() {
821 MyThreadArray t(Putter, Getter);
893 // Putter2: Putter1: Getter:
909 void Getter() {
917 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 6728 Local<Value> getter = global0->Get(v8_str("getter")); local
    [all...]

Completed in 273 milliseconds