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

1 2 3 4 5 6

  /external/libcxx/test/std/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.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;
  /external/libcxx/test/std/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.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;
  /external/libcxx/test/std/numerics/rand/rand.adapt/rand.adapt.shuf/
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;
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;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.adapt/rand.adapt.shuf/
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;
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;
  /frameworks/av/services/audiopolicy/engineconfigurable/src/
Engine.cpp 27 #include "Engine.h"
43 StrategyCollection &Engine::getCollection<routing_strategy>()
48 StreamCollection &Engine::getCollection<audio_stream_type_t>()
53 UsageCollection &Engine::getCollection<audio_usage_t>()
58 InputSourceCollection &Engine::getCollection<audio_source_t>()
64 const StrategyCollection &Engine::getCollection<routing_strategy>() const
69 const StreamCollection &Engine::getCollection<audio_stream_type_t>() const
74 const UsageCollection &Engine::getCollection<audio_usage_t>() const
79 const InputSourceCollection &Engine::getCollection<audio_source_t>() const
84 Engine::Engine(
    [all...]
EngineInstance.cpp 20 #include "Engine.h"
43 Engine *EngineInstance::getEngine() const
45 static Engine engine; local
46 return &engine;
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/fortress/
EngineTest.java 28 import org.apache.harmony.security.fortress.Engine;
34 * Tests for Engine
49 Engine engine = new Engine("Service"); local
52 engine.getInstance("AlGOrItHM", null);
54 if (engine.provider != p) {
57 if (!(engine.spi instanceof SomeClass)) {
68 Engine engine = new Engine("Service") local
82 Engine engine = new Engine("Service"); local
100 Engine engine = new Engine("Service"); local
114 Engine engine = new Engine("CertStore"); local
125 Engine engine = new Engine("CertStore"); local
    [all...]
  /external/llvm/unittests/ExecutionEngine/
ExecutionEngineTest.cpp 33 Engine.reset(EngineBuilder(std::move(Owner)).setErrorStr(&Error).create());
37 ASSERT_TRUE(Engine.get() != nullptr) << "EngineBuilder returned error: '"
48 std::unique_ptr<ExecutionEngine> Engine;
55 Engine->addGlobalMapping(G1, &Mem1);
56 EXPECT_EQ(&Mem1, Engine->getPointerToGlobalIfAvailable(G1));
57 EXPECT_EQ(&Mem1, Engine->getPointerToGlobalIfAvailable("Global1"));
59 Engine->updateGlobalMapping(G1, &Mem2);
60 EXPECT_EQ(&Mem2, Engine->getPointerToGlobalIfAvailable(G1));
61 Engine->updateGlobalMapping(G1, nullptr);
62 EXPECT_EQ(nullptr, Engine->getPointerToGlobalIfAvailable(G1))
    [all...]
  /external/jsr330/tck/org/atinject/tck/auto/
GasEngine.java 21 public abstract class GasEngine extends Engine {
  /frameworks/av/services/audiopolicy/engineconfigurable/include/
AudioPolicyEngineInstance.h 27 class Engine;
38 * Get Audio Policy Engine instance.
46 * The first client of an interface of the policy engine will start the singleton.
57 * Get Audio Policy Engine instance.
59 * @return Audio Policy Engine singleton.
61 Engine *getEngine() const;
  /frameworks/av/services/audiopolicy/enginedefault/include/
AudioPolicyEngineInstance.h 26 class Engine;
37 * Get Audio Policy Engine instance.
45 * The first client of an interface of the policy engine will start the singleton.
56 * Get Audio Policy Engine instance.
58 * @return Audio Policy Engine singleton.
60 Engine *getEngine() const;
  /frameworks/av/services/audiopolicy/enginedefault/src/
EngineInstance.cpp 19 #include "Engine.h"
40 Engine *EngineInstance::getEngine() const
42 static Engine engine; local
43 return &engine;
Engine.h 32 class Engine
35 Engine();
36 virtual ~Engine();
46 ManagerInterfaceImpl(Engine *policyEngine)
96 Engine *mPolicyEngine;
101 Engine(const Engine &object);
102 Engine &operator=(const Engine &object);
  /frameworks/base/tests/TtsTests/src/com/android/speech/tts/
MockableCheckVoiceData.java 41 setResult(TextToSpeech.Engine.CHECK_VOICE_DATA_FAIL, returnVal);
46 returnVal.putStringArrayListExtra(TextToSpeech.Engine.EXTRA_AVAILABLE_VOICES,
50 returnVal.putStringArrayListExtra(TextToSpeech.Engine.EXTRA_UNAVAILABLE_VOICES,
54 setResult(TextToSpeech.Engine.CHECK_VOICE_DATA_PASS, returnVal);
  /external/dagger2/compiler/src/it/functional-tests/src/main/java/test/tck/
EngineModule.java 21 import org.atinject.tck.auto.Engine;
27 Engine provideEngine(MembersInjector<V8Engine> injector) {
30 V8Engine engine = new V8Engine(); local
31 injector.injectMembers(engine);
32 return engine;
  /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/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;

Completed in 189 milliseconds

1 2 3 4 5 6