/external/swiftshader/third_party/LLVM/unittests/ExecutionEngine/ |
D | ExecutionEngineTest.cpp | 26 Engine(EngineBuilder(M).create()) { in ExecutionEngineTest() 30 ASSERT_TRUE(Engine.get() != NULL); in SetUp() 39 const OwningPtr<ExecutionEngine> Engine; member in __anon3a92317d0111::ExecutionEngineTest 46 Engine->addGlobalMapping(G1, &Mem1); in TEST_F() 47 EXPECT_EQ(&Mem1, Engine->getPointerToGlobalIfAvailable(G1)); in TEST_F() 49 Engine->updateGlobalMapping(G1, &Mem2); in TEST_F() 50 EXPECT_EQ(&Mem2, Engine->getPointerToGlobalIfAvailable(G1)); in TEST_F() 51 Engine->updateGlobalMapping(G1, NULL); in TEST_F() 52 EXPECT_EQ(NULL, Engine->getPointerToGlobalIfAvailable(G1)); in TEST_F() 53 Engine->updateGlobalMapping(G1, &Mem2); in TEST_F() [all …]
|
/external/llvm/unittests/ExecutionEngine/ |
D | ExecutionEngineTest.cpp | 33 Engine.reset(EngineBuilder(std::move(Owner)).setErrorStr(&Error).create()); in ExecutionEngineTest() 37 ASSERT_TRUE(Engine.get() != nullptr) << "EngineBuilder returned error: '" in SetUp() 49 std::unique_ptr<ExecutionEngine> Engine; member in __anonc8cc0cd10111::ExecutionEngineTest 55 Engine->addGlobalMapping(G1, &Mem1); in TEST_F() 56 EXPECT_EQ(&Mem1, Engine->getPointerToGlobalIfAvailable(G1)); in TEST_F() 57 EXPECT_EQ(&Mem1, Engine->getPointerToGlobalIfAvailable("Global1")); in TEST_F() 59 Engine->updateGlobalMapping(G1, &Mem2); in TEST_F() 60 EXPECT_EQ(&Mem2, Engine->getPointerToGlobalIfAvailable(G1)); in TEST_F() 61 Engine->updateGlobalMapping(G1, nullptr); in TEST_F() 62 EXPECT_EQ(nullptr, Engine->getPointerToGlobalIfAvailable(G1)); in TEST_F() [all …]
|
/external/svox/pico/src/com/svox/pico/ |
D | CheckVoiceData.java | 61 int result = TextToSpeech.Engine.CHECK_VOICE_DATA_PASS; in onCreate() 72 TextToSpeech.Engine.EXTRA_CHECK_VOICE_DATA_FOR); in onCreate() 88 result = TextToSpeech.Engine.CHECK_VOICE_DATA_MISSING_DATA; in onCreate() 98 result = TextToSpeech.Engine.CHECK_VOICE_DATA_FAIL; in onCreate() 103 … returnData.putExtra(TextToSpeech.Engine.EXTRA_VOICE_DATA_ROOT_DIRECTORY, PICO_LINGWARE_PATH); in onCreate() 104 returnData.putExtra(TextToSpeech.Engine.EXTRA_VOICE_DATA_FILES, dataFiles); in onCreate() 105 returnData.putExtra(TextToSpeech.Engine.EXTRA_VOICE_DATA_FILES_INFO, dataFilesInfo); in onCreate() 107 returnData.putStringArrayListExtra(TextToSpeech.Engine.EXTRA_AVAILABLE_VOICES, available); in onCreate() 108 … returnData.putStringArrayListExtra(TextToSpeech.Engine.EXTRA_UNAVAILABLE_VOICES, unavailable); in onCreate()
|
/external/regex-re2/re2/testing/ |
D | tester.h | 22 enum Engine { enum 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/swiftshader/third_party/LLVM/tools/llvm-diff/ |
D | DifferenceEngine.h | 39 Context(DifferenceEngine &Engine, Value *L, Value *R) : Engine(Engine) { in Context() 40 Engine.consumer.enterContext(L, R); in Context() 44 Engine.consumer.exitContext(); in ~Context() 48 DifferenceEngine &Engine;
|
D | DifferenceEngine.cpp | 118 DifferenceEngine &Engine; member in __anon6dc9fb490111::FunctionDifferenceEngine 164 Engine.logf("successor %l cannot be equivalent to %r; " in tryUnify() 178 DifferenceEngine::Context C(Engine, L, R); in unify() 195 DifferenceEngine::Context C(Engine, L, R); in diff() 233 if (Complain) Engine.log("called functions differ"); in diffCallSites() 237 if (Complain) Engine.log("argument counts differ"); in diffCallSites() 243 Engine.logf("arguments %l and %r differ") in diffCallSites() 255 if (Complain) Engine.log("different instruction types"); in diff() 262 if (Complain) Engine.log("different predicates"); in diff() 273 if (Complain) Engine.log("different phi types"); in diff() [all …]
|
D | llvm-diff.cpp | 45 static void diffGlobal(DifferenceEngine &Engine, Module *L, Module *R, in diffGlobal() argument 53 Engine.diff(LFn, RFn); in diffGlobal() 82 DifferenceEngine Engine(Context, Consumer); in main() local 87 diffGlobal(Engine, LModule, RModule, GlobalsToCompare[I]); in main() 91 Engine.diff(LModule, RModule); in main()
|
/external/llvm/tools/llvm-diff/ |
D | DifferenceEngine.h | 37 Context(DifferenceEngine &Engine, Value *L, Value *R) : Engine(Engine) { in Context() 38 Engine.consumer.enterContext(L, R); in Context() 42 Engine.consumer.exitContext(); in ~Context() 46 DifferenceEngine &Engine;
|
D | DifferenceEngine.cpp | 115 DifferenceEngine &Engine; member in __anon6bb4de1d0111::FunctionDifferenceEngine 161 Engine.logf("successor %l cannot be equivalent to %r; " in tryUnify() 175 DifferenceEngine::Context C(Engine, L, R); in unify() 192 DifferenceEngine::Context C(Engine, L, R); in diff() 229 if (Complain) Engine.log("called functions differ"); in diffCallSites() 233 if (Complain) Engine.log("argument counts differ"); in diffCallSites() 239 Engine.logf("arguments %l and %r differ") in diffCallSites() 251 if (Complain) Engine.log("different instruction types"); in diff() 258 if (Complain) Engine.log("different predicates"); in diff() 269 if (Complain) Engine.log("different phi types"); in diff() [all …]
|
D | llvm-diff.cpp | 42 static void diffGlobal(DifferenceEngine &Engine, Module &L, Module &R, in diffGlobal() argument 50 Engine.diff(LFn, RFn); in diffGlobal() 79 DifferenceEngine Engine(Consumer); in main() local 84 diffGlobal(Engine, *LModule, *RModule, GlobalsToCompare[I]); in main() 88 Engine.diff(LModule.get(), RModule.get()); in main()
|
/external/llvm/unittests/ExecutionEngine/MCJIT/ |
D | MCJITCAPITest.cpp | 154 Engine = nullptr; in SetUp() 159 if (Engine) in TearDown() 160 LLVMDisposeExecutionEngine(Engine); in TearDown() 282 0, LLVMCreateMCJITCompilerForModule(&Engine, Module, &Options, in buildMCJITEngine() 328 LLVMExecutionEngineRef Engine; member in __anondb1e80810111::MCJITCAPITest 342 reinterpret_cast<uintptr_t>(LLVMGetPointerToGlobal(Engine, Function))); in TEST_F() 359 uint64_t raw = LLVMGetGlobalValueAddress(Engine, "simple_value"); in TEST_F() 373 uint64_t raw = LLVMGetFunctionAddress(Engine, "simple_function"); in TEST_F() 389 reinterpret_cast<uintptr_t>(LLVMGetPointerToGlobal(Engine, Function))); in TEST_F() 409 reinterpret_cast<uintptr_t>(LLVMGetPointerToGlobal(Engine, Function))); in TEST_F() [all …]
|
/external/libcxx/test/std/numerics/rand/rand.adapt/rand.adapt.ibits/ |
D | ctor_engine_move.pass.cpp | 23 typedef std::mt19937 Engine; in main() typedef 24 typedef std::independent_bits_engine<Engine, 24, unsigned> Adaptor; in main() 25 Engine e; in main() 26 Engine e0 = e; in main()
|
D | ctor_engine_copy.pass.cpp | 23 typedef std::mt19937 Engine; in main() typedef 24 typedef std::independent_bits_engine<Engine, 24, unsigned> Adaptor; in main() 25 Engine e; in main()
|
/external/libcxx/test/std/numerics/rand/rand.adapt/rand.adapt.disc/ |
D | ctor_engine_move.pass.cpp | 23 typedef std::ranlux24_base Engine; in main() typedef 25 Engine e; in main() 26 Engine e0 = e; in main()
|
D | ctor_engine_copy.pass.cpp | 23 typedef std::ranlux24_base Engine; in main() typedef 25 Engine e; in main()
|
/external/libcxx/test/std/numerics/rand/rand.adapt/rand.adapt.shuf/ |
D | ctor_engine_move.pass.cpp | 23 typedef std::minstd_rand0 Engine; in main() typedef 25 Engine e; in main() 26 Engine e0 = e; in main()
|
D | ctor_engine_copy.pass.cpp | 23 typedef std::minstd_rand0 Engine; in main() typedef 25 Engine e; in main()
|
/external/svox/PicoLangInstallerSpaEsp/src/com/svox/pico/voice/spa/esp/ |
D | InstallerActivity.java | 43 … rootDirectory = data.getStringExtra(TextToSpeech.Engine.EXTRA_VOICE_DATA_ROOT_DIRECTORY); in onActivityResult() 130 new Intent(TextToSpeech.Engine.ACTION_TTS_DATA_INSTALLED); in run() 131 installCompleteIntent.putExtra(TextToSpeech.Engine.EXTRA_TTS_DATA_INSTALLED, in run() 140 new Intent(TextToSpeech.Engine.ACTION_TTS_DATA_INSTALLED); in run() 141 installCompleteIntent.putExtra(TextToSpeech.Engine.EXTRA_TTS_DATA_INSTALLED, in run()
|
/external/svox/PicoLangInstallerFraFra/src/com/svox/pico/voice/fra/fra/ |
D | InstallerActivity.java | 43 … rootDirectory = data.getStringExtra(TextToSpeech.Engine.EXTRA_VOICE_DATA_ROOT_DIRECTORY); in onActivityResult() 130 new Intent(TextToSpeech.Engine.ACTION_TTS_DATA_INSTALLED); in run() 131 installCompleteIntent.putExtra(TextToSpeech.Engine.EXTRA_TTS_DATA_INSTALLED, in run() 140 new Intent(TextToSpeech.Engine.ACTION_TTS_DATA_INSTALLED); in run() 141 installCompleteIntent.putExtra(TextToSpeech.Engine.EXTRA_TTS_DATA_INSTALLED, in run()
|
/external/svox/PicoLangInstallerDeuDeu/src/com/svox/pico/voice/deu/deu/ |
D | InstallerActivity.java | 43 … rootDirectory = data.getStringExtra(TextToSpeech.Engine.EXTRA_VOICE_DATA_ROOT_DIRECTORY); in onActivityResult() 130 new Intent(TextToSpeech.Engine.ACTION_TTS_DATA_INSTALLED); in run() 131 installCompleteIntent.putExtra(TextToSpeech.Engine.EXTRA_TTS_DATA_INSTALLED, in run() 140 new Intent(TextToSpeech.Engine.ACTION_TTS_DATA_INSTALLED); in run() 141 installCompleteIntent.putExtra(TextToSpeech.Engine.EXTRA_TTS_DATA_INSTALLED, in run()
|
/external/svox/picolanginstaller/src/com/svox/langpack/installer/ |
D | InstallerActivity.java | 44 … rootDirectory = data.getStringExtra(TextToSpeech.Engine.EXTRA_VOICE_DATA_ROOT_DIRECTORY); in onActivityResult() 131 new Intent(TextToSpeech.Engine.ACTION_TTS_DATA_INSTALLED); in run() 132 installCompleteIntent.putExtra(TextToSpeech.Engine.EXTRA_TTS_DATA_INSTALLED, in run() 140 new Intent(TextToSpeech.Engine.ACTION_TTS_DATA_INSTALLED); in run() 141 installCompleteIntent.putExtra(TextToSpeech.Engine.EXTRA_TTS_DATA_INSTALLED, in run()
|
/external/svox/PicoLangInstallerItaIta/src/com/svox/pico/voice/ita/ita/ |
D | InstallerActivity.java | 43 … rootDirectory = data.getStringExtra(TextToSpeech.Engine.EXTRA_VOICE_DATA_ROOT_DIRECTORY); in onActivityResult() 130 new Intent(TextToSpeech.Engine.ACTION_TTS_DATA_INSTALLED); in run() 131 installCompleteIntent.putExtra(TextToSpeech.Engine.EXTRA_TTS_DATA_INSTALLED, in run() 140 new Intent(TextToSpeech.Engine.ACTION_TTS_DATA_INSTALLED); in run() 141 installCompleteIntent.putExtra(TextToSpeech.Engine.EXTRA_TTS_DATA_INSTALLED, in run()
|
/external/svox/PicoLangInstallerEngUsa/src/com/svox/pico/voice/eng/usa/ |
D | InstallerActivity.java | 43 … rootDirectory = data.getStringExtra(TextToSpeech.Engine.EXTRA_VOICE_DATA_ROOT_DIRECTORY); in onActivityResult() 130 new Intent(TextToSpeech.Engine.ACTION_TTS_DATA_INSTALLED); in run() 131 installCompleteIntent.putExtra(TextToSpeech.Engine.EXTRA_TTS_DATA_INSTALLED, in run() 140 new Intent(TextToSpeech.Engine.ACTION_TTS_DATA_INSTALLED); in run() 141 installCompleteIntent.putExtra(TextToSpeech.Engine.EXTRA_TTS_DATA_INSTALLED, in run()
|
/external/svox/PicoLangInstallerEngGbr/src/com/svox/pico/voice/eng/gbr/ |
D | InstallerActivity.java | 43 … rootDirectory = data.getStringExtra(TextToSpeech.Engine.EXTRA_VOICE_DATA_ROOT_DIRECTORY); in onActivityResult() 130 new Intent(TextToSpeech.Engine.ACTION_TTS_DATA_INSTALLED); in run() 131 installCompleteIntent.putExtra(TextToSpeech.Engine.EXTRA_TTS_DATA_INSTALLED, in run() 140 new Intent(TextToSpeech.Engine.ACTION_TTS_DATA_INSTALLED); in run() 141 installCompleteIntent.putExtra(TextToSpeech.Engine.EXTRA_TTS_DATA_INSTALLED, in run()
|
/external/glide/library/src/main/java/com/bumptech/glide/ |
D | GlideBuilder.java | 7 import com.bumptech.glide.load.engine.Engine; 28 private Engine engine; 140 GlideBuilder setEngine(Engine engine) { in setEngine() 178 engine = new Engine(memoryCache, diskCache, diskCacheService, sourceService); in createGlide()
|