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

1 2

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.adapt/rand.adapt.disc/
ctor_engine_copy.pass.cpp 12 // template<class Engine, size_t p, size_t r>
15 // explicit discard_block_engine(const Engine& e);
23 typedef std::ranlux24_base Engine;
25 Engine e;
ctor_engine_move.pass.cpp 12 // template<class Engine, size_t p, size_t r>
15 // explicit discard_block_engine(const Engine& e);
23 typedef std::ranlux24_base Engine;
25 Engine e;
26 Engine e0 = e;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.adapt/rand.adapt.ibits/
ctor_engine_copy.pass.cpp 12 // template<class Engine, size_t w, class UIntType>
15 // explicit independent_bits_engine(const Engine& e);
23 typedef std::mt19937 Engine;
24 typedef std::independent_bits_engine<Engine, 24, unsigned> Adaptor;
25 Engine e;
ctor_engine_move.pass.cpp 12 // template<class Engine, size_t w, class UIntType>
15 // explicit independent_bits_engine(const Engine& e);
23 typedef std::mt19937 Engine;
24 typedef std::independent_bits_engine<Engine, 24, unsigned> Adaptor;
25 Engine e;
26 Engine e0 = e;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.adapt/rand.adapt.shuf/
ctor_engine_copy.pass.cpp 12 // template<class Engine, size_t k>
15 // explicit shuffle_order_engine(const Engine& e);
23 typedef std::minstd_rand0 Engine;
25 Engine e;
ctor_engine_move.pass.cpp 12 // template<class Engine, size_t k>
15 // explicit shuffle_order_engine(const Engine& e);
23 typedef std::minstd_rand0 Engine;
25 Engine e;
26 Engine e0 = e;
  /external/llvm/tools/llvm-diff/
