Searched defs:Getter (Results 1 - 16 of 16) sorted by relevance

/external/chromium_org/tools/usb_gadget/
H A Dusb_descriptors.py72 def Getter(self): function in function:Descriptor.AddField
79 setattr(cls, name, property(Getter, Setter))
103 def Getter(unused_self): function in function:Descriptor.AddFixedField
106 setattr(cls, name, property(Getter, Setter))
131 def Getter(self): function in function:Descriptor.AddComputedField
134 setattr(cls, name, property(Getter, Setter))
/external/droiddriver/src/com/google/android/droiddriver/scroll/
H A DSentinelStrategy.java43 public static abstract class Getter implements Finder { class in class:SentinelStrategy
46 protected Getter() { method in class:SentinelStrategy.Getter
51 protected Getter(Predicate<? super UiElement> predicate) { method in class:SentinelStrategy.Getter
80 public static final Getter FIRST_CHILD_GETTER = new Getter() {
94 public static final Getter LAST_CHILD_GETTER = new Getter() {
115 public static final Getter SECOND_LAST_CHILD_GETTER = new Getter() {
130 public static final Getter SECOND_CHILD_GETTE
[all...]
/external/chromium_org/third_party/protobuf/python/google/protobuf/internal/
H A Dcpp_message.py81 def Getter(self): function in function:ScalarProperty
87 return property(Getter, Setter)
93 def Getter(self): function in function:CompositeProperty
101 return property(Getter)
172 def Getter(self): function in function:RepeatedScalarProperty
184 return property(Getter, Setter, doc=doc)
277 def Getter(self): function in function:RepeatedCompositeProperty
290 return property(Getter, Setter, doc=doc)
/external/chromium_org/v8/test/cctest/
H A Dtest-cpu-profiler.cc770 static void Getter(v8::Local<v8::String> name, function in class:TestApiCallbacks
831 &TestApiCallbacks::Getter, &TestApiCallbacks::Setter, data); member in class:TestApiCallbacks
876 &TestApiCallbacks::Getter, &TestApiCallbacks::Setter, data); member in class:TestApiCallbacks
H A Dtest-api.cc12279 return v8_str("Direct Getter Result");
12305 CHECK_EQ(v8_str("Direct Getter Result"), result);
19997 static void Getter(v8::Local<v8::String> property, function
20017 tmpl->SetNamedPropertyHandler(Getter, NULL, NULL, NULL, Enumerator);
/external/clang/lib/Sema/
H A DSemaPseudoObject.cpp262 ObjCMethodDecl *Getter; member in class:__anon18092::ObjCPropertyOpBuilder
271 SyntacticRefExpr(nullptr), InstanceReceiver(nullptr), Getter(nullptr),
548 } else if (Getter) {
549 T = Getter->getReturnType();
558 if (Getter) return true;
562 if ((Getter = RefExpr->getImplicitPropertyGetter())) {
563 GetterSelector = Getter->getSelector();
581 Getter = LookupMethodInReceiverType(S, prop->getGetterName(), RefExpr);
582 return (Getter != nullptr);
682 if (!Getter
1098 ObjCMethodDecl *Getter = S.LookupMethodInObjectType(GetterSelector, ContainerT, local
[all...]
H A DSemaExprMember.cpp1474 ObjCMethodDecl *Getter; local
1475 if ((Getter = IFace->lookupClassMethod(Sel))) {
1477 if (S.DiagnoseUseOfDecl(Getter, MemberLoc))
1480 Getter = IFace->lookupPrivateMethod(Sel, false);
1497 if (Getter || Setter) {
1499 Getter, Setter, S.Context.PseudoObjectTy, VK_LValue,
H A DSemaExprObjC.cpp1619 ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Sel); local
1622 if (!Getter)
1623 Getter = LookupMethodInQualifiedType(Sel, OPT, true);
1626 if (!Getter)
1627 Getter = IFace->lookupPrivateMethod(Sel);
1629 if (Getter) {
1631 if (DiagnoseUseOfDecl(Getter, MemberLoc))
1654 if (Getter || Setter) {
1657 ObjCPropertyRefExpr(Getter, Setter, Context.PseudoObjectTy, VK_LValue,
1661 ObjCPropertyRefExpr(Getter, Sette
1759 ObjCMethodDecl *Getter = IFace->lookupClassMethod(Sel); local
[all...]
H A DTreeTransform.h2608 ObjCMethodDecl *Getter,
2614 new (getSema().Context) ObjCPropertyRefExpr(Getter, Setter, T,
2607 RebuildObjCPropertyRefExpr(Expr *Base, QualType T, ObjCMethodDecl *Getter, ObjCMethodDecl *Setter, SourceLocation PropertyLoc) argument
/external/clang/include/clang/AST/
H A DExprObjC.h582 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter, argument
588 PropertyOrGetter(Getter, true), SetterAndMethodRefFlags(Setter, 0),
593 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter, argument
598 PropertyOrGetter(Getter, true), SetterAndMethodRefFlags(Setter, 0),
603 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter, argument
608 PropertyOrGetter(Getter, true), SetterAndMethodRefFlags(Setter, 0),
685 if (const ObjCMethodDecl *Getter = PDecl->getGetterMethodDecl())
686 ResultType = Getter->getReturnType();
690 const ObjCMethodDecl *Getter = getImplicitPropertyGetter(); local
691 if (Getter)
749 setImplicitProperty(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter, unsigned methRefFlags) argument
[all...]
H A DDeclCXX.h3164 IdentifierInfo *Getter, IdentifierInfo *Setter)
3166 GetterId(Getter), SetterId(Setter) {}
3172 IdentifierInfo *Getter, IdentifierInfo *Setter);
3162 MSPropertyDecl(DeclContext *DC, SourceLocation L, DeclarationName N, QualType T, TypeSourceInfo *TInfo, SourceLocation StartL, IdentifierInfo *Getter, IdentifierInfo *Setter) argument
/external/clang/lib/AST/
H A DDeclCXX.cpp2130 IdentifierInfo *Getter,
2132 return new (C, DC) MSPropertyDecl(DC, L, N, T, TInfo, StartL, Getter, Setter);
2126 Create(ASTContext &C, DeclContext *DC, SourceLocation L, DeclarationName N, QualType T, TypeSourceInfo *TInfo, SourceLocation StartL, IdentifierInfo *Getter, IdentifierInfo *Setter) argument
/external/clang/lib/ARCMigrate/
H A DObjCMT.cpp350 static void rewriteToObjCProperty(const ObjCMethodDecl *Getter, argument
367 std::string PropertyNameString = Getter->getNameAsString();
388 QualType QT = Getter->getReturnType();
392 QualType ResType = Context.getCanonicalType(Getter->getReturnType());
403 QualType RT = Getter->getReturnType();
441 SourceLocation StartGetterSelectorLoc = Getter->getSelectorStartLoc();
442 Selector GetterSelector = Getter->getSelector();
446 commit.replace(CharSourceRange::getCharRange(Getter->getLocStart(),
/external/clang/lib/Serialization/
H A DASTReaderStmt.cpp998 ObjCMethodDecl *Getter = ReadDeclAs<ObjCMethodDecl>(Record, Idx); local
1000 E->setImplicitProperty(Getter, Setter, MethodRefFlags);
/external/clang/lib/CodeGen/
H A DCGDebugInfo.cpp1606 /// \return true if Getter has the default name for the property PD.
1608 const ObjCMethodDecl *Getter) {
1610 if (!Getter)
1613 assert(Getter->getDeclName().isObjCZeroArgSelector());
1615 Getter->getDeclName().getObjCSelector().getNameForSlot(0);
1703 ObjCMethodDecl *Getter = PD->getGetterMethodDecl(); local
1708 hasDefaultGetterName(PD, Getter) ? "" :
1777 ObjCMethodDecl *Getter = PD->getGetterMethodDecl(); local
1782 hasDefaultGetterName(PD, Getter) ? "" :
1607 hasDefaultGetterName(const ObjCPropertyDecl *PD, const ObjCMethodDecl *Getter) argument
/external/valgrind/main/drd/tests/
H A Dtsan_unittest.cpp455 // Putter: Getter:
467 void Getter() { function in namespace:test04
474 MyThreadArray t(Putter, Getter);
791 // Putter: Getter:
809 void Getter() { function in namespace:test12
821 MyThreadArray t(Putter, Getter);
893 // Putter2: Putter1: Getter:
909 void Getter() { function in namespace:test14
917 MyThreadArray t(Getter, Putter1, Putter2);
1402 // Putter1: Getter
1427 void Getter() { function in namespace:test28
1469 void Getter() { function in namespace:test29
1848 void Getter() { function in namespace:test36
1950 void Getter() { function in namespace:test38
2057 void Getter() { function in namespace:test40
2168 void Getter() { function in namespace:test43
2206 void Getter() { function in namespace:test44
2247 void Getter() { function in namespace:test45
2988 void Getter() { function in namespace:test61
3030 void Getter() { function in namespace:test62
3061 void Getter() { function in namespace:test63
6615 void Getter() { function in namespace:test142
6656 void Getter() { function in namespace:test143
[all...]

Completed in 395 milliseconds