/external/chromium_org/chrome/common/extensions/api/ |
manifest_types.json | 65 "description": "A search engine", 70 "description": "Name of the search engine displayed to user." 74 "description": "Omnibox keyword for the search engine." 78 "description": "An icon URL for the search engine." 82 "description": "An search URL used by the search engine." 91 "description": "If omitted, this engine does not support suggestions." 96 "description": "If omitted, this engine does not support instant." 101 "description": "If omitted, this engine does not support image search."
|
tts_engine.json | 8 "description": "Use the <code>chrome.ttsEngine</code> API to implement a text-to-speech(TTS) engine using an extension. If your extension registers using this API, it will receive events containing an utterance to be spoken and other parameters when any extension or Chrome App uses the <a href='tts.html'>tts</a> API to generate speech. Your extension can then use any available web technology to synthesize and output the speech, and send events back to the calling function to report the status.", 14 "description": "Routes a TTS event from a speech engine to a client.", 23 "description": "The update event from the text-to-speech engine indicating the status of this utterance." 37 "description": "The text to speak, specified as either plain text or an SSML document. If your engine does not support SSML, you should strip out all XML markup and synthesize only the underlying text content. The value of this parameter is guaranteed to be no more than 32,768 characters. If this engine does not support speaking that many characters at a time, the utterance should be split into smaller chunks and queued internally without returning an error." 91 "description": "The event from the text-to-speech engine indicating the status of this utterance." 105 "description": "Optional: if an engine supports the pause event, it should pause the current utterance being spoken, if any, until it receives a resume event or stop event. Note that a stop event should also clear the paused state." 110 "description": "Optional: if an engine supports the pause event, it should also support the resume event, to continue speaking the current utterance, if any. Note that a stop event should also clear the paused state."
|
/external/chromium_org/chrome/renderer/spellchecker/ |
custom_dictionary_engine.h | 22 // Initialize the custom dictionary engine. 25 // Spellcheck |text|. Assumes that another spelling engine has set
|
/external/chromium_org/chromeos/ime/ |
component_extension_ime_manager.cc | 86 ComponentExtensionEngine engine; local 89 if (!FindEngineEntry(input_method_id, NULL, &engine)) 96 ComponentExtensionEngine engine; local 97 if (!FindEngineEntry(input_method_id, NULL, &engine)) 99 return engine.display_name; 104 ComponentExtensionEngine engine; local 105 if (!FindEngineEntry(input_method_id, NULL, &engine)) 107 return engine.description;
|
/external/chromium_org/google_apis/gcm/engine/ |
fake_connection_factory.cc | 5 #include "google_apis/gcm/engine/fake_connection_factory.h" 7 #include "google_apis/gcm/engine/fake_connection_handler.h"
|
/external/chromium_org/third_party/libxslt/libxslt/ |
xslt.h | 2 * Summary: Interfaces, constants and types related to the XSLT engine 3 * Description: Interfaces, constants and types related to the XSLT engine
|
/external/chromium_org/third_party/openssl/openssl/crypto/engine/ |
eng_init.c | 1 /* crypto/engine/eng_init.c */ 58 /* Initialise a engine type for use (or up its functional reference count 60 int engine_unlocked_init(ENGINE *e) 65 /* This is the first functional reference and the engine 80 /* Free a functional reference to a engine type. This version is only used 82 int engine_unlocked_finish(ENGINE *e, int unlock_for_handlers) 121 int ENGINE_init(ENGINE *e) 136 int ENGINE_finish(ENGINE *e)
|
/external/libxslt/libxslt/ |
xslt.h | 2 * Summary: Interfaces, constants and types related to the XSLT engine 3 * Description: Interfaces, constants and types related to the XSLT engine
|
/external/llvm/examples/Kaleidoscope/MCJIT/ |
README.txt | 7 execution engine instead of the older JIT engine.
|
/external/llvm/unittests/ExecutionEngine/MCJIT/ |
MCJITCAPITest.cpp | 88 Engine = 0; 93 if (Engine) 94 LLVMDisposeExecutionEngine(Engine); 138 0, LLVMCreateMCJITCompilerForModule(&Engine, Module, &Options, 144 LLVMAddTargetData(LLVMGetExecutionEngineTargetData(Engine), pass); 154 LLVMExecutionEngineRef Engine; 170 functionPointer.raw = LLVMGetPointerToGlobal(Engine, Function); 188 functionPointer.raw = LLVMGetPointerToGlobal(Engine, Function);
|
/external/openssl/crypto/engine/ |
eng_init.c | 1 /* crypto/engine/eng_init.c */ 58 /* Initialise a engine type for use (or up its functional reference count 60 int engine_unlocked_init(ENGINE *e) 65 /* This is the first functional reference and the engine 80 /* Free a functional reference to a engine type. This version is only used 82 int engine_unlocked_finish(ENGINE *e, int unlock_for_handlers) 121 int ENGINE_init(ENGINE *e) 136 int ENGINE_finish(ENGINE *e)
|
/frameworks/wilhelm/src/ |
entry.c | 58 // process engine options 71 SL_LOGE("unknown engine option: feature=%u data=%u", 89 // if an engine already exists, then increment its ref count 95 // In order to update the engine object, we need to lock it, 103 // now expose additional interfaces not requested by the earlier engine create 130 // return the shared engine object 135 // here when creating the first engine reference 164 // return the new engine object
|
/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);
|
/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); 163 Object spi = ENGINE.getInstance(algorithm, provider, null);
|
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);
|
/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); 77 Engine.SpiAndProvider sap = ENGINE.getInstance(algorithm, null); 136 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); 76 Engine.SpiAndProvider sap = ENGINE.getInstance(algorithm, null); 135 Object spi = ENGINE.getInstance(algorithm, provider, null);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.adapt/rand.adapt.disc/ |
result_type.pass.cpp | 12 // template<class Engine, size_t p, size_t r> 17 // typedef typename Engine::result_type result_type;
|
/sdk/emulator/opengl/host/libs/Translator/EGL/ |
EglValidate.h | 29 static bool engine(EGLint engine);
|
/cts/tests/tests/speech/src/android/speech/tts/cts/ |
TextToSpeechTest.java | 121 private void assertContainsEngine(String engine, List<TextToSpeech.EngineInfo> engines) { 123 if (engineInfo.name.equals(engine)) { 127 fail("Engine " + engine + " not found"); 132 params.put(TextToSpeech.Engine.KEY_PARAM_UTTERANCE_ID, UTTERANCE_ID);
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/ |
lp_bld_init.c | 192 if (gallivm->engine && gallivm->provider) 193 LLVMRemoveModuleProvider(gallivm->engine, gallivm->provider, 207 if (HAVE_LLVM >= 0x207 && gallivm->engine) { 209 LLVMDisposeExecutionEngine(gallivm->engine); 215 /* Don't free the TargetData, it's owned by the exec engine */ 232 gallivm->engine = NULL; 259 ret = lp_build_create_mcjit_compiler_for_module(&gallivm->engine, 264 ret = LLVMCreateJITCompiler(&gallivm->engine, gallivm->provider, 274 lp_register_oprofile_jit_event_listener(gallivm->engine); 278 LLVMAddModuleProvider(gallivm->engine, gallivm->provider);//ne [all...] |
/external/chromium_org/third_party/openssl/openssl/patches/ |
eng_dyn_dirs.patch | 20 crypto/engine/eng_dyn.c | 5 ++++- 47 diff --git a/crypto/engine/eng_dyn.c b/crypto/engine/eng_dyn.c 49 --- a/crypto/engine/eng_dyn.c 50 +++ b/crypto/engine/eng_dyn.c
|
/external/mesa3d/src/gallium/auxiliary/gallivm/ |
lp_bld_init.c | 192 if (gallivm->engine && gallivm->provider) 193 LLVMRemoveModuleProvider(gallivm->engine, gallivm->provider, 207 if (HAVE_LLVM >= 0x207 && gallivm->engine) { 209 LLVMDisposeExecutionEngine(gallivm->engine); 215 /* Don't free the TargetData, it's owned by the exec engine */ 232 gallivm->engine = NULL; 259 ret = lp_build_create_mcjit_compiler_for_module(&gallivm->engine, 264 ret = LLVMCreateJITCompiler(&gallivm->engine, gallivm->provider, 274 lp_register_oprofile_jit_event_listener(gallivm->engine); 278 LLVMAddModuleProvider(gallivm->engine, gallivm->provider);//ne [all...] |
/external/openssl/patches/ |
eng_dyn_dirs.patch | 20 crypto/engine/eng_dyn.c | 5 ++++- 47 diff --git a/crypto/engine/eng_dyn.c b/crypto/engine/eng_dyn.c 49 --- a/crypto/engine/eng_dyn.c 50 +++ b/crypto/engine/eng_dyn.c
|