/external/svox/PicoLangInstallerSpaEsp/src/com/svox/pico/voice/spa/esp/ |
InstallerActivity.java | 43 rootDirectory = data.getStringExtra(TextToSpeech.Engine.EXTRA_VOICE_DATA_ROOT_DIRECTORY); 130 new Intent(TextToSpeech.Engine.ACTION_TTS_DATA_INSTALLED); 131 installCompleteIntent.putExtra(TextToSpeech.Engine.EXTRA_TTS_DATA_INSTALLED, 140 new Intent(TextToSpeech.Engine.ACTION_TTS_DATA_INSTALLED); 141 installCompleteIntent.putExtra(TextToSpeech.Engine.EXTRA_TTS_DATA_INSTALLED,
|
/external/svox/picolanginstaller/src/com/svox/langpack/installer/ |
InstallerActivity.java | 44 rootDirectory = data.getStringExtra(TextToSpeech.Engine.EXTRA_VOICE_DATA_ROOT_DIRECTORY); 131 new Intent(TextToSpeech.Engine.ACTION_TTS_DATA_INSTALLED); 132 installCompleteIntent.putExtra(TextToSpeech.Engine.EXTRA_TTS_DATA_INSTALLED, 140 new Intent(TextToSpeech.Engine.ACTION_TTS_DATA_INSTALLED); 141 installCompleteIntent.putExtra(TextToSpeech.Engine.EXTRA_TTS_DATA_INSTALLED,
|
/external/glide/library/src/main/java/com/bumptech/glide/ |
GlideBuilder.java | 7 import com.bumptech.glide.load.engine.Engine; 8 import com.bumptech.glide.load.engine.bitmap_recycle.BitmapPool; 9 import com.bumptech.glide.load.engine.bitmap_recycle.BitmapPoolAdapter; 10 import com.bumptech.glide.load.engine.bitmap_recycle.LruBitmapPool; 11 import com.bumptech.glide.load.engine.cache.DiskCache; 12 import com.bumptech.glide.load.engine.cache.DiskCacheAdapter; 13 import com.bumptech.glide.load.engine.cache.DiskLruCacheWrapper; 14 import com.bumptech.glide.load.engine.cache.LruResourceCache; 15 import com.bumptech.glide.load.engine.cache.MemoryCache 28 private Engine engine; field in class:GlideBuilder [all...] |
/external/jsr330/tck/org/atinject/tck/auto/ |
Engine.java | 24 public abstract class Engine {
|
/frameworks/wilhelm/tools/mphtogen/ |
mphtogen.c | 57 _(Engine)
|
/external/svox/pico/ |
Android.mk | 1 # SVOX Pico TTS Engine
|
/frameworks/av/services/audiopolicy/enginedefault/ |
Android.mk | 9 src/Engine.cpp \ 14 frameworks/av/services/audiopolicy/engine/interface
|
/frameworks/base/core/java/android/speech/tts/ |
TextToSpeechService.java | 36 import android.speech.tts.TextToSpeech.Engine; 52 * Abstract base class for TTS engine implementations. The following methods 62 * query the engine for it's support for a given language and indicate to it 65 * {@link #onSynthesizeText} is central to the engine implementation. The 71 * synchronous which means the engine must NOT hold on to the callback or call any 74 * {@link #onStop} tells the engine that it should stop 83 * features set. In order to fully take advantage of voices, an engine should implement 113 // associated with this TTS engine. Will handle all requests except synthesis 162 * Checks whether the engine supports a given language. 181 * Returns the language, country and variant currently being used by the TTS engine [all...] |
TtsEngines.java | 34 import android.speech.tts.TextToSpeech.Engine; 109 * @return the default TTS engine. If the user has set a default, and the engine 111 * the highest ranked engine is returned as per {@link EngineInfoComparator}. 114 String engine = getString(mContext.getContentResolver(), local 116 return isEngineInstalled(engine) ? engine : getHighestRankedEngineName(); 120 * @return the package name of the highest ranked system engine, {@code null} 134 * Returns the engine info for a given engine name. Note that engines ar 168 EngineInfo engine = getEngineInfo(resolveInfo, pm); local 280 EngineInfo engine = new EngineInfo(); local [all...] |
/frameworks/av/services/audiopolicy/enginedefault/src/ |
Engine.cpp | 27 #include "Engine.h" 40 Engine::Engine() 50 Engine::~Engine() 54 void Engine::setObserver(AudioPolicyManagerObserver *observer) 60 status_t Engine::initCheck() 65 status_t Engine::setPhoneState(audio_mode_t state) 94 status_t Engine::setForceUse(audio_policy_force_use_t usage, audio_policy_forced_cfg_t config) 164 routing_strategy Engine::getStrategyForStream(audio_stream_type_t stream [all...] |
/external/svox/pico/src/com/svox/pico/ |
EngineSettings.java | 32 * Checks if the voice data for the SVOX Pico Engine is present on the 51 ArrayList<String> available = data.getStringArrayListExtra(TextToSpeech.Engine.EXTRA_AVAILABLE_VOICES); 52 ArrayList<String> unavailable = data.getStringArrayListExtra(TextToSpeech.Engine.EXTRA_UNAVAILABLE_VOICES);
|
/frameworks/av/services/audiopolicy/engineconfigurable/ |
Android.mk | 11 src/Engine.cpp \ 21 frameworks/av/services/audiopolicy/engine/interface
|
/packages/apps/Settings/src/com/android/settings/tts/ |
TextToSpeechSettings.java | 76 /** Engine picker. */ 115 private int mDefaultPitch = TextToSpeech.Engine.DEFAULT_PITCH; 116 private int mDefaultRate = TextToSpeech.Engine.DEFAULT_RATE; 120 /** The currently selected engine. */ 132 * Default locale used by selected TTS engine, null if not connected to any engine. 137 * List of available locals of selected TTS engine, as returned by 138 * {@link TextToSpeech.Engine#ACTION_CHECK_TTS_DATA} activity. If empty, then activity 146 * of engine). 165 getActivity().setVolumeControlStream(TextToSpeech.Engine.DEFAULT_STREAM) 748 final String engine = mTts.getCurrentEngine(); local 761 android.provider.Settings.Secure.putString(getContentResolver(), TTS_DEFAULT_SYNTH, engine); local [all...] |
/developers/build/prebuilts/gradle/WatchFace/Wearable/src/main/java/com/example/android/wearable/watchface/watchface/ |
InteractiveWatchFaceService.java | 49 public Engine onCreateEngine() { 50 return new Engine(); 53 private class Engine extends CanvasWatchFaceService.Engine {
|
OpenGLWatchFaceService.java | 56 public Engine onCreateEngine() { 57 return new Engine(); 60 private class Engine extends Gles2WatchFaceService.Engine {
|
/developers/samples/android/wearable/wear/WatchFace/Wearable/src/main/java/com/example/android/wearable/watchface/watchface/ |
InteractiveWatchFaceService.java | 49 public Engine onCreateEngine() { 50 return new Engine(); 53 private class Engine extends CanvasWatchFaceService.Engine {
|
OpenGLWatchFaceService.java | 56 public Engine onCreateEngine() { 57 return new Engine(); 60 private class Engine extends Gles2WatchFaceService.Engine {
|
/development/samples/browseable/WatchFace/Wearable/src/com.example.android.wearable.watchface/ |
CalendarWatchFaceService.java | 57 public Engine onCreateEngine() { 58 return new Engine(); 61 private class Engine extends CanvasWatchFaceService.Engine {
|
InteractiveWatchFaceService.java | 47 public Engine onCreateEngine() { 48 return new Engine(); 51 private class Engine extends CanvasWatchFaceService.Engine {
|
OpenGLWatchFaceService.java | 54 public Engine onCreateEngine() { 55 return new Engine(); 58 private class Engine extends Gles2WatchFaceService.Engine {
|
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/system/ |
TtsEngineSettingsFragment.java | 49 * Key for the name of the TTS engine passed in to the engine 55 * Key for the label of the TTS engine passed in to the engine 62 * Key for the voice data data passed in to the engine settings 108 if (TextToSpeech.Engine.ACTION_TTS_DATA_INSTALLED.equals(intent.getAction())) { 185 new IntentFilter(TextToSpeech.Engine.ACTION_TTS_DATA_INSTALLED)); 209 Intent intent = new Intent(TextToSpeech.Engine.ACTION_CHECK_TTS_DATA); 212 if (DBG) Log.d(TAG, "Updating engine: Checking voice data: " + intent.toUri(0)); 222 if (resultCode != TextToSpeech.Engine.CHECK_VOICE_DATA_FAIL) [all...] |
TextToSpeechFragment.java | 57 /** Preference key for the engine settings preference */ 70 * Preference key for the engine selection preference. 87 private int mDefaultRate = TextToSpeech.Engine.DEFAULT_RATE; 90 * The currently selected engine. 95 * The engine checkbox that is currently checked. Saves us a bit of effort 96 * in deducing the right one from the currently selected engine. 101 * The previously selected TTS engine. Useful for rollbacks if the users 112 * Default locale used by selected TTS engine, null if not connected to any engine. 117 * List of available locals of selected TTS engine, as returned b 572 final String engine = mTts.getCurrentEngine(); local 586 Settings.Secure.TTS_DEFAULT_SYNTH, engine); local [all...] |
/external/skia/tools/ |
ok.cpp | 100 struct Engine { 101 virtual ~Engine() {} 106 struct SerialEngine : Engine { 121 struct ThreadEngine : Engine { 153 struct ForkEngine : Engine { 278 std::unique_ptr<Engine> engine; local 279 if (jobs == 0) { engine.reset(new SerialEngine); } 280 if (jobs > 0) { engine.reset(new ForkEngine); defer_logging(); } 281 if (jobs < 0) { engine.reset(new ThreadEngine); jobs = -jobs; [all...] |
/external/regex-re2/re2/testing/ |
tester.cc | 5 // Regular expression engine tester -- test all the implementations against each other. 43 static string EngineString(Engine t) { 61 for (Engine i = static_cast<Engine>(0); i < kEngineMax; i++) 70 for (Engine i = static_cast<Engine>(0); i < kEngineMax; i++) { 276 // Runs a single search using the named engine type. 278 // engine interfaces from the rest of this file. 279 void TestInstance::RunSearch(Engine type, 495 for (Engine i = kEngineBacktrack+1; i < kEngineMax; i++) [all...] |
/external/glide/library/src/main/java/com/bumptech/glide/request/ |
GenericRequest.java | 11 import com.bumptech.glide.load.engine.DiskCacheStrategy; 12 import com.bumptech.glide.load.engine.Engine; 13 import com.bumptech.glide.load.engine.Resource; 27 * A {@link Request} that loads a {@link com.bumptech.glide.load.engine.Resource} into a given {@link Target}. 73 private Engine engine; field in class:GenericRequest 84 private Engine.LoadStatus loadStatus; 102 Engine engine, [all...] |