/external/openssl/crypto/evp/ |
evp_enc.c | 65 #include <openssl/engine.h> 103 int EVP_CipherInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher, ENGINE *impl, 116 * so this context may already have an ENGINE! Try to avoid releasing 117 * the previous handle, re-querying for an ENGINE, and having a 119 if (ctx->engine && ctx->cipher && (!cipher || 127 * ENGINE and EVP_CIPHER could be used). */ 146 /* Ask if an ENGINE is reserved for this job */ 150 /* There's an ENGINE for this job ... (apparently) */ 161 /* We'll use the ENGINE's private cipher definition */ 163 /* Store the ENGINE functional reference so we kno [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,
|
/external/apache-http/src/org/apache/http/impl/auth/ |
NTLMScheme.java | 56 private final NTLMEngine engine; field in class:NTLMScheme 61 public NTLMScheme(final NTLMEngine engine) { 63 if (engine == null) { 64 throw new IllegalArgumentException("NTLM engine may not be null"); 66 this.engine = engine; 119 response = this.engine.generateType1Msg( 124 response = this.engine.generateType3Msg(
|
/external/chromium_org/chrome/browser/chromeos/ |
upgrade_detector_chromeos.h | 23 // engine. 27 // update engine.
|
/external/chromium_org/chrome/browser/ui/search_engines/ |
search_engine_tab_helper.h | 16 // Per-tab search engine manager. Handles dealing search engine processing
|
/external/chromium_org/chrome/common/extensions/api/ |
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'>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 | 143 ComponentExtensionEngine engine; local 146 if (!FindEngineEntry(input_method_id, NULL, &engine)) 153 ComponentExtensionEngine engine; local 154 if (!FindEngineEntry(input_method_id, NULL, &engine)) 156 return engine.display_name; 161 ComponentExtensionEngine engine; local 162 if (!FindEngineEntry(input_method_id, NULL, &engine)) 164 return engine.description;
|
/external/chromium_org/components/search_engines/ |
prepopulated_engines_schema.json | 25 // If omitted, this engine does not support suggestions. 27 // If omitted, this engine does not support instant. 29 // If omitted, this engine does not support image search. 31 // If omitted, this engine does not support rendering a new tab page. 33 // If omitted, this engine does not support contextual search. 74 // Unique id for this prepopulate engine (corresponds to 77 // the ID is used when modifying engine data in subsequent versions, so that 81 // entries can share an ID if they represent the "same" engine (e.g. Yahoo!
|
/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/pdf/ |
thumbnail_control.h | 35 bool visible, Owner* owner, PDFEngine* engine, 44 virtual void ResetEngine(PDFEngine* engine);
|
/external/chromium_org/sync/engine/ |
directory_commit_contributor.h | 11 #include "sync/engine/commit_contributor.h" 12 #include "sync/engine/directory_commit_contribution.h"
|
/external/chromium_org/sync/ |
sync_internal_api.gypi | 86 'internal_api/public/engine/model_safe_worker.cc', 87 'internal_api/public/engine/model_safe_worker.h', 88 'internal_api/public/engine/passive_model_worker.cc', 89 'internal_api/public/engine/passive_model_worker.h', 90 'internal_api/public/engine/polling_constants.cc', 91 'internal_api/public/engine/polling_constants.h', 92 'internal_api/public/engine/sync_status.cc', 93 'internal_api/public/engine/sync_status.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/chromium_org/third_party/webrtc/build/ |
webrtc.gni | 23 # Adds video support to dependencies shared by voice and video engine. 25 # when building voice engine exclusively.
|
/external/glide/library/src/main/java/com/bumptech/glide/load/ |
CacheLoader.java | 4 import com.bumptech.glide.load.engine.Resource; 5 import com.bumptech.glide.load.engine.cache.DiskCache;
|
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/cache/ |
LruResourceCache.java | 1 package com.bumptech.glide.load.engine.cache; 4 import com.bumptech.glide.load.engine.Resource;
|
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/ |
CenterCrop.java | 4 import com.bumptech.glide.load.engine.Resource; 5 import com.bumptech.glide.load.engine.bitmap_recycle.BitmapPool;
|
FileDescriptorBitmapDecoder.java | 8 import com.bumptech.glide.load.engine.Resource; 9 import com.bumptech.glide.load.engine.bitmap_recycle.BitmapPool;
|
FitCenter.java | 4 import com.bumptech.glide.load.engine.Resource; 5 import com.bumptech.glide.load.engine.bitmap_recycle.BitmapPool;
|
StreamBitmapDecoder.java | 6 import com.bumptech.glide.load.engine.Resource; 9 import com.bumptech.glide.load.engine.bitmap_recycle.BitmapPool;
|
/external/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;
|
/external/llvm/examples/Kaleidoscope/MCJIT/ |
README.txt | 7 execution engine instead of the older JIT engine.
|
/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)
|