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

1 2 3 4

  /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...]
per_context_data.h 16 class Runner;
32 // The Runner associated with this context. To execute script in this context,
33 // please use the appropriate API on Runner.
34 Runner* runner() const { return runner_; } function in class:gin::PerContextData
35 void set_runner(Runner* runner) { runner_ = runner; }
41 Runner* runner_;
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/return_object/
Runner.java 19 public interface Runner {
RunnerGenerator.java 20 public Runner run();
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/compiler-runner/
closure-runner.jar 
  /external/junit/src/org/junit/runners/model/
RunnerBuilder.java 9 import org.junit.runner.Runner;
14 * Only writers of custom runners should use <code>RunnerBuilder</code>s. A custom runner class with a constructor taking
15 * a <code>RunnerBuilder</code> parameter will be passed the instance of <code>RunnerBuilder</code> used to build that runner itself.
17 * imagine a custom runner that builds suites based on a list of classes in a text file:
42 * Override to calculate the correct runner for a test class at runtime.
45 * @return a Runner
46 * @throws Throwable if a runner cannot be constructed
48 public abstract Runner runnerForClass(Class<?> testClass) throws Throwable;
51 * Always returns a runner, even if it is just one that prints an error instead of running tests
    [all...]
  /external/junit/src/org/junit/internal/builders/
IgnoredBuilder.java 7 import org.junit.runner.Runner;
12 public Runner runnerForClass(Class<?> testClass) {
JUnit4Builder.java 6 import org.junit.runner.Runner;
12 public Runner runnerForClass(Class<?> testClass) throws Throwable {
NullBuilder.java 6 import org.junit.runner.Runner;
11 public Runner runnerForClass(Class<?> each) throws Throwable {
IgnoredClassRunner.java 6 import org.junit.runner.Description;
7 import org.junit.runner.Runner;
8 import org.junit.runner.notification.RunNotifier;
10 public class IgnoredClassRunner extends Runner {
JUnit3Builder.java 7 import org.junit.runner.Runner;
12 public Runner runnerForClass(Class<?> testClass) throws Throwable {
SuiteMethodBuilder.java 7 import org.junit.runner.Runner;
12 public Runner runnerForClass(Class<?> each) throws Throwable {
AllDefaultPossibilitiesBuilder.java 9 import org.junit.runner.Runner;
20 public Runner runnerForClass(Class<?> testClass) throws Throwable {
29 Runner runner= each.safeRunnerForClass(testClass); local
30 if (runner != null)
31 return runner;
  /external/junit/src/org/junit/internal/requests/
SortingRequest.java 5 import org.junit.runner.Description;
6 import org.junit.runner.Request;
7 import org.junit.runner.Runner;
8 import org.junit.runner.manipulation.Sorter;
20 public Runner getRunner() {
21 Runner runner= fRequest.getRunner(); local
22 new Sorter(fComparator).apply(runner);
23 return runner;
    [all...]
ClassRequest.java 5 import org.junit.runner.Request;
6 import org.junit.runner.Runner;
23 public Runner getRunner() {
FilterRequest.java 7 import org.junit.runner.Request;
8 import org.junit.runner.Runner;
9 import org.junit.runner.manipulation.Filter;
10 import org.junit.runner.manipulation.NoTestsRemainException;
31 public Runner getRunner() {
33 Runner runner= fRequest.getRunner(); local
34 fFilter.apply(runner);
35 return runner;
    [all...]
  /external/junit/src/org/junit/runner/
Computer.java 1 package org.junit.runner;
22 * Throws an InitializationError if Runner construction fails
24 public Runner getSuite(final RunnerBuilder builder,
28 public Runner runnerForClass(Class<?> testClass) throws Throwable {
35 * Create a single-class runner for {@code testClass}, using {@code builder}
37 protected Runner getRunner(RunnerBuilder builder, Class<?> testClass) throws Throwable {
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/testing/android/junit/java/src/org/chromium/testing/local/
GtestComputer.java 7 import org.junit.runner.Computer;
8 import org.junit.runner.Description;
9 import org.junit.runner.Runner;
10 import org.junit.runner.manipulation.Filter;
11 import org.junit.runner.manipulation.Filterable;
12 import org.junit.runner.manipulation.NoTestsRemainException;
13 import org.junit.runner.notification.RunNotifier;
29 * A wrapping Runner that logs the start and end of each test case.
31 private class GtestSuiteRunner extends Runner implements Filterable
    [all...]
  /external/junit/src/org/junit/experimental/
ParallelComputer.java 10 import org.junit.runner.Computer;
11 import org.junit.runner.Runner;
35 private static <T> Runner parallelize(Runner runner) {
36 if (runner instanceof ParentRunner<?>) {
37 ((ParentRunner<?>) runner).setScheduler(new RunnerScheduler() {
62 return runner;
66 public Runner getSuite(RunnerBuilder builder, java.lang.Class<?>[] classes
75 Runner runner= super.getRunner(builder, testClass); local
    [all...]
  /external/chromium_org/tools/cr/cr/actions/
debugger.py 22 cr.Runner.AddSelectorArg(command, parser)
27 return not cr.Runner.Skipping()
41 cr.Runner.Kill(targets, arguments)
  /external/chromium_org/third_party/closure_compiler/runner/
runner.jar 
  /external/junit/src/org/junit/runners/
Suite.java 11 import org.junit.runner.Description;
12 import org.junit.runner.Runner;
13 import org.junit.runner.notification.RunNotifier;
18 * Using <code>Suite</code> as a runner allows you to manually
24 public class Suite extends ParentRunner<Runner> {
28 public static Runner emptySuite() {
57 private final List<Runner> fRunners;
72 * passed on the command line to {@link org.junit.runner.JUnitCore}
108 * @param runners for each class in the suite, a {@link Runner}
    [all...]
  /external/chromium_org/mojo/apps/js/
mojo_runner_delegate.h 20 void Start(gin::Runner* runner, MojoHandle pipe, const std::string& module);
24 virtual void UnhandledException(gin::ShellRunner* runner,

Completed in 876 milliseconds

1 2 3 4