HomeSort by relevance Sort by last modified time
    Searched full:engine (Results 176 - 200 of 3084) sorted by null

1 2 3 4 5 6 78 91011>>

  /development/samples/TtsEngine/
_index.html 1 <p>This sample demonstrates how to create a text to speech engine
8 a simple text to speech engine that converts sentences into audio by
22 a settings screen for users to set various engine parameters. This is
  /external/chromium/chrome/browser/sync/engine/
all_status.h 5 // The AllStatus object watches various sync engine components and aggregates
16 #include "chrome/browser/sync/engine/syncapi.h"
17 #include "chrome/browser/sync/engine/syncer_types.h"
syncer.cc 5 #include "chrome/browser/sync/engine/syncer.h"
9 #include "chrome/browser/sync/engine/apply_updates_command.h"
10 #include "chrome/browser/sync/engine/build_and_process_conflict_sets_command.h"
11 #include "chrome/browser/sync/engine/build_commit_command.h"
12 #include "chrome/browser/sync/engine/cleanup_disabled_types_command.h"
13 #include "chrome/browser/sync/engine/clear_data_command.h"
14 #include "chrome/browser/sync/engine/conflict_resolver.h"
15 #include "chrome/browser/sync/engine/download_updates_command.h"
16 #include "chrome/browser/sync/engine/get_commit_ids_command.h"
17 #include "chrome/browser/sync/engine/net/server_connection_manager.h
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/
README 7 API on Google's Python App Engine service.
14 First, register an App Engine app at www.appspot.com. Make sure you select
29 Then deploy your application to App Engine, and you will be able to log in
  /external/chromium_org/chrome/browser/ui/views/
browser_dialogs.h 29 // Shows a dialog box that allows a search engine to be edited. |template_url|
30 // is the search engine being edited. If it is NULL, then the dialog will add a
31 // new search engine with the data the user supplies. |delegate| is an object
  /external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-python/
README 7 API on Google's Python App Engine service.
14 First, register an App Engine app at www.appspot.com. Make sure you select
29 Then deploy your application to App Engine, and you will be able to log in
  /external/chromium_org/chrome/common/extensions/docs/templates/intros/
ttsEngine.html 3 <p>An extension can register itself as a speech engine. By doing so, it
16 <p>To implement a TTS engine, an extension must
22 "name": "My TTS Engine",
51 engine used. In the unlikely event that two extensions register voices
61 When an engine supports more than one language, it can easily register a
68 <p>Finally, the <code>event_types</code> parameter is required if the engine can
75 <strong>Note:</strong> If your TTS engine does not support
79 option to your engine's onSpeak handler, giving you the option of
88 <li><code>'start'</code>: The engine has started speaking the utterance.
98 <li><code>'end'</code>: The engine has finished speaking the utterance
    [all...]
  /external/svox/pico/tests/data/
xsampa_pico_man_README.txt 3 The following files contain a series of utterances to test the Pico TTS engine with regards to
14 Engine SDK").
15 They are formatted as utterances that can be sent to the Pico engine through the Android 1.6 API.
  /external/valgrind/main/helgrind/
README_YARD.txt 10 It uses a new and relatively simple race detection engine, based on
16 * Modularity. The entire race detection engine is placed in a
18 This makes it easier to debug and verify the engine; indeed it can
  /libcore/crypto/src/main/java/org/conscrypt/
