Searched refs:engine (Results 1 - 25 of 488) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/webrtc/modules/audio_processing/test/android/apmtest/jni/
H A Dmain.c44 struct engine { struct
63 static int engine_init_display(struct engine* engine) { argument
99 ANativeWindow_setBuffersGeometry(engine->app->window, 0, 0, format);
101 surface = eglCreateWindowSurface(display, config, engine->app->window, NULL);
112 engine->display = display;
113 engine->context = context;
114 engine->surface = surface;
115 engine->width = w;
116 engine
131 engine_draw_frame(struct engine* engine) argument
148 engine_term_display(struct engine* engine) argument
169 struct engine* engine = (struct engine*)app->userData; local
183 struct engine* engine = (struct engine*)app->userData; local
232 struct engine engine; local
[all...]
/external/webrtc/src/modules/audio_processing/test/android/apmtest/jni/
H A Dmain.c44 struct engine { struct
63 static int engine_init_display(struct engine* engine) { argument
99 ANativeWindow_setBuffersGeometry(engine->app->window, 0, 0, format);
101 surface = eglCreateWindowSurface(display, config, engine->app->window, NULL);
112 engine->display = display;
113 engine->context = context;
114 engine->surface = surface;
115 engine->width = w;
116 engine
131 engine_draw_frame(struct engine* engine) argument
148 engine_term_display(struct engine* engine) argument
169 struct engine* engine = (struct engine*)app->userData; local
183 struct engine* engine = (struct engine*)app->userData; local
232 struct engine engine; local
[all...]
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/bitmap_recycle/
H A DPoolable.java1 package com.bumptech.glide.load.engine.bitmap_recycle;
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/executor/
H A DPrioritized.java1 package com.bumptech.glide.load.engine.executor;
/external/chromium_org/chrome/renderer/spellchecker/
H A Dcustom_dictionary_engine_unittest.cc10 CustomDictionaryEngine engine; local
12 engine.Init(custom_words);
13 EXPECT_FALSE(engine.SpellCheckWord(base::string16().c_str(), 15, 23));
17 CustomDictionaryEngine engine; local
18 EXPECT_FALSE(engine.SpellCheckWord(base::ASCIIToUTF16("helllo").c_str(),
22 engine.Init(custom_words);
23 EXPECT_TRUE(engine.SpellCheckWord(base::ASCIIToUTF16("helllo").c_str(),
/external/chromium_org/third_party/libjingle/source/talk/xmpp/
H A Dmoduleimpl.cc47 XmppModuleImpl::RegisterEngine(XmppEngine* engine) argument
49 if (NULL == engine || NULL != engine_)
52 engine->AddStanzaHandler(&stanza_handler_);
53 engine_ = engine;
59 XmppModuleImpl::engine() { function in class:buzz::XmppModuleImpl
H A Dmoduleimpl.h37 //! An engine is registered with the module and the module then hooks the
38 //! appropriate parts of the engine to implement that set of features. It is
39 //! important to unregister modules before destructing the engine.
45 //! Register the engine with the module. Only one engine can be associated
47 //! already an engine registered.
48 XmppReturnStatus RegisterEngine(XmppEngine* engine);
50 //! Gets the engine that this module is attached to.
51 XmppEngine* engine();
62 //! to hook into and get stanzas and events from the engine
[all...]
H A Dxmppengine_unittest.cc50 XmppEngine* engine() { return engine_.get(); } function in class:XmppEngineTest
79 EXPECT_EQ(XmppEngine::STATE_START, engine()->GetState());
80 engine()->Connect();
81 EXPECT_EQ(XmppEngine::STATE_OPENING, engine()->GetState());
93 engine()->HandleInput(input.c_str(), input.length());
105 engine()->HandleInput(input.c_str(), input.length());
113 engine()->HandleInput(input.c_str(), input.length());
125 engine()->HandleInput(input.c_str(), input.length());
134 engine()->HandleInput(input.c_str(), input.length());
147 engine()
[all...]
H A Dmodule.h38 //! An engine is registered with the module and the module then hooks the
39 //! appropriate parts of the engine to implement that set of features. It is
40 //! important to unregister modules before destructing the engine.
45 //! Register the engine with the module. Only one engine can be associated
47 //! already an engine registered.
48 virtual XmppReturnStatus RegisterEngine(XmppEngine* engine) = 0;
/external/chromium_org/third_party/boringssl/src/crypto/engine/
H A Dengine.c15 #include <openssl/engine.h>
33 ENGINE *engine = OPENSSL_malloc(sizeof(ENGINE)); local
34 if (engine == NULL) {
38 memset(engine, 0, sizeof(ENGINE));
39 return engine;
42 void ENGINE_free(ENGINE *engine) { argument
43 if (engine->dh_method != NULL) {
44 METHOD_unref(engine->dh_method);
47 OPENSSL_free(engine);
73 int ENGINE_set_DH_method(ENGINE *engine, cons argument
79 ENGINE_get_DH_method(const ENGINE *engine) argument
83 ENGINE_set_DSA_method(ENGINE *engine, const DSA_METHOD *method, size_t method_size) argument
89 ENGINE_get_DSA_method(const ENGINE *engine) argument
93 ENGINE_set_RSA_method(ENGINE *engine, const RSA_METHOD *method, size_t method_size) argument
99 ENGINE_get_RSA_method(const ENGINE *engine) argument
103 ENGINE_set_ECDSA_method(ENGINE *engine, const ECDSA_METHOD *method, size_t method_size) argument
109 ENGINE_get_ECDSA_method(const ENGINE *engine) argument
[all...]
/external/chromium_org/third_party/boringssl/src/include/openssl/
H A Dengine.h43 * |engine| and frees |engine| itself. */
44 OPENSSL_EXPORT void ENGINE_free(ENGINE *engine);
56 OPENSSL_EXPORT int ENGINE_set_DH_method(ENGINE *engine, const DH_METHOD *method,
58 OPENSSL_EXPORT DH_METHOD *ENGINE_get_DH_method(const ENGINE *engine);
60 OPENSSL_EXPORT int ENGINE_set_DSA_method(ENGINE *engine,
63 OPENSSL_EXPORT DSA_METHOD *ENGINE_get_DSA_method(const ENGINE *engine);
65 OPENSSL_EXPORT int ENGINE_set_RSA_method(ENGINE *engine,
68 OPENSSL_EXPORT RSA_METHOD *ENGINE_get_RSA_method(const ENGINE *engine);
70 OPENSSL_EXPORT int ENGINE_set_ECDSA_method(ENGINE *engine,
[all...]
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
H A Dcomposite_tts.js30 * Adds a TTS engine to the composite TTS
45 this.ttsEngines_.forEach(function(engine) {
46 engine.speak(textString, queueMode, properties);
56 return this.ttsEngines_.some(function(engine) {
57 return engine.isSpeaking();
66 this.ttsEngines_.forEach(function(engine) {
67 engine.stop();
76 this.ttsEngines_.forEach(function(engine) {
77 engine.addCapturingEventListener(listener);
87 this.ttsEngines_.forEach(function(engine) {
[all...]
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/fortress/
H A DEngineTest.java49 Engine engine = new Engine("Service");
52 engine.getInstance("AlGOrItHM", null);
54 if (engine.provider != p) {
57 if (!(engine.spi instanceof SomeClass)) {
68 Engine engine = new Engine("Service");
70 engine.getInstance(null, null);
82 Engine engine = new Engine("Service");
84 engine.getInstance("AlGOrItHM", p, null);
86 if (engine.provider != p) {
89 if (!(engine
[all...]
/external/chromium_org/chromeos/ime/
H A Dgen_input_methods.py86 engines: list of engine objects
88 The text of a C++ header file containing the engine data.
92 for engine in engines:
93 if engine.has_key('if'):
94 output.append(CPP_FORMAT % engine['if'])
95 output.append(ENGINE_FORMAT % engine)
96 if engine.has_key('if'):
114 engine = {}
115 engine['input_method_id'] = columns[0]
116 engine['xkb_layout_i
[all...]
/external/svox/pico/compat/jni/
H A Dtts.h102 // This is passed by the framework to the engine through the
130 // Note that each of these functions will take a handle to the engine itself
140 // Initialize the TTS engine and returns whether initialization succeeded.
144 (void *engine,
148 // Shut down the TTS engine and releases all associated resources.
151 (void *engine);
157 (void *engine);
170 // TTS_LANG_NOT_SUPPORTED if the language is not supported by the TTS engine.
172 (void *engine,
188 (void *engine,
[all...]
/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
H A DTestInterpretedLexing.java84 Interpreter engine = new Interpreter(g, new ANTLRStringStream("a"));
85 engine = new Interpreter(g, new ANTLRStringStream("b"));
86 Token result = engine.scan("A");
88 engine = new Interpreter(g, new ANTLRStringStream("c"));
89 result = engine.scan("A");
99 Interpreter engine = new Interpreter(g, new ANTLRStringStream("abc")); // should ignore the x
100 Token result = engine.scan("A");
110 Interpreter engine = new Interpreter(g, new ANTLRStringStream("12x")); // should ignore the x
111 Token result = engine.scan("INT");
113 engine
[all...]
/external/icu/icu4c/source/layout/
H A Dloengine.cpp31 le_close(le_engine *engine) argument
33 LayoutEngine *le = (LayoutEngine *) engine;
39 le_layoutChars(le_engine *engine, argument
49 LayoutEngine *le = (LayoutEngine *) engine;
60 le_getGlyphCount(le_engine *engine, argument
63 LayoutEngine *le = (LayoutEngine *) engine;
74 le_getGlyphs(le_engine *engine, argument
78 LayoutEngine *le = (LayoutEngine *) engine;
89 le_getCharIndices(le_engine *engine, argument
93 LayoutEngine *le = (LayoutEngine *) engine;
104 le_getCharIndicesWithBase(le_engine *engine, le_int32 charIndices[], le_int32 indexBase, LEErrorCode *success) argument
120 le_getGlyphPositions(le_engine *engine, float positions[], LEErrorCode *success) argument
135 le_getGlyphPosition(le_engine *engine, le_int32 glyphIndex, float *x, float *y, LEErrorCode *success) argument
152 le_reset(le_engine *engine, LEErrorCode *success) argument
[all...]
H A Dloengine.h63 * @param engine - the LayoutEngine to close.
68 le_close(le_engine *engine);
73 * @param engine - the LayoutEngine
95 le_layoutChars(le_engine *engine,
110 * @param engine - the LayoutEngine
118 le_getGlyphCount(le_engine *engine,
126 * @param engine - the LayoutEngine
133 le_getGlyphs(le_engine *engine,
142 * @param engine - the LayoutEngine
149 le_getCharIndices(le_engine *engine,
[all...]
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDocumentStyleSheetCollection.cpp46 void DocumentStyleSheetCollection::collectStyleSheetsFromCandidates(StyleEngine* engine, DocumentStyleSheetCollector& collector) argument
68 if (candidate.hasPreferrableName(engine->preferredStylesheetSetName()))
69 engine->selectStylesheetSetName(candidate.title());
77 if (candidate.hasPreferrableName(engine->preferredStylesheetSetName()))
78 engine->selectStylesheetSetName(candidate.title());
80 if (candidate.canBeActivated(engine->preferredStylesheetSetName()))
85 void DocumentStyleSheetCollection::collectStyleSheets(StyleEngine* engine, DocumentStyleSheetCollector& collector) argument
87 ASSERT(document().styleEngine() == engine);
88 collector.appendActiveStyleSheets(engine->injectedAuthorStyleSheets());
89 collector.appendActiveStyleSheets(engine
93 updateActiveStyleSheets(StyleEngine* engine, StyleResolverUpdateMode updateMode) argument
[all...]
/external/chromium_org/chrome/browser/resources/options/
H A Dsearch_engine_manager.css5 #search-engine-manager-page {
9 .search-engine-list input {
13 .search-engine-list > div {
17 .search-engine-list .favicon {
27 .search-engine-list .name-column {
35 .search-engine-list .name-column :last-child {
39 .search-engine-list .keyword-column {
45 .search-engine-list .url-column {
50 .search-engine-list .keyword-column,
51 .search-engine
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/util/
H A DBaseKeyGenerator.java21 protected CipherKeyGenerator engine; field in class:BaseKeyGenerator
28 CipherKeyGenerator engine)
32 this.engine = engine;
48 engine.init(new KeyGenerationParameters(random, defaultKeySize));
63 engine.init(new KeyGenerationParameters(random, keySize));
76 engine.init(new KeyGenerationParameters(new SecureRandom(), defaultKeySize));
80 return new SecretKeySpec(engine.generateKey(), algName);
25 BaseKeyGenerator( String algName, int defaultKeySize, CipherKeyGenerator engine) argument
/external/svox/pico/lib/
H A Dpicoctrl.h66 picoctrl_Engine engine,
72 picoctrl_Engine engine,
78 picoctrl_Engine engine,
90 picoctrl_Engine engine
94 picoctrl_Engine engine
/external/glide/library/src/main/java/com/bumptech/glide/
H A DGlideBuilder.java6 import com.bumptech.glide.load.engine.Engine;
7 import com.bumptech.glide.load.engine.bitmap_recycle.BitmapPool;
8 import com.bumptech.glide.load.engine.bitmap_recycle.BitmapPoolAdapter;
9 import com.bumptech.glide.load.engine.bitmap_recycle.LruBitmapPool;
10 import com.bumptech.glide.load.engine.cache.DiskCache;
11 import com.bumptech.glide.load.engine.cache.DiskCacheAdapter;
12 import com.bumptech.glide.load.engine.cache.DiskLruCacheWrapper;
13 import com.bumptech.glide.load.engine.cache.LruResourceCache;
14 import com.bumptech.glide.load.engine.cache.MemoryCache;
15 import com.bumptech.glide.load.engine
25 private Engine engine; field in class:GlideBuilder
66 setEngine(Engine engine) argument
[all...]
/external/glide/library/src/main/java/com/bumptech/glide/load/
H A DResourceEncoder.java3 import com.bumptech.glide.load.engine.Resource;
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/
H A DEngineJobListener.java1 package com.bumptech.glide.load.engine;

Completed in 846 milliseconds

1234567891011>>