/external/droiddriver/src/io/appium/droiddriver/scroll/ |
D | SentinelStrategy.java | 43 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 …]
|
D | DynamicSentinelStrategy.java | 185 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()
|
D | StaticSentinelStrategy.java | 45 public StaticSentinelStrategy(Getter backwardGetter, Getter forwardGetter, in StaticSentinelStrategy()
|
/external/clang/tools/libclang/ |
D | CIndexInclusionStack.cpp | 42 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()
|
D | IndexingContext.cpp | 613 if (ObjCMethodDecl *Getter = D->getGetterMethodDecl()) { in handleObjCProperty() local 614 getEntityInfo(Getter, GetterEntity, SA); in handleObjCProperty()
|
/external/clang/lib/Sema/ |
D | SemaPseudoObject.cpp | 269 ObjCMethodDecl *Getter; member in __anon83f8f2be0111::ObjCPropertyOpBuilder 278 SyntacticRefExpr(nullptr), InstanceReceiver(nullptr), Getter(nullptr), in ObjCPropertyOpBuilder() 584 } else if (Getter) { in isWeakProperty() 585 T = Getter->getReturnType(); in isWeakProperty() 594 if (Getter) return true; in findGetter() 598 if ((Getter = RefExpr->getImplicitPropertyGetter())) { in findGetter() 599 GetterSelector = Getter->getSelector(); in findGetter() 617 Getter = LookupMethodInReceiverType(S, prop->getGetterName(), RefExpr); in findGetter() 618 return (Getter != nullptr); in findGetter() 716 if (!Getter) { in buildGet() [all …]
|
D | SemaExprObjC.cpp | 1819 ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Sel); in HandleExprPropertyRefExpr() local 1822 if (!Getter) in HandleExprPropertyRefExpr() 1823 Getter = LookupMethodInQualifiedType(Sel, OPT, true); in HandleExprPropertyRefExpr() 1826 if (!Getter) in HandleExprPropertyRefExpr() 1827 Getter = IFace->lookupPrivateMethod(Sel); in HandleExprPropertyRefExpr() 1829 if (Getter) { in HandleExprPropertyRefExpr() 1831 if (DiagnoseUseOfDecl(Getter, MemberLoc)) in HandleExprPropertyRefExpr() 1870 if (Getter || Setter) { in HandleExprPropertyRefExpr() 1873 ObjCPropertyRefExpr(Getter, Setter, Context.PseudoObjectTy, VK_LValue, in HandleExprPropertyRefExpr() 1877 ObjCPropertyRefExpr(Getter, Setter, Context.PseudoObjectTy, VK_LValue, in HandleExprPropertyRefExpr() [all …]
|
D | SemaExprMember.cpp | 1519 ObjCMethodDecl *Getter; in LookupMemberExpr() local 1520 if ((Getter = IFace->lookupClassMethod(Sel))) { in LookupMemberExpr() 1522 if (S.DiagnoseUseOfDecl(Getter, MemberLoc)) in LookupMemberExpr() 1525 Getter = IFace->lookupPrivateMethod(Sel, false); in LookupMemberExpr() 1542 if (Getter || Setter) { in LookupMemberExpr() 1544 Getter, Setter, S.Context.PseudoObjectTy, VK_LValue, in LookupMemberExpr()
|
/external/protobuf/python/google/protobuf/internal/ |
D | cpp_message.py | 81 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/v8/src/ |
D | accessors.h | 53 static void name##Getter( \ 68 k##name##Getter, \
|
/external/valgrind/drd/tests/ |
D | tsan_unittest.cpp | 471 void Getter() { in Getter() function 478 MyThreadArray t(Putter, Getter); in Run() 813 void Getter() { in Getter() function 825 MyThreadArray t(Putter, Getter); in Run() 913 void Getter() { in Getter() function 921 MyThreadArray t(Getter, Putter1, Putter2); in Run() 1431 void Getter() { in Getter() function 1440 MyThreadArray t(Getter, Putter, Putter); in Run() 1473 void Getter() { in Getter() function 1485 MyThreadArray t(Getter, Getter, Putter1, Putter2); in Run() [all …]
|
/external/clang/include/clang/ASTMatchers/ |
D | ASTMatchersMacros.h | 379 template <typename T> struct TypeMatcher##MatcherName##Getter { \ 385 ::clang::ast_matchers::internal::TypeMatcher##MatcherName##Getter, \ 393 template <typename T> struct TypeLocMatcher##MatcherName##Getter { \ 399 ::clang::ast_matchers::internal::TypeLocMatcher##MatcherName##Getter, \
|
D | ASTMatchersInternal.h | 1498 template <typename OuterT> class Getter, 1503 typedef TypeTraversePolymorphicMatcher<InnerTBase, Getter, MatcherImpl, 1516 new MatcherImpl<OuterT>(InnerMatcher, Getter<OuterT>::value())); 1548 template <typename InnerTBase, template <typename OuterT> class Getter, 1550 TypeTraversePolymorphicMatcher<InnerTBase, Getter, MatcherImpl, ReturnTypesF> 1552 InnerTBase, Getter, MatcherImpl,
|
/external/v8/test/webkit/ |
D | class-syntax-expression-expected.txt | 37 PASS x = class { constructor() {} get foo(x) {} } threw exception SyntaxError: Getter must not have… 38 PASS x = class { constructor() {} get foo({x, y}) {} } threw exception SyntaxError: Getter must not…
|
D | class-syntax-declaration-expected.txt | 39 PASS class X { constructor() {} get foo(x) {} } threw exception SyntaxError: Getter must not have a… 40 PASS class X { constructor() {} get foo({x, y}) {} } threw exception SyntaxError: Getter must not h…
|
/external/clang/include/clang/AST/ |
D | ExprObjC.h | 601 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), 622 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter, 627 PropertyOrGetter(Getter, true), SetterAndMethodRefFlags(Setter, 0), 738 void setImplicitProperty(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter, 740 PropertyOrGetter.setPointer(Getter);
|
D | DeclCXX.h | 3221 IdentifierInfo *Getter, IdentifierInfo *Setter) in MSPropertyDecl() argument 3223 GetterId(Getter), SetterId(Setter) {} in MSPropertyDecl() 3229 IdentifierInfo *Getter, IdentifierInfo *Setter);
|
/external/chromium-trace/catapult/third_party/WebOb/docs/pycon2011/ |
D | request_table.rst | 36 Environ Getter Properties
|
/external/clang/lib/ARCMigrate/ |
D | ObjCMT.cpp | 452 static void rewriteToObjCProperty(const ObjCMethodDecl *Getter, in rewriteToObjCProperty() argument 469 std::string PropertyNameString = Getter->getNameAsString(); in rewriteToObjCProperty() 490 QualType QT = Getter->getReturnType(); in rewriteToObjCProperty() 494 QualType ResType = Context.getCanonicalType(Getter->getReturnType()); in rewriteToObjCProperty() 505 QualType RT = Getter->getReturnType(); in rewriteToObjCProperty() 543 SourceLocation StartGetterSelectorLoc = Getter->getSelectorStartLoc(); in rewriteToObjCProperty() 544 Selector GetterSelector = Getter->getSelector(); in rewriteToObjCProperty() 548 commit.replace(CharSourceRange::getCharRange(Getter->getLocStart(), in rewriteToObjCProperty()
|
/external/llvm/include/llvm/Analysis/ |
D | AliasAnalysis.h | 1017 for (auto &Getter : FunctionResultGetters) in run() 1018 (*Getter)(F, AM, R); in run()
|
/external/clang/lib/CodeGen/ |
D | CGDebugInfo.cpp | 1651 const ObjCMethodDecl *Getter) { in hasDefaultGetterName() argument 1653 if (!Getter) in hasDefaultGetterName() 1656 assert(Getter->getDeclName().isObjCZeroArgSelector()); in hasDefaultGetterName() 1658 Getter->getDeclName().getObjCSelector().getNameForSlot(0); in hasDefaultGetterName() 1807 ObjCMethodDecl *Getter = PD->getGetterMethodDecl(); in CreateTypeDefinition() local 1811 hasDefaultGetterName(PD, Getter) ? "" in CreateTypeDefinition() 1896 ObjCMethodDecl *Getter = PD->getGetterMethodDecl(); in CreateTypeDefinition() local 1900 hasDefaultGetterName(PD, Getter) ? "" : getSelectorName( in CreateTypeDefinition()
|
/external/v8/test/cctest/ |
D | test-cpu-profiler.cc | 795 static void Getter(v8::Local<v8::String> name, in Getter() function in TestApiCallbacks 854 instance_template->SetAccessor(v8_str("foo"), &TestApiCallbacks::Getter, in TEST() 895 instance_template->SetAccessor(v8_str("foo"), &TestApiCallbacks::Getter, in TEST()
|
/external/clang/lib/AST/ |
D | DeclCXX.cpp | 2200 IdentifierInfo *Getter, in Create() argument 2202 return new (C, DC) MSPropertyDecl(DC, L, N, T, TInfo, StartL, Getter, Setter); in Create()
|
/external/clang/lib/Frontend/Rewrite/ |
D | RewriteObjC.cpp | 5388 if (ObjCMethodDecl *Getter = PD->getGetterMethodDecl()) in RewriteObjCClassMetaData() local 5389 if (!Getter->isDefined()) in RewriteObjCClassMetaData() 5390 InstanceMethods.push_back(Getter); in RewriteObjCClassMetaData() 5666 if (ObjCMethodDecl *Getter = PD->getGetterMethodDecl()) in RewriteObjCCategoryImplDecl() local 5667 InstanceMethods.push_back(Getter); in RewriteObjCCategoryImplDecl()
|
/external/chromium-trace/catapult/third_party/WebOb/docs/ |
D | differences.txt | 629 * Getter/setters for parsed forms of headers, specifically
|