OpenSSLKey.java 31 private final OpenSSLEngine engine; field in class:OpenSSLKey
37 engine = null;
41 public OpenSSLKey(long ctx, OpenSSLEngine engine, String alias) {
43 this.engine = engine;
57 return engine;
61 return engine != null;
187 * ENGINE-based keys must be checked in a special way.
189 if (engine == null) {
193 } else if (!engine.equals(other.getEngine()))
    [all...]
  /packages/apps/Browser/tools/
all_search_engines.template.xml 23 Each string-array item below refers to one search engine in a specific locale, and the name of the
28 - Keyword: empty string if the engine has no keyword. (currently unused)
32 - Suggest URL: empty string if this engine has no suggest feature
  /external/chromium_org/third_party/openssl/openssl/crypto/rsa/
rsa_lib.c 67 #include <openssl/engine.h>
119 * to deal with which ENGINE it comes from. */
124 if (rsa->engine)
126 ENGINE_finish(rsa->engine);
127 rsa->engine = NULL;
135 RSA *RSA_new_method(ENGINE *engine)
148 if (engine)
150 if (!ENGINE_init(engine))
156 ret->engine = engine
    [all...]
  /external/openssl/crypto/rsa/
rsa_lib.c 67 #include <openssl/engine.h>
119 * to deal with which ENGINE it comes from. */
124 if (rsa->engine)
126 ENGINE_finish(rsa->engine);
127 rsa->engine = NULL;
135 RSA *RSA_new_method(ENGINE *engine)
148 if (engine)
150 if (!ENGINE_init(engine))
156 ret->engine = engine
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/ecdh/
ech_lib.c 73 #include <openssl/engine.h>
124 if (ecdh->engine)
126 ENGINE_finish(ecdh->engine);
127 ecdh->engine = NULL;
138 static ECDH_DATA *ECDH_DATA_new_method(ENGINE *engine)
152 ret->engine = engine;
154 if (!ret->engine)
155 ret->engine = ENGINE_get_default_ECDH()
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/ecdsa/
ecs_lib.c 59 #include <openssl/engine.h>
106 if (ecdsa->engine)
108 ENGINE_finish(ecdsa->engine);
109 ecdsa->engine = NULL;
117 static ECDSA_DATA *ECDSA_DATA_new_method(ENGINE *engine)
131 ret->engine = engine;
133 if (!ret->engine)
134 ret->engine = ENGINE_get_default_ECDSA()
    [all...]
  /external/llvm/bindings/ocaml/executionengine/
llvm_executionengine.mli 12 This interface provides an ocaml API for LLVM execution engine (JIT/
19 and receive values from the execution engine. It supports only a limited
84 (** An execution engine is either a JIT compiler or an interpreter, capable of
89 (** [create m] creates a new execution engine, taking ownership of the
91 interpreter. Raises [Error msg] if an error occurrs. The execution engine
98 execution engine is not garbage collected and must be destroyed with
106 engine is not garbage collected and must be destroyed with [dispose ee].
110 (** [dispose ee] releases the memory used by the execution engine and must be
114 (** [add_module m ee] adds the module [m] to the execution engine [ee]. *)
117 (** [remove_module m ee] removes the module [m] from the execution engine
    [all...]
  /external/openssl/crypto/ecdh/
ech_lib.c 73 #include <openssl/engine.h>
124 if (ecdh->engine)
126 ENGINE_finish(ecdh->engine);
127 ecdh->engine = NULL;
138 static ECDH_DATA *ECDH_DATA_new_method(ENGINE *engine)
152 ret->engine = engine;
154 if (!ret->engine)
155 ret->engine = ENGINE_get_default_ECDH()
    [all...]
  /external/openssl/crypto/ecdsa/
ecs_lib.c 59 #include <openssl/engine.h>
106 if (ecdsa->engine)
108 ENGINE_finish(ecdsa->engine);
109 ecdsa->engine = NULL;
117 static ECDSA_DATA *ECDSA_DATA_new_method(ENGINE *engine)
131 ret->engine = engine;
133 if (!ret->engine)
134 ret->engine = ENGINE_get_default_ECDSA()
    [all...]
  /frameworks/av/include/media/
AudioEffect.h 155 /* Callback function notifying client application of a change in effect engine state or
157 * An effect engine can be shared by several applications but only one has the control
158 * of the engine activity and configuration at a time.
160 * retrieves the control of the effect engine. Loss of control happens
161 * if another application requests the use of the engine by creating an AudioEffect for
165 * control of the effect engine when the effect is enabled or disabled.
167 * control of the effect engine when an effect parameter is changed.
187 * AudioEffect is the base class for creating and controlling an effect engine from
188 * the application process. Creating an AudioEffect object will create the effect engine
189 * in the AudioFlinger if no engine of the specified type exists. If one exists, this engin
    [all...]
  /external/chromium_org/sync/engine/
all_status.h 5 // The AllStatus object watches various sync engine components and aggregates
16 #include "sync/engine/sync_engine_event.h"
17 #include "sync/engine/syncer_types.h"
19 #include "sync/internal_api/public/engine/sync_status.h"
20 #include "sync/engine/nudge_source.h"
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.adapt/rand.adapt.disc/
values.pass.cpp 12 // template<class Engine, size_t p, size_t r>
17 // typedef typename Engine::result_type result_type;
19 // // engine characteristics
22 // static constexpr result_type min() { return Engine::min(); }
23 // static constexpr result_type max() { return Engine::max(); }
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.adapt/rand.adapt.ibits/
io.pass.cpp 12 // template<class Engine, size_t w, class UIntType>
16 // class Engine, size_t w, class UIntType>
19 // const independent_bits_engine<Engine, w, UIntType>& x);
22 // class Engine, size_t w, class UIntType>
25 // independent_bits_engine<Engine, w, UIntType>& x);
  /external/chromium_org/third_party/openssl/openssl/crypto/engine/
tb_cipher.c 64 void ENGINE_unregister_ciphers(ENGINE *e)
74 int ENGINE_register_ciphers(ENGINE *e)
90 ENGINE *e;
96 int ENGINE_set_default_ciphers(ENGINE *e)
113 ENGINE *ENGINE_get_cipher_engine(int nid)
118 /* Obtains a cipher implementation from an ENGINE functional reference */
119 const EVP_CIPHER *ENGINE_get_cipher(ENGINE *e, int nid)
132 /* Gets the cipher callback from an ENGINE structure */
133 ENGINE_CIPHERS_PTR ENGINE_get_ciphers(const ENGINE *e)
138 /* Sets the cipher callback in an ENGINE structure *
    [all...]
tb_digest.c 64 void ENGINE_unregister_digests(ENGINE *e)
74 int ENGINE_register_digests(ENGINE *e)
90 ENGINE *e;
96 int ENGINE_set_default_digests(ENGINE *e)
113 ENGINE *ENGINE_get_digest_engine(int nid)
118 /* Obtains a digest implementation from an ENGINE functional reference */
119 const EVP_MD *ENGINE_get_digest(ENGINE *e, int nid)
132 /* Gets the digest callback from an ENGINE structure */
133 ENGINE_DIGESTS_PTR ENGINE_get_digests(const ENGINE *e)
138 /* Sets the digest callback in an ENGINE structure *
    [all...]
tb_ecdh.c 1 /* crypto/engine/tb_ecdh.c */
12 * The ECDH engine software is originally written by Nils Gura and
80 void ENGINE_unregister_ECDH(ENGINE *e)
90 int ENGINE_register_ECDH(ENGINE *e)
100 ENGINE *e;
106 int ENGINE_set_default_ECDH(ENGINE *e)
117 ENGINE *ENGINE_get_default_ECDH(void)
122 /* Obtains an ECDH implementation from an ENGINE functional reference */
123 const ECDH_METHOD *ENGINE_get_ECDH(const ENGINE *e)
128 /* Sets an ECDH implementation in an ENGINE structure *
    [all...]

Completed in 1882 milliseconds

1 2 3 4 5 6 78 91011>>