HomeSort by relevance Sort by last modified time
    Searched refs:Getter (Results 1 - 25 of 66) sorted by null

1 2 3

  /external/droiddriver/src/io/appium/droiddriver/scroll/
SentinelStrategy.java 43 public static abstract class Getter implements Finder {
46 protected Getter() {
51 protected Getter(Predicate<? super UiElement> predicate) {
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()
    [all...]
StaticSentinelStrategy.java 45 public StaticSentinelStrategy(Getter backwardGetter, Getter forwardGetter,
DynamicSentinelStrategy.java 103 // error could also cause this, e.g. a bad choice of Getter, which
180 * Constructs with {@code Getter}s that decorate the given {@code Getter}s
182 * {@code directionConverter}. Be careful with {@code Getter}s: the sentinel
185 public DynamicSentinelStrategy(IsUpdatedStrategy isUpdatedStrategy, Getter backwardGetter,
186 Getter forwardGetter, DirectionConverter directionConverter) {
195 public DynamicSentinelStrategy(IsUpdatedStrategy isUpdatedStrategy, Getter backwardGetter,
196 Getter forwardGetter) {
204 public DynamicSentinelStrategy(IsUpdatedStrategy isUpdatedStrategy, Getter backwardGetter) {
  /external/clang/tools/libclang/
CIndexInclusionStack.cpp 42 const SrcMgr::SLocEntry &(SourceManager::*Getter)(unsigned, bool*) const;
44 Getter = &SourceManager::getLoadedSLocEntry;
47 Getter = &SourceManager::getLocalSLocEntry;
51 const SrcMgr::SLocEntry &SL = (SM.*Getter)(i, &Invalid);
  /libnativehelper/include/nativehelper/
toStringArray.h 28 template <typename Counter, typename Getter>
29 jobjectArray toStringArray(JNIEnv* env, Counter* counter, Getter* getter) {
36 ScopedLocalRef<jstring> s(env, env->NewStringUTF((*getter)(i)));
65 VectorGetter getter(strings);
66 return toStringArray<VectorCounter, VectorGetter>(env, &counter, &getter);
  /external/v8/src/
accessors.h 53 static void name##Getter( \
68 k##name##Getter, \
100 AccessorNameGetterCallback getter,
  /external/v8/test/mjsunit/es7/
array-includes.js 10 // Array.prototype.includes sees a new element added by a getter that is hit
239 assertUnreachable("Getter for 0 was called");
243 assertUnreachable("Getter for 1 was called");
309 assertUnreachable("Getter for 0 was called");
313 assertUnreachable("Getter for 1 was called");
331 assertUnreachable("Getter for 1 was called");
410 assertUnreachable("Getter for 1 was called");
422 assertUnreachable("Getter for 0 was called");
426 assertUnreachable("Getter for 1 was called");
472 assertUnreachable("Getter for 0 was called")
    [all...]
  /external/clang/lib/Sema/
SemaPseudoObject.cpp 21 // of the associated 'getter' selector, typically:
256 /// Postfix increment and decrement always use the getter result as the
269 ObjCMethodDecl *Getter;
278 SyntacticRefExpr(nullptr), InstanceReceiver(nullptr), Getter(nullptr),
584 } else if (Getter) {
585 T = Getter->getReturnType();
594 if (Getter) return true;
598 if ((Getter = RefExpr->getImplicitPropertyGetter())) {
599 GetterSelector = Getter->getSelector();
603 // Must build the getter selector the hard way
    [all...]
SemaExprObjC.cpp     [all...]
SemaExprMember.cpp 425 // Also must look for a getter or setter name which uses property syntax.
    [all...]
  /external/clang/include/clang/ASTMatchers/
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, \
ASTMatchersInternal.h     [all...]
  /external/v8/test/mjsunit/es6/
array-tostring.js 39 // Getter throws
48 // Getter does not throw
62 // With getter
77 // With getter
105 // With getter
object-tostring.js 39 // Getter throws
48 // Getter does not throw
62 // With getter
77 // With getter
104 // With getter
  /external/protobuf/python/google/protobuf/internal/
cpp_message.py 81 def Getter(self):
87 return property(Getter, Setter)
93 def Getter(self):
101 return property(Getter)
172 def Getter(self):
184 return property(Getter, Setter, doc=doc)
277 def Getter(self):
290 return property(Getter, Setter, doc=doc)
  /external/v8/test/mjsunit/
debug-stepframe.js 29 // Getter call.
object-create.js 95 // Add a getter foo that returns a counter value.
108 // Make sure that trying to add both a value and a getter
205 assertTrue(/Getter must be a function/.test(e));
219 assertTrue(/Getter must be a function/.test(e));
object-literal.js 160 // Getter/setter property, read and write.
  /external/valgrind/drd/tests/
tsan_unittest.cpp 459 // Putter: Getter:
471 void Getter() {
478 MyThreadArray t(Putter, Getter);
795 // Putter: Getter:
813 void Getter() {
825 MyThreadArray t(Putter, Getter);
897 // Putter2: Putter1: Getter:
913 void Getter() {
921 MyThreadArray t(Getter, Putter1, Putter2);
    [all...]
  /external/clang/include/clang/AST/
ExprObjC.h 553 /// to the getter, the setter, or both.
566 // implicit property with no getter (because the 'foo' -> 'setFoo:'
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),
666 /// getter.
738 void setImplicitProperty(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter
    [all...]
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-runtime/0.13.1513/
kotlin-runtime-0.13.1513.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-runtime/0.13.1514/
kotlin-runtime-0.13.1514.jar 
  /external/clang/lib/ARCMigrate/
ObjCMT.cpp 261 // Find space location range between receiver expression and getter method.
268 // rewrite getter method expression into: receiver.property or
452 static void rewriteToObjCProperty(const ObjCMethodDecl *Getter,
469 std::string PropertyNameString = Getter->getNameAsString();
473 PropertyString += "(getter=";
477 PropertyString += ", getter=";
490 QualType QT = Getter->getReturnType();
494 QualType ResType = Context.getCanonicalType(Getter->getReturnType());
505 QualType RT = Getter->getReturnType();
543 SourceLocation StartGetterSelectorLoc = Getter->getSelectorStartLoc()
    [all...]
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-runtime/1.0.0/
kotlin-runtime-1.0.0.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-runtime/1.0.0-beta-1103/
kotlin-runtime-1.0.0-beta-1103.jar 

Completed in 983 milliseconds

1 2 3