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

1 2 3 4 5 6 7

  /external/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.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/llvm/unittests/ExecutionEngine/
ExecutionEngineTest.cpp 25 Engine(EngineBuilder(M).setErrorStr(&Error).create()) {
29 ASSERT_TRUE(Engine.get() != nullptr) << "EngineBuilder returned error: '"
40 const std::unique_ptr<ExecutionEngine> Engine;
47 Engine->addGlobalMapping(G1, &Mem1);
48 EXPECT_EQ(&Mem1, Engine->getPointerToGlobalIfAvailable(G1));
50 Engine->updateGlobalMapping(G1, &Mem2);
51 EXPECT_EQ(&Mem2, Engine->getPointerToGlobalIfAvailable(G1));
52 Engine->updateGlobalMapping(G1, nullptr);
53 EXPECT_EQ(nullptr, Engine->getPointerToGlobalIfAvailable(G1));
54 Engine->updateGlobalMapping(G1, &Mem2)
    [all...]
  /external/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.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/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;
  /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...]
  /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/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/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;
llvm-diff.cpp 10 // This file defines the command-line driver for the difference engine.
43 static void diffGlobal(DifferenceEngine &Engine, Module *L, Module *R,
51 Engine.diff(LFn, RFn);
80 DifferenceEngine Engine(Consumer);
85 diffGlobal(Engine, LModule, RModule, GlobalsToCompare[I]);
89 Engine.diff(LModule, RModule);
  /development/ndk/platforms/android-17/samples/Teapot/jni/
TeapotNativeActivity.cpp 40 class Engine
72 Engine();
73 ~Engine();
97 Engine::Engine() :
111 Engine::~Engine()
118 void Engine::LoadResources()
127 void Engine::UnloadResources()
135 int Engine::InitDisplay(
    [all...]
  /development/ndk/platforms/android-18/samples/MoreTeapots/jni/
MoreTeapotsNativeActivity.cpp 50 class Engine
82 Engine();
83 ~Engine();
107 Engine::Engine() :
121 Engine::~Engine()
128 void Engine::LoadResources()
137 void Engine::UnloadResources()
145 int Engine::InitDisplay(
    [all...]
  /external/svox/pico/src/com/svox/pico/
CheckVoiceData.java 31 * Checks if the voice data for the SVOX Pico Engine is present on the
61 int result = TextToSpeech.Engine.CHECK_VOICE_DATA_PASS;
72 TextToSpeech.Engine.EXTRA_CHECK_VOICE_DATA_FOR);
88 result = TextToSpeech.Engine.CHECK_VOICE_DATA_MISSING_DATA;
98 result = TextToSpeech.Engine.CHECK_VOICE_DATA_FAIL;
103 returnData.putExtra(TextToSpeech.Engine.EXTRA_VOICE_DATA_ROOT_DIRECTORY, PICO_LINGWARE_PATH);
104 returnData.putExtra(TextToSpeech.Engine.EXTRA_VOICE_DATA_FILES, dataFiles);
105 returnData.putExtra(TextToSpeech.Engine.EXTRA_VOICE_DATA_FILES_INFO, dataFilesInfo);
107 returnData.putStringArrayListExtra(TextToSpeech.Engine.EXTRA_AVAILABLE_VOICES, available);
108 returnData.putStringArrayListExtra(TextToSpeech.Engine.EXTRA_UNAVAILABLE_VOICES, unavailable)
    [all...]
  /external/chromium_org/third_party/webrtc/video_engine/test/libvietest/include/
tb_capture_device.h 23 TbCaptureDevice(TbInterfaces& Engine);
  /development/samples/TtsEngine/src/com/example/android/ttsengine/
CheckVoiceData.java 71 result = TextToSpeech.Engine.CHECK_VOICE_DATA_FAIL;
75 result = TextToSpeech.Engine.CHECK_VOICE_DATA_MISSING_DATA;
78 result = TextToSpeech.Engine.CHECK_VOICE_DATA_PASS;
85 TextToSpeech.Engine.EXTRA_AVAILABLE_VOICES, available);
87 TextToSpeech.Engine.EXTRA_UNAVAILABLE_VOICES, unavailable);
94 * {@link TextToSpeech.Engine.EXTRA_CHECK_VOICE_DATA_FOR} that might specify
101 TextToSpeech.Engine.EXTRA_CHECK_VOICE_DATA_FOR);
131 * If for example, engine data was downloaded or installed on external storage,
  /developers/build/prebuilts/gradle/WatchFace/Wearable/src/main/java/com/example/android/wearable/watchface/
CardBoundsWatchFaceService.java 37 public Engine onCreateEngine() {
38 return new Engine();
41 private class Engine extends CanvasWatchFaceService.Engine {

Completed in 364 milliseconds

1 2 3 4 5 6 7