Searched refs:impl (Results 26 - 50 of 825) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/bindings/cpp/
H A DWebDOMHTMLCollectionCustom.cpp30 if (!impl())
33 return toWebKit(WTF::getPtr(impl()->item(index)));
38 if (!impl())
41 return toWebKit(WTF::getPtr(impl()->namedItem(name)));
H A DWebDOMNodeCustom.cpp30 if (!impl())
34 if (impl()->insertBefore(toWebCore(newChild), toWebCore(refChild), ec, true))
43 if (!impl())
47 if (impl()->replaceChild(toWebCore(newChild), toWebCore(oldChild), ec, true))
56 if (!impl())
60 if (impl()->removeChild(toWebCore(oldChild), ec))
69 if (!impl())
73 if (impl()->appendChild(toWebCore(newChild), ec, true))
82 if (!impl())
86 impl()
[all...]
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8CSSStyleSheetCustom.cpp39 v8::Handle<v8::Value> toV8(CSSStyleSheet* impl) argument
41 if (!impl)
43 v8::Handle<v8::Object> wrapper = V8CSSStyleSheet::wrap(impl);
45 Node* ownerNode = impl->ownerNode();
H A DV8ImageDataCustom.cpp38 v8::Handle<v8::Value> toV8(ImageData* impl) argument
40 if (!impl)
42 v8::Handle<v8::Object> wrapper = V8ImageData::wrap(impl);
45 v8::Handle<v8::Value> pixelArray = toV8(impl->data());
H A DV8SVGDocumentCustom.cpp41 v8::Handle<v8::Value> toV8(SVGDocument* impl, bool forceNewObject) argument
43 if (!impl)
45 v8::Handle<v8::Object> wrapper = V8SVGDocument::wrap(impl, forceNewObject);
49 if (V8Proxy* proxy = V8Proxy::retrieve(impl->frame()))
/external/srec/portable/src/
H A DPANSIFileImpl.c36 PANSIFileImpl* impl = NULL; local
39 impl = NEW(PANSIFileImpl, MTAG);
40 if (impl == NULL)
47 PFileCreateImpl(&impl->Interface.Interface, filename, isLittleEndian);
48 impl->Interface.Interface.close = &PANSIFileCloseImpl;
49 impl->Interface.Interface.clearError = &PANSIFileClearErrorImpl;
50 impl->Interface.Interface.destroy = &PANSIFileDestroyImpl;
51 impl->Interface.Interface.fgetc = &PANSIFileFgetcImpl;
52 impl->Interface.Interface.fgets = &PANSIFileFgetsImpl;
53 impl
116 PANSIFileImpl* impl = (PANSIFileImpl*) self; local
145 PANSIFileImpl* impl = (PANSIFileImpl*) self; local
161 PANSIFileImpl* impl = (PANSIFileImpl*) self; local
200 PANSIFileImpl* impl = (PANSIFileImpl*) self; local
258 PANSIFileImpl* impl = (PANSIFileImpl*) self; local
273 PANSIFileImpl* impl = (PANSIFileImpl*) self; local
288 PANSIFileImpl* impl = (PANSIFileImpl*) self; local
318 PANSIFileImpl* impl = (PANSIFileImpl*) self; local
334 PANSIFileImpl* impl = (PANSIFileImpl*) self; local
363 PANSIFileImpl* impl = (PANSIFileImpl*) self; local
379 PANSIFileImpl* impl = (PANSIFileImpl*) self; local
389 PANSIFileImpl* impl = (PANSIFileImpl*) self; local
408 PANSIFileImpl* impl = (PANSIFileImpl*) self; local
424 PANSIFileImpl* impl = (PANSIFileImpl*) self; local
[all...]
H A DPFileImpl.c37 PFileImpl* impl = (PFileImpl*) self; local
44 impl->lock = NULL;
46 impl->littleEndian = isLittleEndian;
48 impl->Interface.destroy = &PFileDestroyImpl;
49 impl->Interface.getFilename = &PFileGetFilenameImpl;
50 impl->Interface.vfprintf = &PFileVfprintfImpl;
51 impl->filename = MALLOC(sizeof(LCHAR) * (LSTRLEN(filename) + 1), MTAG);
53 if (impl->filename == NULL)
59 LSTRCPY(impl->filename, filename);
70 rc = PtrdMonitorCreate(&impl
110 PFileImpl* impl = (PFileImpl*) self; local
143 PFileImpl* impl = (PFileImpl*) self; local
[all...]
/external/srec/shared/src/
H A DInt8ArrayListImpl.c31 Int8ArrayListImpl* impl; local
35 impl = NEW(Int8ArrayListImpl, MTAG);
36 if (impl == NULL)
38 impl->Interface.add = &Int8ArrayList_Add;
39 impl->Interface.contains = &Int8ArrayList_Contains;
40 impl->Interface.destroy = &Int8ArrayList_Destroy;
41 impl->Interface.get = &Int8ArrayList_Get;
42 impl->Interface.getSize = &Int8ArrayList_GetSize;
43 impl->Interface.remove = &Int8ArrayList_Remove;
44 impl
63 Int8ArrayListImpl* impl; local
77 Int8ArrayListImpl* impl = (Int8ArrayListImpl*) self; local
95 Int8ArrayListImpl* impl = (Int8ArrayListImpl*) self; local
125 Int8ArrayListImpl* impl = (Int8ArrayListImpl*) self; local
133 Int8ArrayListImpl* impl = (Int8ArrayListImpl*) self; local
152 Int8ArrayListImpl* impl = (Int8ArrayListImpl*) self; local
161 Int8ArrayListImpl* impl = (Int8ArrayListImpl*) self; local
170 Int8ArrayListImpl* impl = (Int8ArrayListImpl*) self; local
178 Int8ArrayListImpl* impl = (Int8ArrayListImpl*) self; local
205 Int8ArrayListImpl* impl = (Int8ArrayListImpl*) self; local
[all...]
/external/srec/srec/AcousticState/src/
H A DAcousticState.c27 SR_RecognizerImpl* impl; local
34 impl = (SR_RecognizerImpl*) recognizer;
36 return impl->acousticState->reset(recognizer);
41 SR_RecognizerImpl* impl; local
48 impl = (SR_RecognizerImpl*) recognizer;
50 return impl->acousticState->load(recognizer, filename);
55 SR_RecognizerImpl* impl; local
62 impl = (SR_RecognizerImpl*) recognizer;
64 return impl->acousticState->save(recognizer, filename);
70 SR_RecognizerImpl* impl; local
85 SR_RecognizerImpl* impl; local
[all...]
/external/srec/srec/Semproc/src/
H A DSemanticResultImpl.c31 SR_SemanticResultImpl* impl; local
39 impl = NEW(SR_SemanticResultImpl, MTAG);
40 if (impl == NULL)
46 impl->Interface.destroy = &SR_SemanticResult_Destroy;
47 impl->Interface.getKeyCount = &SR_SemanticResult_GetKeyCount;
48 impl->Interface.getKeyList = &SR_SemanticResult_GetKeyList;
49 impl->Interface.getValue = &SR_SemanticResult_GetValue;
50 impl->results = NULL;
52 rc = HashMapCreate(&impl->results);
55 *self = (SR_SemanticResult*) impl;
64 SR_SemanticResultImpl* impl = (SR_SemanticResultImpl*) self; local
75 SR_SemanticResultImpl* impl = (SR_SemanticResultImpl*) self; local
106 SR_SemanticResultImpl* impl = (SR_SemanticResultImpl*) self; local
125 SR_SemanticResultImpl* impl = (SR_SemanticResultImpl*) self; local
[all...]
H A DSemanticProcessorImpl.c108 SR_SemanticProcessorImpl* impl; local
116 impl = NEW(SR_SemanticProcessorImpl, MTAG);
117 if (impl == NULL)
122 if ((rc = LA_Init(&impl->analyzer)) != ESR_SUCCESS)
124 if ((rc = EP_Init(&impl->parser)) != ESR_SUCCESS)
126 if ((rc = ST_Init(&impl->symtable)) != ESR_SUCCESS)
128 if ((rc = EE_Init(&impl->eval)) != ESR_SUCCESS)
130 impl->acc_scripts = MALLOC(sizeof(LCHAR) * MAX_SCRIPT_LEN, NULL);
131 if (impl->acc_scripts == NULL)
138 impl
154 SR_SemanticProcessorImpl* impl = (SR_SemanticProcessorImpl*) self; local
1067 SR_SemanticResultImpl** impl = (SR_SemanticResultImpl**) result; local
1300 SR_SemanticProcessorImpl* impl = (SR_SemanticProcessorImpl*) self; local
1314 SR_SemanticProcessorImpl* impl = (SR_SemanticProcessorImpl*) self; local
[all...]
/external/apache-harmony/support/src/test/resources/tests/resources/ServiceLoader/
H A Dhyts_services.jar ... resources.ServiceLoader.ServiceMoreThanOne tests/ tests/resources/ tests/resources/impl/ tests/resources/impl/ImplementationOfAbstractService.class ImplementationOfAbstractService.java package ...
H A Dhyts_services2.jar ... resources.ServiceLoader.ServiceIn2File tests/ tests/resources/ tests/resources/impl/ tests/resources/impl/ImplementationOfServiceIn2File2.class ImplementationOfServiceIn2File2.java package ...
/external/srec/srec/Recognizer/src/
H A DRecognizerImpl.c59 static ESR_ReturnCode SR_Recognizer_Reset_Buffers ( SR_RecognizerImpl *impl );
363 * @param impl SR_RecognizerImpl handle
510 * @param impl SR_RecognizerImpl handle
512 ESR_ReturnCode SR_RecognizerCreateFrontendImpl(SR_RecognizerImpl* impl) argument
518 impl->frontend = CA_AllocateFrontend(1, 0, 1);
522 CA_ConfigureFrontend(impl->frontend, frontendParams);
525 impl->wavein = CA_AllocateWave('N');
526 if (impl->wavein == NULL)
532 CA_ConfigureWave(impl->wavein, impl
614 SR_RecognizerImpl* impl; local
799 SR_RecognizerImpl* impl = (SR_RecognizerImpl*) self; local
929 beginRecognizing(SR_RecognizerImpl* impl) argument
980 SR_RecognizerImpl* impl = (SR_RecognizerImpl*) self; local
1064 SR_RecognizerImpl* impl = (SR_RecognizerImpl*) self; local
1338 SR_RecognizerImpl* impl = (SR_RecognizerImpl*) self; local
1353 SR_RecognizerImpl* impl = (SR_RecognizerImpl*) self; local
1367 SR_RecognizerImpl* impl = (SR_RecognizerImpl*) self; local
1405 SR_RecognizerImpl* impl = (SR_RecognizerImpl*) self; local
1427 SR_RecognizerImpl* impl = (SR_RecognizerImpl*) self; local
1467 SR_RecognizerImpl* impl = (SR_RecognizerImpl*) self; local
1507 SR_RecognizerImpl* impl = (SR_RecognizerImpl*) self; local
1548 SR_RecognizerImpl* impl = (SR_RecognizerImpl*) self; local
1636 SR_RecognizerImpl* impl = (SR_RecognizerImpl*) self; local
1656 SR_RecognizerImpl* impl = (SR_RecognizerImpl*) self; local
1669 SR_RecognizerImpl* impl = (SR_RecognizerImpl*) self; local
1682 SR_RecognizerImpl* impl = (SR_RecognizerImpl*) self; local
1697 SR_RecognizerImpl* impl = (SR_RecognizerImpl*) self; local
1711 SR_RecognizerImpl* impl = (SR_RecognizerImpl*) self; local
1719 SR_RecognizerImpl* impl = (SR_RecognizerImpl*) self; local
1966 SR_RecognizerImpl* impl = (SR_RecognizerImpl*) self; local
2604 canPushAudioIntoRecognizer(SR_RecognizerImpl* impl) argument
2657 pushAudioIntoRecognizer(SR_RecognizerImpl* impl, SR_RecognizerStatus* status, SR_RecognizerResultType* type, SR_RecognizerResult* result) argument
2717 generateFrameFromAudio(SR_RecognizerImpl* impl, SR_RecognizerStatus* status, SR_RecognizerResultType* type, SR_RecognizerResult* result) argument
2760 generateFrameStats(SR_RecognizerImpl* impl, SR_RecognizerStatus* status, SR_RecognizerResultType* type, SR_RecognizerResult* result) argument
2783 generatePatternFromFrame(SR_RecognizerImpl* impl, SR_RecognizerStatus* status, SR_RecognizerResultType* type, SR_RecognizerResult* result) argument
2892 generatePatternFromFrameEOI(SR_RecognizerImpl* impl, SR_RecognizerStatus* status, SR_RecognizerResultType* type, SR_RecognizerResult* result) argument
2981 detectEndOfSpeech(SR_RecognizerImpl* impl, SR_RecognizerStatus* status, SR_RecognizerResultType* type, SR_RecognizerResult* result) argument
3079 detectBeginningOfSpeech(SR_RecognizerImpl* impl, SR_RecognizerStatus* status, SR_RecognizerResultType* type, SR_RecognizerResult* result) argument
3257 SR_RecognizerImpl* impl = (SR_RecognizerImpl*) self; local
3425 SR_RecognizerImpl *impl = (SR_RecognizerImpl*) self; local
3435 SR_RecognizerImpl *impl = (SR_RecognizerImpl*) self; local
3445 SR_RecognizerImpl *impl = (SR_RecognizerImpl*) self; local
3455 SR_RecognizerImpl *impl = (SR_RecognizerImpl*) self; local
3479 SR_RecognizerImpl *impl = (SR_RecognizerImpl*) self; local
3496 SR_RecognizerImpl *impl = (SR_RecognizerImpl*) self; local
3521 SR_RecognizerImpl* impl = (SR_RecognizerImpl*) self; local
3528 doSignalQualityInit(SR_RecognizerImpl* impl) argument
3539 SR_RecognizerImpl* impl = (SR_RecognizerImpl*) self; local
3557 SR_RecognizerImpl* impl = (SR_RecognizerImpl*) self; local
3575 SR_RecognizerImpl* impl = (SR_RecognizerImpl*) self; local
3593 SR_RecognizerImpl* impl = (SR_RecognizerImpl*) self; local
3611 SR_RecognizerImpl* impl = (SR_RecognizerImpl*) self; local
3629 SR_RecognizerImpl* impl = (SR_RecognizerImpl*) self; local
4149 SR_RecognizerImpl *impl; local
[all...]
H A DRecognizerResultImpl.c33 SR_RecognizerResultImpl* impl; local
40 impl = NEW(SR_RecognizerResultImpl, MTAG);
41 if (impl == NULL)
46 impl->Interface.getWaveform = &SR_RecognizerResult_GetWaveform;
47 impl->Interface.getSize = &SR_RecognizerResult_GetSize;
48 impl->Interface.getKeyCount = &SR_RecognizerResult_GetKeyCount;
49 impl->Interface.getKeyList = &SR_RecognizerResult_GetKeyList;
50 impl->Interface.getValue = &SR_RecognizerResult_GetValue;
51 impl->Interface.getLocale = &SR_RecognizerResult_GetLocale;
53 impl
64 SR_RecognizerResultImpl* impl = (SR_RecognizerResultImpl*) self; local
94 SR_RecognizerResultImpl* impl = (SR_RecognizerResultImpl*) self; local
106 SR_RecognizerResultImpl* impl = (SR_RecognizerResultImpl*) self; local
127 SR_RecognizerResultImpl* impl = (SR_RecognizerResultImpl*) self; local
150 SR_RecognizerResultImpl* impl = (SR_RecognizerResultImpl*) self; local
224 SR_RecognizerResultImpl* impl = (SR_RecognizerResultImpl*) self; local
273 SR_RecognizerResultImpl* impl = (SR_RecognizerResultImpl*) self; local
[all...]
/external/webkit/Source/WebCore/bindings/scripts/test/CPP/
H A DWebDOMTestMediaQueryListListener.cpp33 : impl(object)
37 RefPtr<WebCore::TestMediaQueryListListener> impl; member in struct:WebDOMTestMediaQueryListListener::WebDOMTestMediaQueryListListenerPrivate
46 WebDOMTestMediaQueryListListener::WebDOMTestMediaQueryListListener(WebCore::TestMediaQueryListListener* impl) argument
48 , m_impl(new WebDOMTestMediaQueryListListenerPrivate(impl))
55 m_impl = copy.impl() ? new WebDOMTestMediaQueryListListenerPrivate(copy.impl()) : 0;
61 m_impl = copy.impl() ? new WebDOMTestMediaQueryListListenerPrivate(copy.impl()) : 0;
65 WebCore::TestMediaQueryListListener* WebDOMTestMediaQueryListListener::impl() const function in class:WebDOMTestMediaQueryListListener
67 return m_impl ? m_impl->impl
[all...]
H A DWebDOMTestSerializedScriptValueInterface.cpp35 : impl(object)
39 RefPtr<WebCore::TestSerializedScriptValueInterface> impl; member in struct:WebDOMTestSerializedScriptValueInterface::WebDOMTestSerializedScriptValueInterfacePrivate
48 WebDOMTestSerializedScriptValueInterface::WebDOMTestSerializedScriptValueInterface(WebCore::TestSerializedScriptValueInterface* impl) argument
50 , m_impl(new WebDOMTestSerializedScriptValueInterfacePrivate(impl))
57 m_impl = copy.impl() ? new WebDOMTestSerializedScriptValueInterfacePrivate(copy.impl()) : 0;
63 m_impl = copy.impl() ? new WebDOMTestSerializedScriptValueInterfacePrivate(copy.impl()) : 0;
67 WebCore::TestSerializedScriptValueInterface* WebDOMTestSerializedScriptValueInterface::impl() const function in class:WebDOMTestSerializedScriptValueInterface
69 return m_impl ? m_impl->impl
[all...]
H A DWebDOMTestInterface.cpp34 : impl(object)
38 RefPtr<WebCore::TestInterface> impl; member in struct:WebDOMTestInterface::WebDOMTestInterfacePrivate
47 WebDOMTestInterface::WebDOMTestInterface(WebCore::TestInterface* impl) argument
49 , m_impl(new WebDOMTestInterfacePrivate(impl))
56 m_impl = copy.impl() ? new WebDOMTestInterfacePrivate(copy.impl()) : 0;
62 m_impl = copy.impl() ? new WebDOMTestInterfacePrivate(copy.impl()) : 0;
66 WebCore::TestInterface* WebDOMTestInterface::impl() const function in class:WebDOMTestInterface
68 return m_impl ? m_impl->impl
[all...]
/external/jmdns/src/javax/jmdns/impl/
H A DDNSListener.java5 package javax.jmdns.impl;
/external/webkit/Source/WebCore/bindings/js/
H A DJSHTMLDataGridElementCustom.cpp42 DataGridDataSource* dataSource = static_cast<HTMLDataGridElement*>(impl())->dataSource();
51 static_cast<HTMLDataGridElement*>(impl())->setDataSource(0);
55 static_cast<HTMLDataGridElement*>(impl())->setDataSource(JSDataGridDataSource::create(value, impl()->document()->frame()));
H A DJSSVGLengthCustom.cpp35 SVGLength& podImp = impl()->propertyReference();
37 float value = podImp.value(impl()->contextElement(), ec);
48 if (impl()->role() == AnimValRole) {
58 SVGLength& podImp = impl()->propertyReference();
61 podImp.setValue(value.toFloat(exec), impl()->contextElement(), ec);
67 impl()->commitChange();
72 if (impl()->role() == AnimValRole) {
77 SVGLength& podImp = impl()->propertyReference();
88 podImp.convertToSpecifiedUnits(unitType, impl()->contextElement(), ec);
94 impl()
[all...]
/external/webkit/Source/WebKit/chromium/src/
H A DWebCursorInfo.cpp42 type = static_cast<Type>(cursor.impl().type());
43 hotSpot = cursor.impl().hotSpot();
44 customImage = cursor.impl().customImage();
/external/srec/srec/Grammar/src/
H A DSR_GrammarImpl.c37 SR_GrammarImpl* impl; local
41 impl = NEW(SR_GrammarImpl, MTAG);
42 if (impl == NULL)
48 impl->Interface.addNametagToSlot = &SR_Grammar_AddNametagToSlot;
49 impl->Interface.addWordToSlot = &SR_Grammar_AddWordToSlot;
50 impl->Interface.checkParse = &SR_Grammar_CheckParse;
51 impl->Interface.compile = &SR_Grammar_Compile;
52 impl->Interface.destroy = &SR_Grammar_Destroy;
53 impl->Interface.getParameter = &SR_Grammar_GetParameter;
54 impl
132 SR_GrammarImpl* impl = (SR_GrammarImpl*) self; local
152 SR_GrammarImpl* impl = (SR_GrammarImpl*) self; local
305 SR_GrammarImpl* impl = (SR_GrammarImpl*) self; local
342 SR_GrammarImpl* impl = (SR_GrammarImpl*) self; local
355 SR_GrammarImpl* impl; local
463 SR_GrammarImpl* impl = (SR_GrammarImpl*) self; local
493 SR_GrammarImpl* impl = (SR_GrammarImpl*) self; local
522 SR_GrammarImpl* impl = (SR_GrammarImpl*) self; local
556 SR_GrammarImpl* impl = (SR_GrammarImpl*) self; local
599 SR_GrammarImpl* impl = (SR_GrammarImpl*) self; local
626 SR_GrammarImpl* impl = (SR_GrammarImpl*) self; local
635 SR_GrammarImpl* impl = (SR_GrammarImpl*) self; local
649 SR_GrammarImpl* impl = (SR_GrammarImpl*) self; local
688 SR_GrammarImpl* impl = (SR_GrammarImpl*)self; local
760 SR_GrammarImpl* impl = (SR_GrammarImpl*)self; local
[all...]
/external/srec/srec/Nametag/src/
H A DNametagImpl.c132 SR_NametagImpl* impl; local
136 impl = NEW(SR_NametagImpl, MTAG);
137 if (impl == NULL)
143 impl->Interface.setID = &SR_Nametag_SetID;
144 impl->Interface.getID = &SR_Nametag_GetID;
145 impl->Interface.getValue = &SR_Nametag_GetValue;
146 impl->Interface.clone = &SR_Nametag_Clone;
147 impl->Interface.destroy = &SR_Nametag_Destroy;
148 impl->id = NULL;
149 impl
179 SR_NametagImpl* impl = (SR_NametagImpl*) self; local
196 SR_NametagImpl* impl = (SR_NametagImpl*) self; local
204 SR_NametagImpl* impl = (SR_NametagImpl*) self; local
215 SR_NametagImpl* impl = (SR_NametagImpl*) self; local
235 SR_NametagImpl* impl = (SR_NametagImpl*) self; local
[all...]
/external/qemu/android/
H A Dlooper.h114 void* impl; member in struct:LoopTimer
118 void (*startRelative)(void* impl, Duration timeout_ms);
119 void (*startAbsolute)(void* impl, Duration deadline_ms);
120 void (*stop) (void* impl);
121 int (*isActive) (void* impl);
122 void (*done) (void* impl);
141 timer->clazz->done(timer->impl);
143 timer->impl = NULL;
153 timer->clazz->startRelative(timer->impl, timeout_ms);
165 timer->clazz->startAbsolute(timer->impl, deadline_m
194 void* impl; member in struct:LoopIo
[all...]

Completed in 2433 milliseconds

1234567891011>>