HomeSort by relevance Sort by last modified time
    Searched full:engine (Results 501 - 525 of 3414) sorted by null

<<21222324252627282930>>

  /frameworks/base/core/java/android/speech/tts/
ITextToSpeechService.aidl 33 * Tells the engine to synthesize some speech and play it back.
46 * Tells the engine to synthesize some speech and write it to a file.
99 * Returns the language, country and variant currently being used by the TTS engine.
103 * country (ISO 3-letter code) and variant used by the engine.
115 * country (ISO 3-letter code) and variant used by the engine.
122 * Checks whether the engine supports a given language.
152 * Notifies the engine that it should load a speech synthesis language.
184 * Notifies the engine that it should load a speech synthesis voice.
  /libcore/luni/src/main/java/java/security/cert/
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);
183 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);
157 Object spi = ENGINE.getInstance(type, provider, null);
  /libcore/luni/src/main/java/javax/crypto/
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);
164 Object spi = ENGINE.getInstance(algorithm, provider, null);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.adapt/rand.adapt.ibits/
values.pass.cpp 12 // template<class Engine, size_t w, class UIntType>
19 // // engine characteristics
  /external/chromium_org/chromeos/ime/
component_extension_ime_manager.h 18 // Represents an engine in component extension IME.
22 std::string engine_id; // The engine id.
24 std::vector<std::string> language_codes; // The engine's language(ex. "en").
25 std::string description; // The engine description.
26 std::vector<std::string> layouts; // The list of keyboard layout of engine.
76 // mapping between input method id and engine components. This function must
  /external/chromium_org/sync/engine/
commit.cc 5 #include "sync/engine/commit.h"
8 #include "sync/engine/commit_contribution.h"
9 #include "sync/engine/commit_processor.h"
10 #include "sync/engine/commit_util.h"
11 #include "sync/engine/syncer.h"
12 #include "sync/engine/syncer_proto_util.h"
  /external/chromium_org/third_party/openssl/openssl/apps/
pkeyparam.c 77 char *engine=NULL; local
111 else if (strcmp(*args,"-engine") == 0)
114 engine= *(++args);
137 BIO_printf(bio_err, "-engine e use engine e, possibly a hardware device.\n");
143 setup_engine(bio_err, engine, 0);
  /external/chromium_org/ui/base/ime/chromeos/
ime_bridge.h 31 // Called when the engine commit a text.
34 // Called when the engine updates composition text.
39 // Called when the engine request deleting surrounding string.
44 // A interface to handle the engine handler method call.
158 // Updates current EngineHandler. If there is no active engine service, pass
162 // Returns current EngineHandler. This function returns NULL if current engine
  /external/openssl/apps/
pkeyparam.c 77 char *engine=NULL; local
111 else if (strcmp(*args,"-engine") == 0)
114 engine= *(++args);
137 BIO_printf(bio_err, "-engine e use engine e, possibly a hardware device.\n");
143 setup_engine(bio_err, engine, 0);
  /libcore/support/src/test/java/libcore/javax/net/ssl/
TestSSLEnginePair.java 64 * Create a new connected server/client engine pair within a
139 private static boolean handshakeCompleted(SSLEngine engine,
148 HandshakeStatus status = engine.getHandshakeStatus();
154 Runnable runnable = engine.getDelegatedTask();
168 SSLEngineResult unwrapResult = engine.unwrap(input, scratch);
180 SSLEngineResult wrapResult = engine.wrap(EMPTY_BYTE_BUFFER, output);
  /packages/apps/Browser/src/com/android/browser/search/
SearchEngineInfo.java 31 * Loads and holds data for a given web search engine.
37 // The fields of a search engine data array, defined in the same order as they appear in the
55 // The array of strings defining this search engine. The array values are in the same order as
60 * @throws IllegalArgumentException If the name does not refer to a valid search engine
122 * data available for this search engine).
130 * was no data available for this search engine).
  /external/chromium_org/third_party/openssl/openssl/crypto/engine/
