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

1 2 3 4 5

  /ndk/sources/cxx-stl/llvm-libc++/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 26 Engine(EngineBuilder(M).setErrorStr(&Error).create()) {
30 ASSERT_TRUE(Engine.get() != NULL) << "EngineBuilder returned error: '"
41 const OwningPtr<ExecutionEngine> Engine;
48 Engine->addGlobalMapping(G1, &Mem1);
49 EXPECT_EQ(&Mem1, Engine->getPointerToGlobalIfAvailable(G1));
51 Engine->updateGlobalMapping(G1, &Mem2);
52 EXPECT_EQ(&Mem2, Engine->getPointerToGlobalIfAvailable(G1));
53 Engine->updateGlobalMapping(G1, NULL);
54 EXPECT_EQ(NULL, Engine->getPointerToGlobalIfAvailable(G1));
55 Engine->updateGlobalMapping(G1, &Mem2)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/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++/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;
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...]
  /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/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);
  /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...]
  /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);
106 Engine.SpiAndProvider sap = ENGINE.getInstance(algorithm, null);
163 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);
  /libcore/luni/src/main/java/javax/net/ssl/
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);
76 Engine.SpiAndProvider sap = ENGINE.getInstance(algorithm, null);
135 Object spi = ENGINE.getInstance(algorithm, provider, null);

Completed in 3133 milliseconds

1 2 3 4 5