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

1 2 3 4 5

  /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/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/opencv/cvaux/src/
cvclique.cpp 129 void cvStartFindCliques( CvGraph* graph, CvCliqueFinder* finder, int reverse, int weighted, int weighted_edges )
135 finder->weighted = 1;
136 finder->best_weight = 0;
137 finder->vertex_weights = (float*)malloc( sizeof(float)*(graph->total+1));
138 finder->cur_weight = (float*)malloc( sizeof(float)*(graph->total+1));
139 finder->cand_weight = (float*)malloc( sizeof(float)*(graph->total+1));
141 finder->cur_weight[0] = 0;
142 finder->cand_weight[0] = 0;
148 finder->vertex_weights[i] = ver->weight;
149 finder->cand_weight[0] += ver->weight;
    [all...]
  /external/mockito/src/org/mockito/internal/debugging/
WarningsPrinterImpl.java 17 private WarningsFinder finder; field in class:WarningsPrinterImpl
27 WarningsPrinterImpl(boolean warnAboutUnstubbed, WarningsFinder finder) {
29 this.finder = finder;
33 finder.find(new LoggingListener(warnAboutUnstubbed, logger));
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
IncludeFinderTest.java 60 IncludeFinder finder = IncludeFinder.create(); local
61 assertEquals(null, finder.getIncludedBy("foo"));
63 finder.setIncluded("bar", Arrays.<String>asList("foo", "baz"), false);
64 finder.setIncluded("baz", Arrays.<String>asList("foo"), false);
65 assertEquals(Arrays.asList("bar", "baz"), finder.getIncludedBy("foo"));
66 finder.setIncluded("bar", Collections.<String>emptyList(), false);
67 assertEquals(Arrays.asList("baz"), finder.getIncludedBy("foo"));
68 finder.setIncluded("baz", Collections.<String>emptyList(), false);
69 assertEquals(Collections.emptyList(), finder.getIncludedBy("foo"));
  /external/chromium_org/chrome/browser/
screensaver_window_finder_x11.cc 17 ScreensaverWindowFinder finder; local
18 ui::EnumerateTopLevelWindows(&finder);
19 return finder.exists_ && !err_tracker.FoundNewError();
  /external/chromium_org/chrome/renderer/extensions/
tab_finder.cc 18 TabFinder finder(tab_id);
19 RenderView::ForEach(&finder);
20 return finder.view_;
  /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...]
  /external/mockito/src/org/mockito/internal/verification/checkers/
