Home
last modified time | relevance | path

Searched refs:Getter (Results 1 – 25 of 31) sorted by relevance

12

/external/droiddriver/src/io/appium/droiddriver/scroll/
DSentinelStrategy.java43 public static abstract class Getter implements Finder { class in SentinelStrategy
46 protected Getter() { in Getter() method in SentinelStrategy.Getter
51 protected Getter(Predicate<? super UiElement> predicate) { in Getter() method in 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_GETTER = new Getter() {
145 public static class MorePredicateGetter extends Getter {
146 private final Getter original;
148 public MorePredicateGetter(Getter original, Predicate<? super UiElement> extraPredicate) { in MorePredicateGetter()
[all …]
DDynamicSentinelStrategy.java185 public DynamicSentinelStrategy(IsUpdatedStrategy isUpdatedStrategy, Getter backwardGetter, in DynamicSentinelStrategy()
186 Getter forwardGetter, DirectionConverter directionConverter) { in DynamicSentinelStrategy()
195 public DynamicSentinelStrategy(IsUpdatedStrategy isUpdatedStrategy, Getter backwardGetter, in DynamicSentinelStrategy()
196 Getter forwardGetter) { in DynamicSentinelStrategy()
204 public DynamicSentinelStrategy(IsUpdatedStrategy isUpdatedStrategy, Getter backwardGetter) { in DynamicSentinelStrategy()
DStaticSentinelStrategy.java45 public StaticSentinelStrategy(Getter backwardGetter, Getter forwardGetter, in StaticSentinelStrategy()
/external/clang/tools/libclang/
DCIndexInclusionStack.cpp42 const SrcMgr::SLocEntry &(SourceManager::*Getter)(unsigned, bool*) const; in clang_getInclusions() local
44 Getter = &SourceManager::getLoadedSLocEntry; in clang_getInclusions()
47 Getter = &SourceManager::getLocalSLocEntry; in clang_getInclusions()
51 const SrcMgr::SLocEntry &SL = (SM.*Getter)(i, &Invalid); in clang_getInclusions()
DIndexingContext.cpp613 if (ObjCMethodDecl *Getter = D->getGetterMethodDecl()) { in handleObjCProperty() local
614 getEntityInfo(Getter, GetterEntity, SA); in handleObjCProperty()
/external/clang/lib/Sema/
DSemaPseudoObject.cpp262 ObjCMethodDecl *Getter; member in __anon83f8f2be0111::ObjCPropertyOpBuilder
271 SyntacticRefExpr(nullptr), InstanceReceiver(nullptr), Getter(nullptr), in ObjCPropertyOpBuilder()
552 } else if (Getter) { in isWeakProperty()
553 T = Getter->getReturnType(); in isWeakProperty()
562 if (Getter) return true; in findGetter()
566 if ((Getter = RefExpr->getImplicitPropertyGetter())) { in findGetter()
567 GetterSelector = Getter->getSelector(); in findGetter()
585 Getter = LookupMethodInReceiverType(S, prop->getGetterName(), RefExpr); in findGetter()
586 return (Getter != nullptr); in findGetter()
684 if (!Getter) { in buildGet()
[all …]
DSemaExprObjC.cpp1572 ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Sel); in HandleExprPropertyRefExpr() local
1575 if (!Getter) in HandleExprPropertyRefExpr()
1576 Getter = LookupMethodInQualifiedType(Sel, OPT, true); in HandleExprPropertyRefExpr()
1579 if (!Getter) in HandleExprPropertyRefExpr()
1580 Getter = IFace->lookupPrivateMethod(Sel); in HandleExprPropertyRefExpr()
1582 if (Getter) { in HandleExprPropertyRefExpr()
1584 if (DiagnoseUseOfDecl(Getter, MemberLoc)) in HandleExprPropertyRefExpr()
1623 if (Getter || Setter) { in HandleExprPropertyRefExpr()
1626 ObjCPropertyRefExpr(Getter, Setter, Context.PseudoObjectTy, VK_LValue, in HandleExprPropertyRefExpr()
1630 ObjCPropertyRefExpr(Getter, Setter, Context.PseudoObjectTy, VK_LValue, in HandleExprPropertyRefExpr()
[all …]
DSemaExprMember.cpp1491 ObjCMethodDecl *Getter; in LookupMemberExpr() local
1492 if ((Getter = IFace->lookupClassMethod(Sel))) { in LookupMemberExpr()
1494 if (S.DiagnoseUseOfDecl(Getter, MemberLoc)) in LookupMemberExpr()
1497 Getter = IFace->lookupPrivateMethod(Sel, false); in LookupMemberExpr()
1514 if (Getter || Setter) { in LookupMemberExpr()
1516 Getter, Setter, S.Context.PseudoObjectTy, VK_LValue, in LookupMemberExpr()
DSemaCodeComplete.cpp4863 CodeCompletionBuilder Getter(Results.getAllocator(), in CodeCompleteObjCPropertyFlags() local
4865 Getter.AddTypedTextChunk("getter"); in CodeCompleteObjCPropertyFlags()
4866 Getter.AddTextChunk("="); in CodeCompleteObjCPropertyFlags()
4867 Getter.AddPlaceholderChunk("method"); in CodeCompleteObjCPropertyFlags()
4868 Results.AddResult(CodeCompletionResult(Getter.TakeString())); in CodeCompleteObjCPropertyFlags()
/external/protobuf/python/google/protobuf/internal/
Dcpp_message.py81 def Getter(self): function
87 return property(Getter, Setter)
93 def Getter(self): function
101 return property(Getter)
172 def Getter(self): function
184 return property(Getter, Setter, doc=doc)
277 def Getter(self): function
290 return property(Getter, Setter, doc=doc)
/external/clang/include/clang/AST/
DExprObjC.h591 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter,
597 PropertyOrGetter(Getter, true), SetterAndMethodRefFlags(Setter, 0),
602 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter,
607 PropertyOrGetter(Getter, true), SetterAndMethodRefFlags(Setter, 0),
612 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter,
617 PropertyOrGetter(Getter, true), SetterAndMethodRefFlags(Setter, 0),
694 if (const ObjCMethodDecl *Getter = PDecl->getGetterMethodDecl())
695 ResultType = Getter->getReturnType();
699 const ObjCMethodDecl *Getter = getImplicitPropertyGetter();
700 if (Getter)
[all …]
DDeclCXX.h3227 IdentifierInfo *Getter, IdentifierInfo *Setter) in MSPropertyDecl() argument
3229 GetterId(Getter), SetterId(Setter) {} in MSPropertyDecl()
3235 IdentifierInfo *Getter, IdentifierInfo *Setter);
/external/clang/include/clang/ASTMatchers/
DASTMatchersMacros.h338 template <typename T> struct TypeMatcher##MatcherName##Getter { \
343 QualType, internal::TypeMatcher##MatcherName##Getter, \
350 template <typename T> struct TypeLocMatcher##MatcherName##Getter { \
355 TypeLoc, internal::TypeLocMatcher##MatcherName##Getter, \
DASTMatchersInternal.h1477 template <typename OuterT> class Getter,
1482 typedef TypeTraversePolymorphicMatcher<InnerTBase, Getter, MatcherImpl,
1495 new MatcherImpl<OuterT>(InnerMatcher, Getter<OuterT>::value()));
1527 template <typename InnerTBase, template <typename OuterT> class Getter,
1529 TypeTraversePolymorphicMatcher<InnerTBase, Getter, MatcherImpl, ReturnTypesF>
1531 InnerTBase, Getter, MatcherImpl,
/external/v8/src/
Daccessors.h46 static void name##Getter( \
61 k##name##Getter, \
Dserialize.cc369 Add(FUNCTION_ADDR(&Accessors::name##Getter), \ in PopulateTable()
371 Accessors::k##name##Getter, \ in PopulateTable()
/external/valgrind/drd/tests/
Dtsan_unittest.cpp467 void Getter() { in Getter() function
474 MyThreadArray t(Putter, Getter); in Run()
809 void Getter() { in Getter() function
821 MyThreadArray t(Putter, Getter); in Run()
909 void Getter() { in Getter() function
917 MyThreadArray t(Getter, Putter1, Putter2); in Run()
1427 void Getter() { in Getter() function
1436 MyThreadArray t(Getter, Putter, Putter); in Run()
1469 void Getter() { in Getter() function
1481 MyThreadArray t(Getter, Getter, Putter1, Putter2); in Run()
[all …]
/external/chromium-trace/trace-viewer/third_party/WebOb/docs/pycon2011/
Drequest_table.rst36 Environ Getter Properties
/external/clang/lib/ARCMigrate/
DObjCMT.cpp462 static void rewriteToObjCProperty(const ObjCMethodDecl *Getter, in rewriteToObjCProperty() argument
479 std::string PropertyNameString = Getter->getNameAsString(); in rewriteToObjCProperty()
500 QualType QT = Getter->getReturnType(); in rewriteToObjCProperty()
504 QualType ResType = Context.getCanonicalType(Getter->getReturnType()); in rewriteToObjCProperty()
515 QualType RT = Getter->getReturnType(); in rewriteToObjCProperty()
553 SourceLocation StartGetterSelectorLoc = Getter->getSelectorStartLoc(); in rewriteToObjCProperty()
554 Selector GetterSelector = Getter->getSelector(); in rewriteToObjCProperty()
558 commit.replace(CharSourceRange::getCharRange(Getter->getLocStart(), in rewriteToObjCProperty()
/external/clang/lib/CodeGen/
DCGDebugInfo.cpp1626 const ObjCMethodDecl *Getter) { in hasDefaultGetterName() argument
1628 if (!Getter) in hasDefaultGetterName()
1631 assert(Getter->getDeclName().isObjCZeroArgSelector()); in hasDefaultGetterName()
1633 Getter->getDeclName().getObjCSelector().getNameForSlot(0); in hasDefaultGetterName()
1720 ObjCMethodDecl *Getter = PD->getGetterMethodDecl(); in CreateTypeDefinition() local
1724 hasDefaultGetterName(PD, Getter) ? "" in CreateTypeDefinition()
1794 ObjCMethodDecl *Getter = PD->getGetterMethodDecl(); in CreateTypeDefinition() local
1798 hasDefaultGetterName(PD, Getter) ? "" : getSelectorName( in CreateTypeDefinition()
/external/v8/test/cctest/
Dtest-cpu-profiler.cc770 static void Getter(v8::Local<v8::String> name, in Getter() function in TestApiCallbacks
831 &TestApiCallbacks::Getter, &TestApiCallbacks::Setter, data); in TEST()
876 &TestApiCallbacks::Getter, &TestApiCallbacks::Setter, data); in TEST()
/external/clang/lib/AST/
DDeclCXX.cpp2184 IdentifierInfo *Getter, in Create() argument
2186 return new (C, DC) MSPropertyDecl(DC, L, N, T, TInfo, StartL, Getter, Setter); in Create()
/external/clang/lib/Frontend/Rewrite/
DRewriteObjC.cpp5403 if (ObjCMethodDecl *Getter = PD->getGetterMethodDecl()) in RewriteObjCClassMetaData() local
5404 if (!Getter->isDefined()) in RewriteObjCClassMetaData()
5405 InstanceMethods.push_back(Getter); in RewriteObjCClassMetaData()
5681 if (ObjCMethodDecl *Getter = PD->getGetterMethodDecl()) in RewriteObjCCategoryImplDecl() local
5682 InstanceMethods.push_back(Getter); in RewriteObjCCategoryImplDecl()
/external/chromium-trace/trace-viewer/third_party/WebOb/docs/
Ddifferences.txt629 * Getter/setters for parsed forms of headers, specifically
/external/v8/test/webkit/fast/js/
DObject-defineProperty-expected.txt59 PASS Object.defineProperty({}, 'foo', {get: null}) threw exception TypeError: Getter must be a func…

12