DifferenceEngine.h 10 // This header defines the interface to the LLVM difference engine,
38 Context(DifferenceEngine &Engine, Value *L, Value *R) : Engine(Engine) {
39 Engine.consumer.enterContext(L, R);
43 Engine.consumer.exitContext();
47 DifferenceEngine &Engine;
DifferenceEngine.cpp 11 // engine, which structurally compares global values within a module.
114 /// A function-scope difference engine.
116 DifferenceEngine &Engine;
162 Engine.logf("successor %l cannot be equivalent to %r; "
176 DifferenceEngine::Context C(Engine, L, R);
193 DifferenceEngine::Context C(Engine, L, R);
231 if (Complain) Engine.log("called functions differ");
235 if (Complain) Engine.log("argument counts differ");
241 Engine.logf("arguments %l and %r differ")
253 if (Complain) Engine.log("different instruction types")
    [all...]
  /external/llvm/unittests/ExecutionEngine/
ExecutionEngineTest.cpp 26 Engine(EngineBuilder(M).setErrorStr(&Error).create()) {
30 ASSERT_TRUE(Engine.get() != NULL) << "EngineBuilder returned error: '"
41 const OwningPtr<ExecutionEngine> Engine;
48 Engine->addGlobalMapping(G1, &Mem1);
49 EXPECT_EQ(&Mem1, Engine->getPointerToGlobalIfAvailable(G1));
51 Engine->updateGlobalMapping(G1, &Mem2);
52 EXPECT_EQ(&Mem2, Engine->getPointerToGlobalIfAvailable(G1));
53 Engine->updateGlobalMapping(G1, NULL);
54 EXPECT_EQ(NULL, Engine->getPointerToGlobalIfAvailable(G1));
55 Engine->updateGlobalMapping(G1, &Mem2)
    [all...]
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
raytrace.js 70 // flog/engine.js
602 Flog.RayTracer.Engine = Class.create();
604 Flog.RayTracer.Engine.prototype = {
889 var raytracer = new Flog.RayTracer.Engine(
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v4/
v8-raytrace.js 65 // flog/engine.js
628 Flog.RayTracer.Engine = Class.create();
630 Flog.RayTracer.Engine.prototype = {
915 var raytracer = new Flog.RayTracer.Engine(
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v5/
v8-raytrace.js 65 // flog/engine.js
628 Flog.RayTracer.Engine = Class.create();
630 Flog.RayTracer.Engine.prototype = {
915 var raytracer = new Flog.RayTracer.Engine(
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v6/
v8-raytrace.js 65 // flog/engine.js
597 Flog.RayTracer.Engine = Class.create();
599 Flog.RayTracer.Engine.prototype = {
884 var raytracer = new Flog.RayTracer.Engine(
  /external/chromium_org/v8/benchmarks/
raytrace.js 70 // flog/engine.js
602 Flog.RayTracer.Engine = Class.create();
604 Flog.RayTracer.Engine.prototype = {
889 var raytracer = new Flog.RayTracer.Engine(
  /external/llvm/unittests/ExecutionEngine/MCJIT/
MCJITCAPITest.cpp 88 Engine = 0;
93 if (Engine)
94 LLVMDisposeExecutionEngine(Engine);
138 0, LLVMCreateMCJITCompilerForModule(&Engine, Module, &Options,
144 LLVMAddTargetData(LLVMGetExecutionEngineTargetData(Engine), pass);
154 LLVMExecutionEngineRef Engine;
170 functionPointer.raw = LLVMGetPointerToGlobal(Engine, Function);
188 functionPointer.raw = LLVMGetPointerToGlobal(Engine, Function);
  /external/v8/benchmarks/
raytrace.js 70 // flog/engine.js
602 Flog.RayTracer.Engine = Class.create();
604 Flog.RayTracer.Engine.prototype = {
889 var raytracer = new Flog.RayTracer.Engine(
  /libcore/luni/src/main/java/org/apache/harmony/security/fortress/
Engine.java 32 * classes. The usage pattern is to allocate static Engine instance
37 * internal {@code Engine} values to null to prevent memory leaks.
44 * private static final Engine ENGINE = new Engine("Foo");
59 * Engine.SpiAndProvider sap = ENGINE.getInstance(algorithm, null);
64 * Object spi = ENGINE.getInstance(algorithm, provider, null);
72 public class Engine {
119 * Creates a Engine objec
    [all...]
Services.java 88 Engine.door.renumProviders();
151 for (String alias : Engine.door.getAliases(service)) {
  /external/chromium_org/third_party/re2/re2/testing/
tester.h 22 enum Engine {
39 static inline void operator++(Engine& e, int unused) {
40 e = static_cast<Engine>(e+1);
43 static inline Engine operator+(Engine e, int i) {
44 return static_cast<Engine>(static_cast<int>(e)+i);
66 // Runs a single search using the named engine type.
67 void RunSearch(Engine type,
72 void LogMatch(const char* prefix, Engine e, const StringPiece& text,
  /external/regex-re2/re2/testing/
tester.h 22 enum Engine {
39 static inline void operator++(Engine& e, int unused) {
40 e = static_cast<Engine>(e+1);
43 static inline Engine operator+(Engine e, int i) {
44 return static_cast<Engine>(static_cast<int>(e)+i);
66 // Runs a single search using the named engine type.
67 void RunSearch(Engine type,
72 void LogMatch(const char* prefix, Engine e, const StringPiece& text,
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ExprEngine.h 10 // This file defines a meta-engine for path-sensitive dataflow analysis that
64 CoreEngine Engine;
88 /// The BugReporter associated with this engine. It is important that
97 /// The flag, which specifies the mode of inlining for the engine.
110 return Engine.ExecuteWorkList(L, Steps, 0);
120 return Engine.ExecuteWorkListWithInitialState(L, Steps, InitState, Dst);
303 bool wasBlocksExhausted() const { return Engine.wasBlocksExhausted(); }
304 bool hasEmptyWorkList() const { return !Engine.getWorkList()->hasWork(); }
305 bool hasWorkRemaining() const { return Engine.hasWorkRemaining(); }
307 const CoreEngine &getCoreEngine() const { return Engine; }
    [all...]
  /frameworks/base/core/java/android/speech/tts/
TextToSpeech.java 55 * to release the native resources used by the TextToSpeech engine.
122 * Note that this notifies callers when the <b>engine</b> has finished has
133 * TextToSpeech engine initialization.
137 * Called to signal the completion of the TextToSpeech engine initialization.
147 * has an utterance ID (see {@link TextToSpeech.Engine#KEY_PARAM_UTTERANCE_ID}).
166 * Intents to ask engine to install data or check its data and
167 * extras for a TTS engine's check data activity.
171 * {@link Engine#KEY_PARAM_UTTERANCE_ID}, {@link Engine#KEY_PARAM_STREAM}.
175 * {@link Engine#KEY_FEATURE_NETWORK_SYNTHESIS}). These values may be passed in t
    [all...]
  /ndk/tests/device/test-stlport_shared-exception/jni/
unroll1.cpp 394 class Engine : public BrickBase
397 explicit Engine(const Interval &dom)
414 Engine A(I);
  /ndk/tests/device/test-stlport_static-exception/jni/
unroll1.cpp 394 class Engine : public BrickBase
397 explicit Engine(const Interval &dom)
414 Engine A(I);
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/parse-only/
mootools-1.2.2-core-nc.js 299 Engine: {name: 'unknown', version: 0},
333 for (var engine in this.Engines){
334 var version = this.Engines[engine]();
336 this.Engine = {name: engine, version: version};
337 this.Engine[engine] = this.Engine[engine + version] = true;
342 return {name: engine, version: version}
    [all...]

Completed in 887 milliseconds

1 2