MissingInvocationInOrderChecker.java 22 private final InvocationsFinder finder; field in class:MissingInvocationInOrderChecker
28 MissingInvocationInOrderChecker(InvocationsFinder finder, Reporter reporter) {
29 this.finder = finder;
34 List<Invocation> chunk = finder.findAllMatchingUnverifiedChunks(invocations, wanted, context);
40 Invocation previousInOrder = finder.findPreviousVerifiedInOrder(invocations, context);
49 List<Invocation> actualInvocations = finder.findInvocations(invocations, wanted);
51 Invocation similar = finder.findSimilarInvocation(invocations, wanted);
MissingInvocationChecker.java 20 private final InvocationsFinder finder; field in class:MissingInvocationChecker
26 MissingInvocationChecker(InvocationsFinder finder, Reporter reporter) {
27 this.finder = finder;
32 List<Invocation> actualInvocations = finder.findInvocations(invocations, wanted);
35 Invocation similar = finder.findSimilarInvocation(invocations, wanted);
NumberOfInvocationsChecker.java 21 private final InvocationsFinder finder; field in class:NumberOfInvocationsChecker
28 NumberOfInvocationsChecker(Reporter reporter, InvocationsFinder finder) {
30 this.finder = finder;
34 List<Invocation> actualInvocations = finder.findInvocations(invocations, wanted);
38 Location lastInvocation = finder.getLastLocation(actualInvocations);
NumberOfInvocationsInOrderChecker.java 22 private final InvocationsFinder finder; field in class:NumberOfInvocationsInOrderChecker
29 NumberOfInvocationsInOrderChecker(InvocationsFinder finder, Reporter reporter) {
30 this.finder = finder;
35 List<Invocation> chunk = finder.findMatchingChunk(invocations, wanted, wantedCount, context);
40 Location lastInvocation = finder.getLastLocation(chunk);
NonGreedyNumberOfInvocationsInOrderChecker.java 21 private final InvocationsFinder finder; field in class:NonGreedyNumberOfInvocationsInOrderChecker
29 NonGreedyNumberOfInvocationsInOrderChecker(InvocationsFinder finder, Reporter reporter, InvocationMarker marker ) {
30 this.finder = finder;
39 Invocation next = finder.findFirstMatchingUnverifiedInvocation( invocations, wanted, context );
AtLeastXNumberOfInvocationsChecker.java 20 InvocationsFinder finder = new InvocationsFinder(); field in class:AtLeastXNumberOfInvocationsChecker
24 List<Invocation> actualInvocations = finder.findInvocations(invocations, wanted);
28 Location lastLocation = finder.getLastLocation(actualInvocations);
AtLeastXNumberOfInvocationsInOrderChecker.java 21 private final InvocationsFinder finder = new InvocationsFinder(); field in class:AtLeastXNumberOfInvocationsInOrderChecker
30 List<Invocation> chunk = finder.findAllMatchingUnverifiedChunks(invocations, wanted, orderingContext);
35 Location lastLocation = finder.getLastLocation(chunk);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/test/
finder_unittest.py 28 from webkitpy.test.finder import Finder
43 self.finder = Finder(self.fs)
44 self.finder.add_tree('/foo', 'bar')
45 self.finder.add_tree('/foo2')
61 self.assertEqual(self.finder.additional_paths(['/usr']),
65 self.assertTrue(self.finder.is_module('bar.baz'))
66 self.assertTrue(self.finder.is_module('bar2.baz2'))
67 self.assertTrue(self.finder.is_module('bar2.baz2_integrationtest')
    [all...]
  /external/chromium/chrome/browser/
idle_linux.cc 59 ScreensaverWindowFinder finder; local
60 gtk_util::EnumerateTopLevelWindows(&finder);
61 return finder.exists();
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
findertools.py 1 """Utility routines depending on the finder,
10 the Finder returns the process *names* which can then be
12 the Finder returns a code which does not seem to work.
21 import Finder
37 """returns basic (recyclable) Finder AE interface object"""
40 _finder_talker = Finder.Finder()
46 """Open a file thru the finder. Specify file by name or fsspec"""
47 finder = _getfinder()
49 return finder.open(fss
    [all...]
  /external/chromium/chrome/browser/ui/tabs/
dock_info_win.cc 34 BaseWindowFinder* finder = reinterpret_cast<BaseWindowFinder*>(lParam); local
35 if (finder->ignore_.find(hwnd) != finder->ignore_.end())
38 return finder->ShouldStopIterating(hwnd) ? FALSE : TRUE;
58 TopMostFinder finder(window, screen_loc, ignore);
59 return finder.is_top_most_;
148 LocalProcessWindowFinder finder(screen_loc, ignore);
149 if (finder.result_ &&
150 TopMostFinder::IsTopMostWindowAtPoint(finder.result_, screen_loc,
152 return finder.result_
    [all...]
dock_info_gtk.cc 64 TopMostFinder finder(window, screen_loc, ignore);
65 return finder.is_top_most_;
131 LocalProcessWindowFinder finder(screen_loc, ignore);
132 if (finder.result_ &&
133 TopMostFinder::IsTopMostWindowAtPoint(finder.result_, screen_loc,
135 return finder.result_;
  /external/droiddriver/src/com/google/android/droiddriver/util/
DefaultPoller.java 24 import com.google.android.droiddriver.finders.Finder;
60 public <T> T pollFor(DroidDriver driver, Finder finder, ConditionChecker<T> checker) {
61 return pollFor(driver, finder, checker, timeoutMillis);
65 public <T> T pollFor(DroidDriver driver, Finder finder, ConditionChecker<T> checker,
70 return checker.check(driver, finder);
78 timeoutListener.onTimeout(driver, finder);
81 "Timed out after %d milliseconds waiting for %s %s", timeoutMillis, finder, checker));
85 pollingListener.onPolling(driver, finder);
    [all...]
  /external/chromium_org/chrome/browser/ui/views/tabs/
dock_info_win.cc 41 BaseWindowFinder* finder = reinterpret_cast<BaseWindowFinder*>(lParam); local
42 if (finder->ignore_.find(hwnd) != finder->ignore_.end())
45 return finder->ShouldStopIterating(hwnd) ? FALSE : TRUE;
73 TopMostFinder finder(window, screen_loc, ignore);
74 return finder.is_top_most_;
164 LocalProcessWindowFinder finder(screen_loc, ignore);
168 if (finder.result_ &&
171 TopMostFinder::IsTopMostWindowAtPoint(finder.result_, screen_loc,
175 finder.result_)
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/
print_layout_test_types.py 45 finder = layout_test_finder.LayoutTestFinder(port, options)
46 _, tests = finder.find_tests(options, args)
  /external/mockito/src/org/mockito/internal/verification/
Only.java 19 private final InvocationsFinder finder = new InvocationsFinder(); field in class:Only
27 List<Invocation> chunk = finder.findInvocations(invocations,wantedMatcher);
29 Invocation unverified = finder.findFirstUnverified(invocations);

Completed in 8087 milliseconds

1 2 3 4 5