HomeSort by relevance Sort by last modified time
    Searched defs:Runner (Results 1 - 22 of 22) sorted by null

  /external/chromium_org/gin/
runner.cc 5 #include "gin/runner.h"
9 Runner::Runner() : weak_factory_(this) {
12 Runner::~Runner() {
15 Runner::Scope::Scope(Runner* runner)
16 : isolate_scope_(runner->GetContextHolder()->isolate()),
17 handle_scope_(runner->GetContextHolder()->isolate())
    [all...]
runner.h 17 // Runner is responsible for running code in a v8::Context.
18 class GIN_EXPORT Runner {
20 Runner();
21 virtual ~Runner();
23 // Before running script in this context, you'll need to enter the runner's
24 // context by creating an instance of Runner::Scope on the stack.
38 // holding a raw pointer to the runner, consider holding a WeakPtr.
39 base::WeakPtr<Runner> GetWeakPtr() {
45 explicit Scope(Runner* runner);
    [all...]
  /external/chromium_org/chrome/renderer/resources/
offline.js 7 * T-Rex runner.
13 function Runner(outerContainerId, opt_config) {
15 if (Runner.instance_) {
16 return Runner.instance_;
18 Runner.instance_ = this;
23 this.config = opt_config || Runner.config;
25 this.dimensions = Runner.defaultDimensions;
65 window['Runner'] = Runner;
94 Runner.config =
    [all...]
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/return_object/
Runner.java 19 public interface Runner {
Test_return_object.java 163 //@uses dot.junit.opcodes.return_object.Runner
169 Runner r = rg.run();
170 assertFalse(r instanceof Runner);
171 assertFalse(Runner.class.isAssignableFrom(r.getClass()));
  /external/junit/src/org/junit/runner/
Runner.java 1 package org.junit.runner;
3 import org.junit.runner.notification.RunNotifier;
6 * A <code>Runner</code> runs tests and notifies a {@link org.junit.runner.notification.RunNotifier}
7 * of significant events as it does so. You will need to subclass <code>Runner</code>
8 * when using {@link org.junit.runner.RunWith} to invoke a custom runner. When creating
9 * a custom runner, in addition to implementing the abstract methods here you must
13 * The default runner implementation guarantees that the instances of the test case
14 * class will be constructed immediately before running the test and that the runner
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/compiler-runner/
closure-runner.jar 
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/test/
runner.py 40 class Runner(object):
runner_unittest.py 33 from webkitpy.test.runner import Runner
96 runner = Runner(Printer(stream, options), loader, WebKitFinder(FileSystem()))
97 runner.run(['Foo.test1', 'Foo.test2', 'Foo.test3'], 1)
98 self.assertEqual(runner.tests_run, 3)
99 self.assertEqual(len(runner.failures), 1)
100 self.assertEqual(len(runner.errors), 1)