/external/llvm/unittests/ExecutionEngine/ |
ExecutionEngineTest.cpp | 26 Engine(EngineBuilder(M).create()) { 30 ASSERT_TRUE(Engine.get() != NULL); 39 const OwningPtr<ExecutionEngine> Engine; 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->updateGlobalMapping(G1, &Mem2) [all...] |
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/fortress/ |
EngineTest.java | 28 import org.apache.harmony.security.fortress.Engine; 35 * Tests for Engine 50 Engine engine = new Engine("Service"); local 53 engine.getInstance("AlGOrItHM", null); 55 if (engine.provider != p) { 58 if (!(engine.spi instanceof SomeClass)) { 69 Engine engine = new Engine("Service") local 82 Engine engine = new Engine("Service"); local 100 Engine engine = new Engine("Service"); local 113 Engine engine = new Engine("CertStore"); local 124 Engine engine = new Engine("CertStore"); local [all...] |
/external/llvm/tools/llvm-diff/ |
DifferenceEngine.h | 10 // This header defines the interface to the LLVM difference engine, 39 Context(DifferenceEngine &Engine, Value *L, Value *R) : Engine(Engine) { 40 Engine.consumer.enterContext(L, R); 44 Engine.consumer.exitContext(); 48 DifferenceEngine &Engine;
|
llvm-diff.cpp | 10 // This file defines the command-line driver for the difference engine. 45 static void diffGlobal(DifferenceEngine &Engine, Module *L, Module *R, 53 Engine.diff(LFn, RFn); 82 DifferenceEngine Engine(Context, Consumer); 87 diffGlobal(Engine, LModule, RModule, GlobalsToCompare[I]); 91 Engine.diff(LModule, RModule);
|
DifferenceEngine.cpp | 11 // engine, which structurally compares global values within a module. 116 /// A function-scope difference engine. 118 DifferenceEngine &Engine; 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") [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/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
TransferFuncs.h | 46 ExprEngine& Engine, 52 ExprEngine& Engine, 64 virtual void evalEndPath(ExprEngine& Engine, 69 ExprEngine& Engine, 77 ExprEngine& 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,
|
/libcore/luni/src/main/java/java/security/ |
AlgorithmParameterGenerator.java | 21 import org.apache.harmony.security.fortress.Engine; 24 * {@code AlgorithmParameterGenerator} is an engine class which is capable of 32 // Used to access common engine functionality 33 private static final Engine ENGINE = new Engine(SERVICE); 52 * a concrete implementation, this engine instance delegates to. 93 Engine.SpiAndProvider sap = ENGINE.getInstance(algorithm, null); 154 Object spi = ENGINE.getInstance(algorithm, provider, null) [all...] |
KeyFactory.java | 22 import org.apache.harmony.security.fortress.Engine; 25 * {@code KeyFactory} is an engine class that can be used to translate between 34 // Used to access common engine functionality 35 private static final Engine ENGINE = new Engine(SERVICE); 81 Engine.SpiAndProvider sap = ENGINE.getInstance(algorithm, null); 135 Object spi = ENGINE.getInstance(algorithm, provider, null);
|
AlgorithmParameters.java | 23 import org.apache.harmony.security.fortress.Engine; 27 * {@code AlgorithmParameters} is an engine class which provides algorithm 37 * Used to access common engine functionality. 39 private static final Engine ENGINE = new Engine(SEVICE); 97 Engine.SpiAndProvider sap = ENGINE.getInstance(algorithm, null); 156 Object spi = ENGINE.getInstance(algorithm, provider, null);
|
KeyPairGenerator.java | 21 import org.apache.harmony.security.fortress.Engine; 25 * {@code KeyPairGenerator} is an engine class which is capable of generating a 36 // Used to access common engine functionality 37 private static final Engine ENGINE = new Engine(SERVICE); 85 Engine.SpiAndProvider sap = ENGINE.getInstance(algorithm, null); 148 Object spi = ENGINE.getInstance(algorithm, provider, null);
|
/libcore/luni/src/main/java/java/security/cert/ |
CertPathBuilder.java | 25 import org.apache.harmony.security.fortress.Engine; 36 // Used to access common engine functionality 37 private static final Engine ENGINE = new Engine(SERVICE); 107 Engine.SpiAndProvider sap = ENGINE.getInstance(algorithm, null); 164 Object spi = ENGINE.getInstance(algorithm, provider, null);
|
CertPathValidator.java | 25 import org.apache.harmony.security.fortress.Engine; 36 // Used to access common engine functionality 37 private static final Engine ENGINE = new Engine(SERVICE); 106 Engine.SpiAndProvider sap = ENGINE.getInstance(algorithm, null); 165 Object spi = ENGINE.getInstance(algorithm, provider, null);
|
CertStore.java | 26 import org.apache.harmony.security.fortress.Engine; 38 // Used to access common engine functionality 39 private static final Engine ENGINE = new Engine(SERVICE); 103 Engine.SpiAndProvider sap = ENGINE.getInstance(type, params); 181 Object spi = ENGINE.getInstance(type, provider, params);
|
CertificateFactory.java | 28 import org.apache.harmony.security.fortress.Engine; 43 // Used to access common engine functionality 44 private static final Engine ENGINE = new Engine(SERVICE); 90 Engine.SpiAndProvider sap = ENGINE.getInstance(type, null); 156 Object spi = ENGINE.getInstance(type, provider, null);
|
/libcore/luni/src/main/java/javax/crypto/ |
SecretKeyFactory.java | 27 import org.apache.harmony.security.fortress.Engine; 44 // Used to access common engine functionality 45 private static final Engine ENGINE = new Engine("SecretKeyFactory"); 108 Engine.SpiAndProvider sap = ENGINE.getInstance(algorithm, null); 170 Object spi = ENGINE.getInstance(algorithm, provider, null);
|
KeyAgreement.java | 29 import org.apache.harmony.security.fortress.Engine; 38 // Used to access common engine functionality 39 private static final Engine ENGINE = new Engine("KeyAgreement"); 104 Engine.SpiAndProvider sap = ENGINE.getInstance(algorithm, null); 166 Object spi = ENGINE.getInstance(algorithm, provider, null);
|
KeyGenerator.java | 27 import org.apache.harmony.security.fortress.Engine; 36 // Used to access common engine functionality 37 private static final Engine ENGINE = new Engine("KeyGenerator"); 103 Engine.SpiAndProvider sap = ENGINE.getInstance(algorithm, null); 163 Object spi = ENGINE.getInstance(algorithm, provider, null);
|
/libcore/luni/src/main/java/javax/net/ssl/ |
KeyManagerFactory.java | 28 import org.apache.harmony.security.fortress.Engine; 37 // Used to access common engine functionality 38 private static final Engine ENGINE = new Engine(SERVICE); 73 Engine.SpiAndProvider sap = ENGINE.getInstance(algorithm, null); 132 Object spi = ENGINE.getInstance(algorithm, provider, null);
|
TrustManagerFactory.java | 27 import org.apache.harmony.security.fortress.Engine; 37 // Used to access common engine functionality 38 private static final Engine ENGINE = new Engine(SERVICE); 72 Engine.SpiAndProvider sap = ENGINE.getInstance(algorithm, null); 131 Object spi = ENGINE.getInstance(algorithm, provider, null);
|
SSLContext.java | 26 import org.apache.harmony.security.fortress.Engine; 37 // Used to access common engine functionality 38 private static final Engine ENGINE = new Engine(SERVICE); 58 synchronized (ENGINE) { 77 synchronized (ENGINE) { 98 Engine.SpiAndProvider sap = ENGINE.getInstance(protocol, null); 159 Object spi = ENGINE.getInstance(protocol, provider, null) [all...] |
/external/clang/lib/StaticAnalyzer/Checkers/ |
OSAtomicChecker.cpp | 97 ExprEngine &Engine = C.getEngine(); 113 Engine.evalLoad(Tmp, theValueExpr, C.getPredecessor(), 148 SValBuilder &svalBuilder = Engine.getSValBuilder(); 167 Engine.evalStore(TmpStore, NULL, theValueExpr, N, 188 Res = Engine.getSValBuilder().makeTruthVal(true, T); 199 Res = Engine.getSValBuilder().makeTruthVal(false, CE->getType());
|
/external/svox/PicoLangInstallerDeuDeu/src/com/svox/pico/voice/deu/deu/ |
InstallerActivity.java | 43 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/ |
InstallerActivity.java | 43 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,
|