Searched defs:run (Results 201 - 225 of 630) sorted by relevance

1234567891011>>

/external/eigen/Eigen/src/Geometry/arch/
H A DGeometry_SSE.h21 static inline Quaternion<float> run(const QuaternionBase<Derived>& _a, const QuaternionBase<OtherDerived>& _b) function in struct:Eigen::internal::quat_product
44 run(const VectorLhs& lhs, const VectorRhs& rhs) function in struct:Eigen::internal::cross3_impl
62 static inline Quaternion<double> run(const QuaternionBase<Derived>& _a, const QuaternionBase<OtherDerived>& _b) function in struct:Eigen::internal::quat_product
/external/eigen/Eigen/src/SparseCore/
H A DConservativeSparseSparseProduct.h135 static void run(const Lhs& lhs, const Rhs& rhs, ResultType& res) function in struct:Eigen::internal::conservative_sparse_sparse_product_selector
150 static void run(const Lhs& lhs, const Rhs& rhs, ResultType& res) function in struct:Eigen::internal::conservative_sparse_sparse_product_selector
163 static void run(const Lhs& lhs, const Rhs& rhs, ResultType& res) function in struct:Eigen::internal::conservative_sparse_sparse_product_selector
176 static void run(const Lhs& lhs, const Rhs& rhs, ResultType& res) function in struct:Eigen::internal::conservative_sparse_sparse_product_selector
191 static void run(const Lhs& lhs, const Rhs& rhs, ResultType& res) function in struct:Eigen::internal::conservative_sparse_sparse_product_selector
203 static void run(const Lhs& lhs, const Rhs& rhs, ResultType& res) function in struct:Eigen::internal::conservative_sparse_sparse_product_selector
216 static void run(const Lhs& lhs, const Rhs& rhs, ResultType& res) function in struct:Eigen::internal::conservative_sparse_sparse_product_selector
229 static void run(const Lhs& lhs, const Rhs& rhs, ResultType& res) function in struct:Eigen::internal::conservative_sparse_sparse_product_selector
H A DTriangularSolver.h31 static void run(const Lhs& lhs, Rhs& other) function in struct:Eigen::internal::sparse_solve_triangular_selector
65 static void run(const Lhs& lhs, Rhs& other) function in struct:Eigen::internal::sparse_solve_triangular_selector
103 static void run(const Lhs& lhs, Rhs& other) function in struct:Eigen::internal::sparse_solve_triangular_selector
135 static void run(const Lhs& lhs, Rhs& other) function in struct:Eigen::internal::sparse_solve_triangular_selector
177 internal::sparse_solve_triangular_selector<ExpressionType, typename internal::remove_reference<OtherCopy>::type, Mode>::run(m_matrix, otherCopy);
213 static void run(const Lhs& lhs, Rhs& other) function in struct:Eigen::internal::sparse_solve_triangular_sparse_selector
302 internal::sparse_solve_triangular_sparse_selector<ExpressionType, OtherDerived, Mode>::run(m_matrix, other.derived());
/external/eigen/bench/
H A Dproduct_threshold.cpp76 static void run() function in struct:loop_on_k
79 print_n<N>::run();
82 loop_on_m<M,N,K>::run();
85 loop_on_k<M,N,K+1>::run();
90 struct loop_on_k<M,N,END> { static void run(){} }; function in struct:loop_on_k
96 static void run() function in struct:loop_on_m
99 loop_on_n<M,N,K,float,CoeffBasedProductMode>::run();
103 loop_on_n<M,N,K,float,-1>::run();
106 loop_on_m<M+1,N,K>::run();
111 struct loop_on_m<END,N,K> { static void run(){} }; function in struct:loop_on_m
116 static void run() function in struct:loop_on_n
125 struct loop_on_n<M,END,K,Scalar,Mode> { static void run(){} }; function in struct:loop_on_n
129 static void run() function in struct:print_n
136 template<> struct print_n<END> { static void run(){} }; function in struct:print_n
[all...]
/external/emma/core/java12/com/vladium/emma/
H A DrunCommand.java33 public synchronized void run () method in class:runCommand
225 // run the app:
247 processor.run ();
/external/eyes-free/AccessCheck/src/com/android/accessibility/
H A DAccessibilityValidator.java62 new AccessibilityValidator(args[0], args[1]).run();
91 private boolean run() { method in class:AccessibilityValidator
/external/guava/guava/src/com/google/common/base/internal/
H A DFinalizer.java123 public void run() { method in class:Finalizer
/external/guava/guava/src/com/google/common/util/concurrent/
H A DAbstractExecutionThreadService.java27 * Base class for services that can implement {@link #startUp}, {@link #run} and
45 public void run() {
52 AbstractExecutionThreadService.this.run();
89 * public void run() {
96 * #triggerShutdown()}, which should cause {@link #run()} to return.
98 protected abstract void run() throws Exception; method in class:AbstractExecutionThreadService
112 * Returns the {@link Executor} that will be used to run this service.
/external/guava/guava-tests/test/com/google/common/util/concurrent/
H A DInterruptionUtil.java40 * Runnable which will interrupt the target thread repeatedly when run.
53 public void run() { method in class:InterruptionUtil.Interruptenator
79 public void run() {
/external/javassist/src/main/javassist/tools/web/
H A DViewer.java24 * <p>This is a sort of applet viewer that can run any program even if
28 * <p>To run, you should type:
62 cl.run(args[2], args2);
96 public void run(String classname, String[] args) method in class:Viewer
/external/jmonkeyengine/engine/src/networking/com/jme3/network/base/
H A DKernelAdapter.java262 public void run() method in class:KernelAdapter
/external/junit/src/junit/framework/
H A DJUnit4TestAdapter.java38 public void run(TestResult result) { method in class:JUnit4TestAdapter
39 fRunner.run(fCache.getNotifier(result, this));
/external/junit/src/org/junit/experimental/max/
H A DMaxCore.java23 * to maximize the chances that a failing test occurs early in the test run.
27 * <li> Never-run tests first, in arbitrary order
30 * <li> Within a group, run the fastest tests first.
60 * @return a {@link Result} describing the details of the test run and the failed tests.
62 public Result run(Class<?> testClass) { method in class:MaxCore
63 return run(Request.aClass(testClass));
69 * @return a {@link Result} describing the details of the test run and the failed tests.
71 public Result run(Request request) { method in class:MaxCore
72 return run(request, new JUnitCore());
79 * run shoul
85 public Result run(Request request, JUnitCore core) { method in class:MaxCore
[all...]
/external/junit/src/org/junit/internal/runners/
H A DMethodRoadie.java38 public void run() { method in class:MethodRoadie
58 public void run() {
85 public void run() {
94 test.run();
/external/junit/src/org/junit/internal/runners/statements/
H A DFailOnTimeout.java60 public void run() { method in class:FailOnTimeout.StatementThread
/external/junit/src/org/junit/runner/
H A DJUnitCore.java17 * JUnit 3.8.x tests, and mixtures. To run tests from the command line, run
21 * create an instance of {@link org.junit.runner.JUnitCore} first and use it to run the tests.
31 * Create a new <code>JUnitCore</code> to run tests.
39 * If all tests run successfully, exit with a status of 0. Otherwise exit with a status of 1.
42 * @param args names of classes in which to find tests to run
63 * @return a {@link Result} describing the details of the test run and the failed tests.
66 return new JUnitCore().run(computer, classes);
73 * @return a {@link Result} describing the details of the test run and the failed tests.
76 return new JUnitCore().run(defaultCompute
116 public Result run(Class<?>... classes) { method in class:JUnitCore
126 public Result run(Computer computer, Class<?>... classes) { method in class:JUnitCore
135 public Result run(Request request) { method in class:JUnitCore
144 public Result run(junit.framework.Test test) { method in class:JUnitCore
151 public Result run(Runner runner) { method in class:JUnitCore
[all...]
/external/junit/src/org/junit/runner/notification/
H A DRunNotifier.java15 * {@link org.junit.runner.Runner#run(RunNotifier)}. Future evolution of this class is likely to
17 * to a separate class since they should only be called once per run.
37 void run() { method in class:RunNotifier.SafeNotifier
61 }.run();
73 }.run();
79 * @throws StoppedByUserException thrown if a user has requested that the test run stop
89 }.run();
102 }.run();
119 }.run();
132 }.run();
[all...]
/external/llvm/utils/TableGen/
H A DCallingConvEmitter.cpp28 void run(raw_ostream &o);
37 void CallingConvEmitter::run(raw_ostream &O) { function in class:CallingConvEmitter
234 CallingConvEmitter(RK).run(OS);
/external/markdown/markdown/extensions/
H A Dfootnotes.py10 then added to the markdown instance at the run time.
68 # run on the contents of the div.
153 def run(self, lines): member in class:FootnotePreprocessor
279 def run(self, root): member in class:FootnoteTreeprocessor
300 def run(self, text): member in class:FootnotePostprocessor
H A Dheaderid.py95 def run(self, parent, blocks): member in class:HeaderIdProcessor
/external/markdown/
H A Dsetup.py11 def run(self): member in class:md_install_scripts
12 install_scripts.run(self)
/external/nist-sip/java/gov/nist/javax/sip/parser/
H A DPipelinedMsgParser.java211 public void run() { method in class:PipelinedMsgParser
/external/okhttp/src/test/java/com/squareup/okhttp/internal/spdy/
H A DSpdyServer.java50 private void run() throws Exception { method in class:SpdyServer
159 server.run();
/external/openssl/
H A Dcheck-all-builds.sh44 run () { function
125 panic "Sorry, this script can only run on 64-bit Linux or Darwin"
594 # TODO(digit): Make the Clang build run.
617 run make $MAKE_FLAGS -f "$MAKEFILE" -C "$BUILD_DIR"
/external/proguard/src/proguard/gui/splash/
H A DSplashPanel.java148 public void run() method in class:SplashPanel.MyAnimator
192 public void run() method in class:SplashPanel.MyRepainter

Completed in 2698 milliseconds

1234567891011>>