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

1 2 3

  /external/droiddriver/src/com/google/android/droiddriver/
DroidDriver.java 21 import com.google.android.droiddriver.finders.Finder;
28 boolean has(Finder finder);
49 * and checkExists return as soon as the finder is found. If it is not found,
53 boolean has(Finder finder, long timeoutMillis);
56 * Returns the first {@link UiElement} found using the given finder. This
59 * @param finder The matching mechanism
64 UiElement on(Finder finder);
    [all...]
Poller.java 20 import com.google.android.droiddriver.finders.Finder;
34 void onTimeout(DroidDriver driver, Finder finder);
44 void onPolling(DroidDriver driver, Finder finder);
76 T check(DroidDriver driver, Finder finder) throws UnsatisfiedConditionException;
89 public UiElement check(DroidDriver driver, Finder finder) throws UnsatisfiedConditionException {
91 return driver.find(finder);
    [all...]
  /external/droiddriver/src/com/google/android/droiddriver/finders/
ChainFinder.java 23 * Find UiElement by using the UiElement returned by parent Finder as context
24 * for the child Finder.
26 public class ChainFinder implements Finder {
27 private final Finder parent;
28 private final Finder child;
30 protected ChainFinder(Finder parent, Finder child) {
Finder.java 25 public interface Finder {
27 * Returns the matching UiElement. The implementing finder should not poll.
41 * It is recommended that this method return the description of the finder,
  /external/droiddriver/src/com/google/android/droiddriver/scroll/
Scroller.java 22 import com.google.android.droiddriver.finders.Finder;
33 * @param parentFinder Finder for the container that can scroll, for instance
35 * @param childFinder Finder for the desired child; relative to
40 UiElement scrollTo(DroidDriver driver, Finder parentFinder, Finder childFinder);
47 * @param parentFinder Finder for the container that can scroll, for instance
49 * @param childFinder Finder for the desired child; relative to
55 UiElement scrollTo(DroidDriver driver, Finder parentFinder, Finder childFinder,
SentinelStrategy.java 20 import com.google.android.droiddriver.finders.Finder;
31 * @param parentFinder Finder for the container that can scroll, for instance
36 boolean scroll(DroidDriver driver, Finder parentFinder, ScrollDirection direction);
SentinelScroller.java 26 import com.google.android.droiddriver.finders.Finder;
69 public UiElement scrollTo(DroidDriver driver, Finder parentFinder, Finder childFinder,
100 public UiElement scrollTo(DroidDriver driver, Finder parentFinder, Finder childFinder) {
DynamicSentinelStrategy.java 24 import com.google.android.droiddriver.finders.Finder;
64 private final Finder uniqueStringFinder;
67 * @param uniqueStringFinder a Finder relative to the sentinel that finds
70 public SingleStringUpdated(Finder uniqueStringFinder) {
117 public TextUpdated(Finder uniqueStringFinder) {
132 public ContentDescriptionUpdated(Finder uniqueStringFinder) {
180 public boolean scroll(DroidDriver driver, Finder parentFinder, ScrollDirection direction) {
StaticSentinelStrategy.java 23 import com.google.android.droiddriver.finders.Finder;
49 public boolean scroll(DroidDriver driver, Finder parentFinder, ScrollDirection direction) {
  /external/llvm/lib/Analysis/
ModuleDebugInfoPrinter.cpp 30 DebugInfoFinder Finder;
55 Finder.processModule(M);
60 for (DebugInfoFinder::iterator I = Finder.compile_unit_begin(),
61 E = Finder.compile_unit_end(); I != E; ++I) {
67 for (DebugInfoFinder::iterator I = Finder.subprogram_begin(),
68 E = Finder.subprogram_end(); I != E; ++I) {
74 for (DebugInfoFinder::iterator I = Finder.global_variable_begin(),
75 E = Finder.global_variable_end(); I != E; ++I) {
81 for (DebugInfoFinder::iterator I = Finder.type_begin(),
82 E = Finder.type_end(); I != E; ++I)
    [all...]
  /external/droiddriver/src/com/google/android/droiddriver/exceptions/
ElementNotFoundException.java 19 import com.google.android.droiddriver.finders.Finder;
26 public ElementNotFoundException(Finder finder) {
27 super(failMessage(finder));
30 public ElementNotFoundException(Finder finder, Throwable cause) {
31 super(failMessage(finder), cause);
42 protected static String failMessage(Finder finder) {
43 return "Could not find any element matching " + finder;
    [all...]
  /external/clang/unittests/AST/
DeclTest.cpp 22 MatchFinder Finder;
24 newFrontendActionFactory(&Finder));
StmtPrinterTest.cpp 74 MatchFinder Finder;
75 Finder.addMatcher(NodeMatch, &Printer);
76 OwningPtr<FrontendActionFactory> Factory(newFrontendActionFactory(&Finder));
  /external/chromium_org/sandbox/win/tools/finder/
finder.cc 7 #include "sandbox/win/tools/finder/finder.h"
9 Finder::Finder() {
19 Finder::~Finder() {
24 DWORD Finder::Init(sandbox::TokenLevel token_type,
44 DWORD Finder::Scan() {
finder.h 9 #include "sandbox/win/tools/finder/ntundoc.h"
49 // The finder class handles the search of objects (file system, registry, kernel
53 class Finder {
55 Finder();
56 ~Finder();
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/algorithm/string/
find_format.hpp 28 part(s) of the input. The part to be replaced is looked up using a Finder object.
39 Use the Finder to search for a substring. Use the Formatter to format
46 \param Finder A Finder object used to search for a match to be replaced
61 FinderT Finder,
82 Finder( ::boost::begin(lit_input), ::boost::end(lit_input) ) );
95 FinderT Finder,
113 Finder(::boost::begin(Input), ::boost::end(Input)));
118 Use the Finder to search for a substring. Use the Formatter to format
122 \param Finder A Finder object used to search for a match to be replace
    [all...]
formatter.hpp 24 in conjunction with a Finder. A Finder can provide additional information
94 Constructs a \c dissect_formatter. Dissect formatter uses a specified finder
95 to extract a portion of the formatted sequence. The first finder's match is returned
98 \param Finder a finder used to select a portion of the formated sequence
103 dissect_formatter(const FinderT& Finder)
105 return detail::dissect_formatF<FinderT>(Finder);
  /external/clang/unittests/ASTMatchers/
ASTMatchersTest.h 58 MatchFinder Finder;
59 Finder.addMatcher(AMatcher, new VerifyMatch(0, &Found));
60 OwningPtr<FrontendActionFactory> Factory(newFrontendActionFactory(&Finder));
94 MatchFinder Finder;
95 Finder.addMatcher(
97 OwningPtr<FrontendActionFactory> Factory(newFrontendActionFactory(&Finder));
  /external/clang/include/clang/ASTMatchers/
ASTMatchersInternal.h 178 /// the AST via 'Finder'.
180 ASTMatchFinder *Finder,
197 ASTMatchFinder * /* Finder */,
214 ASTMatchFinder *Finder,
293 ASTMatchFinder *Finder,
295 if (Implementation->matches(Node, Finder, Builder))
318 ASTMatchFinder *Finder,
322 return matches(*Node, Finder, Builder);
341 ASTMatchFinder *Finder,
345 return InnerMatcher.matches(*Node, Finder, Builder)
    [all...]
ASTMatchers.h 319 return matchesFirstInRange(InnerMatcher, List.begin(), List.end(), Finder,
350 return InnerMatcher.matches(*Node.IgnoreImpCasts(), Finder, Builder);
371 return InnerMatcher.matches(*Node.IgnoreParenCasts(), Finder, Builder);
397 return InnerMatcher.matches(*Node.IgnoreParenImpCasts(), Finder, Builder);
417 return InnerMatcher.matches(List.get(N), Finder, Builder);
435 return InnerMatcher.matches(Node.getAsType(), Finder, Builder);
453 return InnerMatcher.matches(*Node.getAsDecl(), Finder, Builder);
856 InnerMatcher.matches(*Increment, Finder, Builder));
870 return (Init != NULL && InnerMatcher.matches(*Init, Finder, Builder));
    [all...]
ASTMatchersMacros.h 30 // return InnerMatcher.matches(*Node.getMemberDecl(), Finder, Builder);
47 /// Finder: an ASTMatchFinder*.
56 virtual bool matches(const Type &Node, ASTMatchFinder *Finder, \
65 const Type &Node, ASTMatchFinder *Finder, \
77 /// Finder: an ASTMatchFinder*.
93 virtual bool matches(const Type &Node, ASTMatchFinder *Finder, \
107 const Type &Node, ASTMatchFinder *Finder, \
120 /// Finder: an ASTMatchFinder*.
138 virtual bool matches(const Type &Node, ASTMatchFinder *Finder, \
155 const Type &Node, ASTMatchFinder *Finder, \
    [all...]
ASTMatchFinder.h 33 // MatchFinder finder;
34 // finder.AddMatcher(Id("id", record(hasName("::a_namespace::AClass"))),
36 // return Tool.Run(newFrontendActionFactory(&finder));
229 MatchFinder Finder;
230 Finder.addMatcher(Matcher, &Callback);
231 Finder.match(Node, Context);
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/algorithm/string/detail/
find_format_all.hpp 37 FinderT Finder,
66 M=Finder( LastMatch, ::boost::end(Input) );
84 FinderT Finder,
92 Finder,
111 FinderT Finder,
143 M=Finder( LastMatch, ::boost::end(Input) );
159 FinderT Finder,
166 Finder,
185 FinderT Finder,
225 M=Finder( SearchIt, ::boost::end(Input) )
    [all...]
formatter.hpp 98 dissect_formatF(FinderT Finder) :
99 m_Finder(Finder) {}
  /external/droiddriver/src/com/google/android/droiddriver/base/
AbstractDroidDriver.java 31 import com.google.android.droiddriver.finders.Finder;
54 public UiElement find(Finder finder) {
55 Logs.call(this, "find", finder);
56 return finder.find(refreshRootElement());
60 public boolean has(Finder finder) {
62 find(finder);
70 public boolean has(Finder finder, long timeoutMillis)
    [all...]

Completed in 246 milliseconds

1 2 3