eng_cryptodev.c 30 #include <openssl/engine.h>
101 static int cryptodev_engine_ciphers(ENGINE *e, const EVP_CIPHER **cipher,
103 static int cryptodev_engine_digests(ENGINE *e, const EVP_MD **digest,
130 static int cryptodev_ctrl(ENGINE *e, int cmd, long i, void *p,
315 * thing called by the engine init crud which determines what it
316 * can use for ciphers from this engine. We want to return
323 * use this engine as the default, and if for whatever reason
492 * libcrypto EVP stuff - this is how we get wired to EVP so the engine
604 * Registered by the ENGINE when used to find out how to deal with
605 * a particular NID in the ENGINE. this says what we'll do at th
1367 ENGINE *engine = ENGINE_new(); local
    [all...]
  /external/openssl/crypto/engine/
eng_cryptodev.c 30 #include <openssl/engine.h>
101 static int cryptodev_engine_ciphers(ENGINE *e, const EVP_CIPHER **cipher,
103 static int cryptodev_engine_digests(ENGINE *e, const EVP_MD **digest,
130 static int cryptodev_ctrl(ENGINE *e, int cmd, long i, void *p,
315 * thing called by the engine init crud which determines what it
316 * can use for ciphers from this engine. We want to return
323 * use this engine as the default, and if for whatever reason
492 * libcrypto EVP stuff - this is how we get wired to EVP so the engine
604 * Registered by the ENGINE when used to find out how to deal with
605 * a particular NID in the ENGINE. this says what we'll do at th
1367 ENGINE *engine = ENGINE_new(); local
    [all...]
  /external/wpa_supplicant_8/src/crypto/
tls_openssl.c 24 #include <openssl/engine.h>
92 ENGINE *engine; /* functional reference to the engine */ member in struct:tls_connection
93 EVP_PKEY *private_key; /* the private key if using engine */
591 * tls_engine_load_dynamic_generic - load any openssl engine
592 * @pre: an array of commands and values that load an engine initialized
593 * in the engine specific function
595 * engine (or %NULL if not required)
596 * @id: the engine id of the engine to load (only required if post is not %NUL
605 ENGINE *engine; local
    [all...]
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.equinox.p2.touchpoint.eclipse_2.1.200.v20130327-2119.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.p2.touchpoint.eclipse_2.1.200.v20130327-2119.jar 
  /external/chromium_org/media/audio/android/
opensles_output.cc 156 // Destroy the engine object. We don't store any associated interface for
194 // Initializes the engine object with specific option. After working with the
202 // Realize the SL engine object in synchronous mode.
206 // Get the SL engine interface which is implicit.
207 SLEngineItf engine; local
209 engine_object_.Get(), SL_IID_ENGINE, &engine),
213 LOG_ON_FAILURE_AND_RETURN((*engine)->CreateOutputMix(
214 engine, output_mixer_.Receive(), 0, NULL, NULL),
238 (*engine)->CreateAudioPlayer(engine,
    [all...]
  /external/chromium_org/third_party/icu/source/test/letest/
letest.cpp 58 LayoutEngine *engine = LayoutEngine::layoutEngineFactory(font, arabScriptCode, -1, status); local
64 glyphCount = engine->getGlyphCount();
73 engine->getGlyphs(NULL, status);
80 engine->getGlyphs(glyphs, status);
87 engine->getGlyphs(NULL, 0xFF000000L, status);
94 engine->getGlyphs(glyphs, 0xFF000000L, status);
101 engine->getCharIndices(NULL, status);
108 engine->getCharIndices(indices, status);
115 engine->getCharIndices(NULL, 1024, status);
122 engine->getCharIndices(indices, 1024, status)
221 LayoutEngine *engine = NULL; local
243 LayoutEngine *engine = LayoutEngine::layoutEngineFactory(font, arabScriptCode, -1, status); local
616 LayoutEngine *engine = NULL; local
    [all...]
  /external/icu/icu4c/source/test/letest/
letest.cpp 58 LayoutEngine *engine = LayoutEngine::layoutEngineFactory(font, arabScriptCode, -1, status); local
64 glyphCount = engine->getGlyphCount();
73 engine->getGlyphs(NULL, status);
80 engine->getGlyphs(glyphs, status);
87 engine->getGlyphs(NULL, 0xFF000000L, status);
94 engine->getGlyphs(glyphs, 0xFF000000L, status);
101 engine->getCharIndices(NULL, status);
108 engine->getCharIndices(indices, status);
115 engine->getCharIndices(NULL, 1024, status);
122 engine->getCharIndices(indices, 1024, status)
221 LayoutEngine *engine = NULL; local
243 LayoutEngine *engine = LayoutEngine::layoutEngineFactory(font, arabScriptCode, -1, status); local
616 LayoutEngine *engine = NULL; local
    [all...]
  /libcore/luni/src/main/java/javax/net/ssl/
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) {
138 Engine.SpiAndProvider sap = ENGINE.getInstance(protocol, null);
272 Object spi = ENGINE.getInstance(protocol, provider, null)
    [all...]
  /packages/apps/Settings/src/com/android/settings/tts/
TtsEngineSettingsFragment.java 92 if (TextToSpeech.Engine.ACTION_TTS_DATA_INSTALLED.equals(intent.getAction())) {
156 new IntentFilter(TextToSpeech.Engine.ACTION_TTS_DATA_INSTALLED));
180 Intent intent = new Intent(TextToSpeech.Engine.ACTION_CHECK_TTS_DATA);
183 if (DBG) Log.d(TAG, "Updating engine: Checking voice data: " + intent.toUri(0));
193 if (resultCode != TextToSpeech.Engine.CHECK_VOICE_DATA_FAIL) {
203 Log.e(TAG, "Engine failed voice data integrity check (null return)" +
212 TextToSpeech.Engine.EXTRA_AVAILABLE_VOICES);
214 TextToSpeech.Engine.EXTRA_UNAVAILABLE_VOICES);
294 * Ask the current default engine to launch the matching INSTALL_TTS_DATA activity
299 Intent intent = new Intent(TextToSpeech.Engine.ACTION_INSTALL_TTS_DATA)
    [all...]
  /external/chromium_org/third_party/openssl/openssl/
Crypto-config.mk 273 crypto/engine/eng_all.c \
274 crypto/engine/eng_cnf.c \
275 crypto/engine/eng_ctrl.c \
276 crypto/engine/eng_dyn.c \
277 crypto/engine/eng_err.c \
278 crypto/engine/eng_fat.c \
279 crypto/engine/eng_init.c \
280 crypto/engine/eng_lib.c \
281 crypto/engine/eng_list.c \
282 crypto/engine/eng_pkey.c
    [all...]
  /external/openssl/
Crypto-config-host.mk 274 crypto/engine/eng_all.c \
275 crypto/engine/eng_cnf.c \
276 crypto/engine/eng_ctrl.c \
277 crypto/engine/eng_dyn.c \
278 crypto/engine/eng_err.c \
279 crypto/engine/eng_fat.c \
280 crypto/engine/eng_init.c \
281 crypto/engine/eng_lib.c \
282 crypto/engine/eng_list.c \
283 crypto/engine/eng_pkey.c
    [all...]
Crypto-config-target.mk 274 crypto/engine/eng_all.c \
275 crypto/engine/eng_cnf.c \
276 crypto/engine/eng_ctrl.c \
277 crypto/engine/eng_dyn.c \
278 crypto/engine/eng_err.c \
279 crypto/engine/eng_fat.c \
280 crypto/engine/eng_init.c \
281 crypto/engine/eng_lib.c \
282 crypto/engine/eng_list.c \
283 crypto/engine/eng_pkey.c
    [all...]

Completed in 1116 milliseconds

<<21222324252627282930>>