/external/icu4c/samples/layout/ |
GnomeFontMap.cpp | 20 GnomeFontMap::GnomeFontMap(FT_Library engine, const char *fileName, le_int16 pointSize, GUISupport *guiSupport, LEErrorCode &status) 21 : FontMap(fileName, pointSize, guiSupport, status), fEngine(engine)
|
gnomeglue.cpp | 52 fm_fontMap *fm_gnomeFontMapOpen(FT_Library engine, const char *fileName, le_int16 pointSize, gs_guiSupport *guiSupport, LEErrorCode *status) 54 return (fm_fontMap *) new GnomeFontMap(engine, fileName, pointSize, (GnomeGUISupport *) guiSupport, *status);
|
/external/svox/pico/lib/ |
picoapi.h | 44 A SVOX Pico 'engine' provides the functions needed to perform actual 45 synthesis. Currently there can be only one engine instance at a time 47 at the engine level take a 'pico_Engine' handle as the first 97 if the error happened on the SVOX Pico engine level). 139 /* Handle types (opaque) for Pico system, resource, engine ************/ 220 engine instances are existing. No API function may be called after 272 parallel to a running engine doing TTS synthesis), but with the 286 Unloads a resource file from the Pico system. If no engine uses the 325 resources from the mappings will be used with that engine. */ 344 /* Engine creation and deletion functions ***************************** [all...] |
/external/webkit/Source/JavaScriptCore/qt/api/ |
qscriptvalue.h | 73 QScriptValue(QScriptEngine* engine, bool value); 74 QScriptValue(QScriptEngine* engine, int value); 75 QScriptValue(QScriptEngine* engine, uint value); 76 QScriptValue(QScriptEngine* engine, qsreal value); 77 QScriptValue(QScriptEngine* engine, const QString& value); 78 QScriptValue(QScriptEngine* engine, const char* value); 79 QScriptValue(QScriptEngine* engine, SpecialValue value); 103 QScriptEngine* engine() const;
|
qscriptvalueiterator_p.h | 55 inline QScriptEnginePrivate* engine() const; 67 m_names = engine()->objectGetOwnPropertyNames(*m_object); 121 engine()->setException(exception); 122 return new QScriptValuePrivate(engine(), value); 131 engine()->setException(exception); 140 engine()->setException(exception); 166 inline QScriptEnginePrivate* QScriptValueIteratorPrivate::engine() const function in class:QScriptValueIteratorPrivate 169 return m_object->engine();
|
/frameworks/base/core/java/android/service/wallpaper/ |
IWallpaperConnection.aidl | 26 void attachEngine(IWallpaperEngine engine); 27 void engineShown(IWallpaperEngine engine);
|
/packages/inputmethods/PinyinIME/jni/command/ |
Makefile | 22 all: engine 24 engine: $(PINYINIME_DICTBUILDER)
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/ |
BasicAgreement.java | 12 * initialise the agreement engine.
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dsa/ |
KeyPairGeneratorSpi.java | 22 DSAKeyPairGenerator engine = new DSAKeyPairGenerator(); field in class:KeyPairGeneratorSpi 59 engine.init(param); 71 engine.init(param); 75 AsymmetricCipherKeyPair pair = engine.generateKeyPair();
|
/external/chromium/chrome/browser/first_run/ |
first_run_dialog.h | 13 // Shows the search engine choice dialog. Only called if IsOrganicFirstRun()
|
/external/chromium/chrome/browser/sync/engine/ |
clear_data_command.cc | 5 #include "chrome/browser/sync/engine/clear_data_command.h" 9 #include "chrome/browser/sync/engine/syncer.h" 10 #include "chrome/browser/sync/engine/syncer_proto_util.h" 11 #include "chrome/browser/sync/engine/syncproto.h"
|
post_commit_message_command.h | 9 #include "chrome/browser/sync/engine/syncer_command.h"
|
syncproto_unittest.cc | 5 #include "chrome/browser/sync/engine/syncproto.h"
|
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"
|
/external/chromium/chrome/browser/ui/gtk/ |
first_run_dialog.h | 46 // The search engine choice window. This is created and shown before 53 // Container for the search engine choices. 68 // The search engine the user chose, or NULL if the user has not chosen a 69 // search engine.
|
/external/chromium/chrome/common/extensions/docs/examples/apps/hello-java/ |
README | 9 import and deploy to Google App Engine after updating
|
/external/svox/pico/lang/ |
PicoLangDefaultInSystem.mk | 2 # Installation of a default language for the Pico TTS engine
|
PicoLangEnUsInSystem.mk | 2 # Installation of en-US for the Pico TTS engine in the system image
|
/external/webkit/Source/WebKit/gtk/ |
webkit.pc.in | 7 Description: Web content engine for GTK+
|
/external/webkit/Source/WebKit2/gtk/ |
webkit2.pc.in | 7 Description: Web content engine for GTK+
|
/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/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/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/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/ |
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; 175 * ENGINE-based keys must be checked in a special way. 177 if (engine == null) { 181 } else if (!engine.equals(other.getEngine())) [all...] |