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

1 2

  /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...]
  /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)
main.py 41 from webkitpy.test.runner import Runner, unit_test_name
175 test_runner = Runner(self.printer, loader, self.webkit_finder)
  /external/chromium_org/tools/cr/cr/actions/
runner.py 5 """A module for the Runner base class."""
10 class Runner(cr.Action, cr.Plugin.Type):
13 Runner implementations must implement the Kill, Run and Test methods.
17 SELECTOR_ARG = '--runner'
19 SELECTOR_HELP = 'Sets the runner to use to execute the target.'
72 class SkipRunner(Runner):
73 """A Runner the user chooses to bypass the run step of a command."""
  /external/chromium_org/v8/tools/testrunner/local/
execution.py 60 class Runner(object):
75 progress_indicator.runner = self
  /libcore/benchmarks/src/benchmarks/regression/
DateToStringBenchmark.java 20 import com.google.caliper.Runner;
65 Runner.main(DateToStringBenchmark.class, args);
MutableIntBenchmark.java 20 import com.google.caliper.Runner;
90 Runner.main(MutableIntBenchmark.class, args);
HostnameVerifierBenchmark.java 20 import com.google.caliper.Runner;
168 Runner.main(HostnameVerifierBenchmark.class, args);
AnnotatedElementBenchmark.java 19 import com.google.caliper.Runner;
201 Runner.main(AnnotatedElementBenchmark.class, args);
ParseBenchmark.java 20 import com.google.caliper.Runner;
105 Runner.main(ParseBenchmark.class, args);
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/tests/
__init__.py 49 class Runner:
60 runner = Runner()
64 failures |= runner.run(test)
  /external/chromium_org/v8/tools/
run_benchmarks.py 7 Performance runner for d8.
21 "main": <main js benchmark runner file>,
53 Full example (suite with one runner):
252 def Run(self, runner):
254 for stdout in runner():
265 def Run(self, runner):
267 for stdout in runner():
376 def Runner():
391 results += runnable.Run(Runner)
  /external/jsoncpp/src/test_lib_json/
jsontest.h 146 class Runner
149 Runner();
152 Runner &add( TestCaseFactory factory );
175 Runner( const Runner &other );
176 Runner &operator =( const Runner &other );
270 #define JSONTEST_REGISTER_FIXTURE( runner, FixtureType, name ) \
271 (runner).add( JSONTEST_FIXTURE_FACTORY( FixtureType, name ) )
jsontest.cpp 293 // class Runner
296 Runner::Runner()
301 Runner &
302 Runner::add( TestCaseFactory factory )
310 Runner::testCount() const
317 Runner::testNameAt( unsigned int index ) const
327 Runner::runTestAt( unsigned int index, TestResult &result ) const
355 Runner::runAllTest( bool printSummary ) const
397 Runner::testIndex( const std::string &testName,
    [all...]
  /libcore/benchmarks/src/benchmarks/
XmlParseBenchmark.java 20 import com.google.caliper.Runner;
151 Runner.main(XmlParseBenchmark.class, args);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/test/
test_runner.py 144 runner = unittest.TextTestRunner()
145 self.assertFalse(runner.failfast)
146 self.assertFalse(runner.buffer)
147 self.assertEqual(runner.verbosity, 1)
148 self.assertTrue(runner.descriptions)
149 self.assertEqual(runner.resultclass, unittest.TextTestResult)
170 runner = unittest.TextTestRunner(stream=StringIO(), failfast=True,
173 runner._makeResult = lambda: result
174 runner.run(Test('testFoo'))
183 originalRegisterResult = unittest.runner.registerResul
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/test/
test_runner.py 144 runner = unittest.TextTestRunner()
145 self.assertFalse(runner.failfast)
146 self.assertFalse(runner.buffer)
147 self.assertEqual(runner.verbosity, 1)
148 self.assertTrue(runner.descriptions)
149 self.assertEqual(runner.resultclass, unittest.TextTestResult)
170 runner = unittest.TextTestRunner(stream=StringIO(), failfast=True,
173 runner._makeResult = lambda: result
174 runner.run(Test('testFoo'))
183 originalRegisterResult = unittest.runner.registerResul
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/compiler-runner/src/org/chromium/devtools/compiler/
Runner.java 30 public class Runner {
35 public Runner(String[] args, PrintStream err) {
164 Runner runner = new Runner(args, System.err); local
165 if (runner.shouldRunCompiler()) {
166 runner.run();
214 LocalCommandLineRunner runner = local
216 if (!runner.shouldRunCompiler()) {
219 this.result = runner.execute()
    [all...]
  /libcore/support/src/test/java/tests/resources/
junit4-4.3.1.jar 

Completed in 3612 milliseconds

1 2