Searched refs:Engine (Results 1 - 25 of 62) sorted by relevance

123

/external/libcxx/test/std/numerics/rand/rand.adapt/rand.adapt.ibits/
H A Dctor_engine_copy.pass.cpp12 // template<class Engine, size_t w, class UIntType>
15 // explicit independent_bits_engine(const Engine& e);
23 typedef std::mt19937 Engine; typedef
24 typedef std::independent_bits_engine<Engine, 24, unsigned> Adaptor;
25 Engine e;
H A Dctor_engine_move.pass.cpp12 // template<class Engine, size_t w, class UIntType>
15 // explicit independent_bits_engine(const Engine& e);
23 typedef std::mt19937 Engine; typedef
24 typedef std::independent_bits_engine<Engine, 24, unsigned> Adaptor;
25 Engine e;
26 Engine e0 = e;
/external/llvm/unittests/ExecutionEngine/
H A DExecutionEngineTest.cpp33 Engine.reset(EngineBuilder(std::move(Owner)).setErrorStr(&Error).create());
37 ASSERT_TRUE(Engine.get() != nullptr) << "EngineBuilder returned error: '"
49 std::unique_ptr<ExecutionEngine> Engine; member in class:__anon13629::ExecutionEngineTest
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
[all...]
/external/swiftshader/third_party/LLVM/unittests/ExecutionEngine/
H A DExecutionEngineTest.cpp26 Engine(EngineBuilder(M).create()) {
30 ASSERT_TRUE(Engine.get() != NULL);
39 const OwningPtr<ExecutionEngine> Engine; member in class:__anon19082::ExecutionEngineTest
46 Engine->addGlobalMapping(G1, &Mem1);
47 EXPECT_EQ(&Mem1, Engine->getPointerToGlobalIfAvailable(G1));
49 Engine->updateGlobalMapping(G1, &Mem2);
50 EXPECT_EQ(&Mem2, Engine->getPointerToGlobalIfAvailable(G1));
51 Engine->updateGlobalMapping(G1, NULL);
52 EXPECT_EQ(NULL, Engine->getPointerToGlobalIfAvailable(G1));
53 Engine
[all...]
/external/libcxx/test/std/numerics/rand/rand.adapt/rand.adapt.disc/
H A Dctor_engine_copy.pass.cpp12 // template<class Engine, size_t p, size_t r>
15 // explicit discard_block_engine(const Engine& e);
23 typedef std::ranlux24_base Engine; typedef
25 Engine e;
H A Dctor_engine_move.pass.cpp12 // template<class Engine, size_t p, size_t r>
15 // explicit discard_block_engine(const Engine& e);
23 typedef std::ranlux24_base Engine; typedef
25 Engine e;
26 Engine e0 = e;
/external/libcxx/test/std/numerics/rand/rand.adapt/rand.adapt.shuf/
H A Dctor_engine_move.pass.cpp12 // template<class Engine, size_t k>
15 // explicit shuffle_order_engine(const Engine& e);
23 typedef std::minstd_rand0 Engine; typedef
25 Engine e;
26 Engine e0 = e;
H A Dctor_engine_copy.pass.cpp12 // template<class Engine, size_t k>
15 // explicit shuffle_order_engine(const Engine& e);
23 typedef std::minstd_rand0 Engine; typedef
25 Engine e;
/external/jsr330/tck/org/atinject/tck/auto/
H A DGasEngine.java21 public abstract class GasEngine extends Engine {
/external/dagger2/compiler/src/it/functional-tests/src/main/java/test/tck/
H A DEngineModule.java21 import org.atinject.tck.auto.Engine;
27 Engine provideEngine(MembersInjector<V8Engine> injector) {
/external/regex-re2/re2/testing/
H A Dtester.h22 enum Engine { enum in namespace:re2
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);
67 void RunSearch(Engine type,
72 void LogMatch(const char* prefix, Engine e, const StringPiece& text,
/external/llvm/tools/llvm-diff/
H A DDifferenceEngine.h37 Context(DifferenceEngine &Engine, Value *L, Value *R) : Engine(Engine) { argument
38 Engine.consumer.enterContext(L, R);
42 Engine.consumer.exitContext();
46 DifferenceEngine &Engine; member in struct:llvm::DifferenceEngine::Context
H A Dllvm-diff.cpp42 static void diffGlobal(DifferenceEngine &Engine, Module &L, Module &R, argument
50 Engine.diff(LFn, RFn);
79 DifferenceEngine Engine(Consumer);
84 diffGlobal(Engine, *LModule, *RModule, GlobalsToCompare[I]);
88 Engine.diff(LModule.get(), RModule.get());
H A DDifferenceEngine.cpp115 DifferenceEngine &Engine; member in class:__anon13510::FunctionDifferenceEngine
161 Engine.logf("successor %l cannot be equivalent to %r; "
175 DifferenceEngine::Context C(Engine, L, R);
192 DifferenceEngine::Context C(Engine, L, R);
229 if (Complain) Engine.log("called functions differ");
233 if (Complain) Engine.log("argument counts differ");
239 Engine.logf("arguments %l and %r differ")
251 if (Complain) Engine.log("different instruction types");
258 if (Complain) Engine.log("different predicates");
269 if (Complain) Engine
456 FunctionDifferenceEngine(DifferenceEngine &Engine) argument
[all...]
/external/swiftshader/third_party/LLVM/tools/llvm-diff/
H A DDifferenceEngine.h39 Context(DifferenceEngine &Engine, Value *L, Value *R) : Engine(Engine) { argument
40 Engine.consumer.enterContext(L, R);
44 Engine.consumer.exitContext();
48 DifferenceEngine &Engine; member in struct:llvm::DifferenceEngine::Context
H A Dllvm-diff.cpp45 static void diffGlobal(DifferenceEngine &Engine, Module *L, Module *R, argument
53 Engine.diff(LFn, RFn);
82 DifferenceEngine Engine(Context, Consumer);
87 diffGlobal(Engine, LModule, RModule, GlobalsToCompare[I]);
91 Engine.diff(LModule, RModule);
H A DDifferenceEngine.cpp118 DifferenceEngine &Engine; member in class:__anon19043::FunctionDifferenceEngine
164 Engine.logf("successor %l cannot be equivalent to %r; "
178 DifferenceEngine::Context C(Engine, L, R);
195 DifferenceEngine::Context C(Engine, L, R);
233 if (Complain) Engine.log("called functions differ");
237 if (Complain) Engine.log("argument counts differ");
243 Engine.logf("arguments %l and %r differ")
255 if (Complain) Engine.log("different instruction types");
262 if (Complain) Engine.log("different predicates");
273 if (Complain) Engine
456 FunctionDifferenceEngine(DifferenceEngine &Engine) argument
[all...]
/external/svox/pico/src/com/svox/pico/
H A DCheckVoiceData.java31 * 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
[all...]
/external/llvm/unittests/ExecutionEngine/MCJIT/
H A DMCJITCAPITest.cpp154 Engine = nullptr;
159 if (Engine)
160 LLVMDisposeExecutionEngine(Engine); variable
282 0, LLVMCreateMCJITCompilerForModule(&Engine, Module, &Options,
328 LLVMExecutionEngineRef Engine; member in class:__anon13630::MCJITCAPITest
342 reinterpret_cast<uintptr_t>(LLVMGetPointerToGlobal(Engine, Function)));
359 uint64_t raw = LLVMGetGlobalValueAddress(Engine, "simple_value");
373 uint64_t raw = LLVMGetFunctionAddress(Engine, "simple_function");
389 reinterpret_cast<uintptr_t>(LLVMGetPointerToGlobal(Engine, Function)));
409 reinterpret_cast<uintptr_t>(LLVMGetPointerToGlobal(Engine, Functio
[all...]
/external/guice/core/test/com/googlecode/guice/
H A DGuiceTck.java31 import org.atinject.tck.auto.Engine;
48 bind(Engine.class).to(V8Engine.class);
/external/svox/PicoLangInstallerDeuDeu/src/com/svox/pico/voice/deu/deu/
H A DInstallerActivity.java43 rootDirectory = data.getStringExtra(TextToSpeech.Engine.EXTRA_VOICE_DATA_ROOT_DIRECTORY);
130 new Intent(TextToSpeech.Engine.ACTION_TTS_DATA_INSTALLED);
131 installCompleteIntent.putExtra(TextToSpeech.Engine.EXTRA_TTS_DATA_INSTALLED,
140 new Intent(TextToSpeech.Engine.ACTION_TTS_DATA_INSTALLED);
141 installCompleteIntent.putExtra(TextToSpeech.Engine.EXTRA_TTS_DATA_INSTALLED,
/external/svox/PicoLangInstallerEngGbr/src/com/svox/pico/voice/eng/gbr/
H A DInstallerActivity.java43 rootDirectory = data.getStringExtra(TextToSpeech.Engine.EXTRA_VOICE_DATA_ROOT_DIRECTORY);
130 new Intent(TextToSpeech.Engine.ACTION_TTS_DATA_INSTALLED);
131 installCompleteIntent.putExtra(TextToSpeech.Engine.EXTRA_TTS_DATA_INSTALLED,
140 new Intent(TextToSpeech.Engine.ACTION_TTS_DATA_INSTALLED);
141 installCompleteIntent.putExtra(TextToSpeech.Engine.EXTRA_TTS_DATA_INSTALLED,
/external/svox/PicoLangInstallerEngUsa/src/com/svox/pico/voice/eng/usa/
H A DInstallerActivity.java43 rootDirectory = data.getStringExtra(TextToSpeech.Engine.EXTRA_VOICE_DATA_ROOT_DIRECTORY);
130 new Intent(TextToSpeech.Engine.ACTION_TTS_DATA_INSTALLED);
131 installCompleteIntent.putExtra(TextToSpeech.Engine.EXTRA_TTS_DATA_INSTALLED,
140 new Intent(TextToSpeech.Engine.ACTION_TTS_DATA_INSTALLED);
141 installCompleteIntent.putExtra(TextToSpeech.Engine.EXTRA_TTS_DATA_INSTALLED,
/external/svox/PicoLangInstallerFraFra/src/com/svox/pico/voice/fra/fra/
H A DInstallerActivity.java43 rootDirectory = data.getStringExtra(TextToSpeech.Engine.EXTRA_VOICE_DATA_ROOT_DIRECTORY);
130 new Intent(TextToSpeech.Engine.ACTION_TTS_DATA_INSTALLED);
131 installCompleteIntent.putExtra(TextToSpeech.Engine.EXTRA_TTS_DATA_INSTALLED,
140 new Intent(TextToSpeech.Engine.ACTION_TTS_DATA_INSTALLED);
141 installCompleteIntent.putExtra(TextToSpeech.Engine.EXTRA_TTS_DATA_INSTALLED,
/external/svox/PicoLangInstallerItaIta/src/com/svox/pico/voice/ita/ita/
H A DInstallerActivity.java43 rootDirectory = data.getStringExtra(TextToSpeech.Engine.EXTRA_VOICE_DATA_ROOT_DIRECTORY);
130 new Intent(TextToSpeech.Engine.ACTION_TTS_DATA_INSTALLED);
131 installCompleteIntent.putExtra(TextToSpeech.Engine.EXTRA_TTS_DATA_INSTALLED,
140 new Intent(TextToSpeech.Engine.ACTION_TTS_DATA_INSTALLED);
141 installCompleteIntent.putExtra(TextToSpeech.Engine.EXTRA_TTS_DATA_INSTALLED,

Completed in 734 milliseconds

123