/external/webkit/Source/WebCore/bindings/scripts/test/CPP/ |
D | WebDOMTestObj.cpp | 41 : impl(object) in WebDOMTestObjPrivate() 45 RefPtr<WebCore::TestObj> impl; member 54 WebDOMTestObj::WebDOMTestObj(WebCore::TestObj* impl) in WebDOMTestObj() argument 56 , m_impl(new WebDOMTestObjPrivate(impl)) in WebDOMTestObj() 63 m_impl = copy.impl() ? new WebDOMTestObjPrivate(copy.impl()) : 0; in WebDOMTestObj() 69 m_impl = copy.impl() ? new WebDOMTestObjPrivate(copy.impl()) : 0; in operator =() 73 WebCore::TestObj* WebDOMTestObj::impl() const in impl() function in WebDOMTestObj 75 return m_impl ? m_impl->impl.get() : 0; in impl() 86 if (!impl()) in readOnlyIntAttr() 89 return impl()->readOnlyIntAttr(); in readOnlyIntAttr() [all …]
|
D | WebDOMTestCallback.cpp | 45 : impl(object) in WebDOMTestCallbackPrivate() 49 RefPtr<WebCore::TestCallback> impl; member 58 WebDOMTestCallback::WebDOMTestCallback(WebCore::TestCallback* impl) in WebDOMTestCallback() argument 60 , m_impl(new WebDOMTestCallbackPrivate(impl)) in WebDOMTestCallback() 67 m_impl = copy.impl() ? new WebDOMTestCallbackPrivate(copy.impl()) : 0; in WebDOMTestCallback() 73 m_impl = copy.impl() ? new WebDOMTestCallbackPrivate(copy.impl()) : 0; in operator =() 77 WebCore::TestCallback* WebDOMTestCallback::impl() const in impl() function in WebDOMTestCallback 79 return m_impl ? m_impl->impl.get() : 0; in impl() 90 if (!impl()) in callbackWithNoParam() 93 return impl()->callbackWithNoParam(); in callbackWithNoParam() [all …]
|
/external/srec/srec/Recognizer/src/ |
D | RecognizerImpl.c | 59 static ESR_ReturnCode SR_Recognizer_Reset_Buffers ( SR_RecognizerImpl *impl ); 512 ESR_ReturnCode SR_RecognizerCreateFrontendImpl(SR_RecognizerImpl* impl) in SR_RecognizerCreateFrontendImpl() argument 518 impl->frontend = CA_AllocateFrontend(1, 0, 1); in SR_RecognizerCreateFrontendImpl() 522 CA_ConfigureFrontend(impl->frontend, frontendParams); in SR_RecognizerCreateFrontendImpl() 525 impl->wavein = CA_AllocateWave('N'); in SR_RecognizerCreateFrontendImpl() 526 if (impl->wavein == NULL) in SR_RecognizerCreateFrontendImpl() 532 CA_ConfigureWave(impl->wavein, impl->frontend); in SR_RecognizerCreateFrontendImpl() 533 CA_ConfigureVoicingAnalysis(impl->wavein, frontendParams); in SR_RecognizerCreateFrontendImpl() 535 CA_LoadCMSParameters(impl->wavein, NULL, frontendParams); in SR_RecognizerCreateFrontendImpl() 538 impl->utterance = CA_AllocateUtterance(); in SR_RecognizerCreateFrontendImpl() [all …]
|
D | RecognizerResultImpl.c | 33 SR_RecognizerResultImpl* impl; in SR_RecognizerResult_Create() local 40 impl = NEW(SR_RecognizerResultImpl, MTAG); in SR_RecognizerResult_Create() 41 if (impl == NULL) in SR_RecognizerResult_Create() 46 impl->Interface.getWaveform = &SR_RecognizerResult_GetWaveform; in SR_RecognizerResult_Create() 47 impl->Interface.getSize = &SR_RecognizerResult_GetSize; in SR_RecognizerResult_Create() 48 impl->Interface.getKeyCount = &SR_RecognizerResult_GetKeyCount; in SR_RecognizerResult_Create() 49 impl->Interface.getKeyList = &SR_RecognizerResult_GetKeyList; in SR_RecognizerResult_Create() 50 impl->Interface.getValue = &SR_RecognizerResult_GetValue; in SR_RecognizerResult_Create() 51 impl->Interface.getLocale = &SR_RecognizerResult_GetLocale; in SR_RecognizerResult_Create() 53 impl->nbestList = NULL; in SR_RecognizerResult_Create() [all …]
|
/external/webkit/Source/WebCore/bindings/v8/custom/ |
D | V8EventCustom.cpp | 104 v8::Handle<v8::Value> toV8(Event* impl) in toV8() argument 106 if (!impl) in toV8() 108 if (impl->isUIEvent()) { in toV8() 109 if (impl->isKeyboardEvent()) in toV8() 110 return toV8(static_cast<KeyboardEvent*>(impl)); in toV8() 111 if (impl->isTextEvent()) in toV8() 112 return toV8(static_cast<TextEvent*>(impl)); in toV8() 113 if (impl->isMouseEvent()) in toV8() 114 return toV8(static_cast<MouseEvent*>(impl)); in toV8() 115 if (impl->isWheelEvent()) in toV8() [all …]
|
D | V8SVGPathSegCustom.cpp | 60 v8::Handle<v8::Value> toV8(SVGPathSeg* impl) in toV8() argument 62 if (!impl) in toV8() 64 switch (impl->pathSegType()) { in toV8() 66 return toV8(static_cast<SVGPathSegClosePath*>(impl)); in toV8() 68 return toV8(static_cast<SVGPathSegMovetoAbs*>(impl)); in toV8() 70 return toV8(static_cast<SVGPathSegMovetoRel*>(impl)); in toV8() 72 return toV8(static_cast<SVGPathSegLinetoAbs*>(impl)); in toV8() 74 return toV8(static_cast<SVGPathSegLinetoRel*>(impl)); in toV8() 76 return toV8(static_cast<SVGPathSegCurvetoCubicAbs*>(impl)); in toV8() 78 return toV8(static_cast<SVGPathSegCurvetoCubicRel*>(impl)); in toV8() [all …]
|
D | V8CSSValueCustom.cpp | 45 v8::Handle<v8::Value> toV8(CSSValue* impl) in toV8() argument 47 if (!impl) in toV8() 49 if (impl->isWebKitCSSTransformValue()) in toV8() 50 return toV8(static_cast<WebKitCSSTransformValue*>(impl)); in toV8() 51 if (impl->isValueList()) in toV8() 52 return toV8(static_cast<CSSValueList*>(impl)); in toV8() 53 if (impl->isPrimitiveValue()) in toV8() 54 return toV8(static_cast<CSSPrimitiveValue*>(impl)); in toV8() 56 if (impl->isSVGPaint()) in toV8() 57 return toV8(static_cast<SVGPaint*>(impl)); in toV8() [all …]
|
/external/srec/portable/src/ |
D | ArrayListImpl.c | 31 ArrayListImpl* impl; in ArrayListCreateWithCapacity() local 36 impl = NEW(ArrayListImpl, MTAG); in ArrayListCreateWithCapacity() 38 if (impl == NULL) in ArrayListCreateWithCapacity() 41 impl->Interface.add = &ArrayList_Add; in ArrayListCreateWithCapacity() 42 impl->Interface.insertAt = &ArrayList_InsertAt; in ArrayListCreateWithCapacity() 43 impl->Interface.contains = &ArrayList_Contains; in ArrayListCreateWithCapacity() 44 impl->Interface.destroy = &ArrayList_Destroy; in ArrayListCreateWithCapacity() 45 impl->Interface.get = &ArrayList_Get; in ArrayListCreateWithCapacity() 46 impl->Interface.getSize = &ArrayList_GetSize; in ArrayListCreateWithCapacity() 47 impl->Interface.remove = &ArrayList_Remove; in ArrayListCreateWithCapacity() [all …]
|
D | PANSIFileImpl.c | 36 PANSIFileImpl* impl = NULL; in PANSIFileCreateImpl() local 39 impl = NEW(PANSIFileImpl, MTAG); in PANSIFileCreateImpl() 40 if (impl == NULL) in PANSIFileCreateImpl() 47 PFileCreateImpl(&impl->Interface.Interface, filename, isLittleEndian); in PANSIFileCreateImpl() 48 impl->Interface.Interface.close = &PANSIFileCloseImpl; in PANSIFileCreateImpl() 49 impl->Interface.Interface.clearError = &PANSIFileClearErrorImpl; in PANSIFileCreateImpl() 50 impl->Interface.Interface.destroy = &PANSIFileDestroyImpl; in PANSIFileCreateImpl() 51 impl->Interface.Interface.fgetc = &PANSIFileFgetcImpl; in PANSIFileCreateImpl() 52 impl->Interface.Interface.fgets = &PANSIFileFgetsImpl; in PANSIFileCreateImpl() 53 impl->Interface.Interface.getPosition = &PANSIFileGetPositionImpl; in PANSIFileCreateImpl() [all …]
|
D | PFileImpl.c | 37 PFileImpl* impl = (PFileImpl*) self; in PFileCreateImpl() local 44 impl->lock = NULL; in PFileCreateImpl() 46 impl->littleEndian = isLittleEndian; in PFileCreateImpl() 48 impl->Interface.destroy = &PFileDestroyImpl; in PFileCreateImpl() 49 impl->Interface.getFilename = &PFileGetFilenameImpl; in PFileCreateImpl() 50 impl->Interface.vfprintf = &PFileVfprintfImpl; in PFileCreateImpl() 51 impl->filename = MALLOC(sizeof(LCHAR) * (LSTRLEN(filename) + 1), MTAG); in PFileCreateImpl() 53 if (impl->filename == NULL) in PFileCreateImpl() 59 LSTRCPY(impl->filename, filename); in PFileCreateImpl() 70 rc = PtrdMonitorCreate(&impl->lock); in PFileCreateImpl() [all …]
|
/external/srec/srec/Grammar/src/ |
D | SR_GrammarImpl.c | 37 SR_GrammarImpl* impl; in SR_Grammar_Create() local 41 impl = NEW(SR_GrammarImpl, MTAG); in SR_Grammar_Create() 42 if (impl == NULL) in SR_Grammar_Create() 48 impl->Interface.addNametagToSlot = &SR_Grammar_AddNametagToSlot; in SR_Grammar_Create() 49 impl->Interface.addWordToSlot = &SR_Grammar_AddWordToSlot; in SR_Grammar_Create() 50 impl->Interface.checkParse = &SR_Grammar_CheckParse; in SR_Grammar_Create() 51 impl->Interface.compile = &SR_Grammar_Compile; in SR_Grammar_Create() 52 impl->Interface.destroy = &SR_Grammar_Destroy; in SR_Grammar_Create() 53 impl->Interface.getParameter = &SR_Grammar_GetParameter; in SR_Grammar_Create() 54 impl->Interface.getSize_tParameter = &SR_Grammar_GetSize_tParameter; in SR_Grammar_Create() [all …]
|
/external/srec/shared/src/ |
D | IntArrayListImpl.c | 31 IntArrayListImpl* impl; in IntArrayListCreate() local 35 impl = NEW(IntArrayListImpl, MTAG); in IntArrayListCreate() 36 if (impl == NULL) in IntArrayListCreate() 38 impl->Interface.add = &IntArrayList_Add; in IntArrayListCreate() 39 impl->Interface.contains = &IntArrayList_Contains; in IntArrayListCreate() 40 impl->Interface.destroy = &IntArrayList_Destroy; in IntArrayListCreate() 41 impl->Interface.get = &IntArrayList_Get; in IntArrayListCreate() 42 impl->Interface.getSize = &IntArrayList_GetSize; in IntArrayListCreate() 43 impl->Interface.remove = &IntArrayList_Remove; in IntArrayListCreate() 44 impl->Interface.removeAll = &IntArrayList_RemoveAll; in IntArrayListCreate() [all …]
|
D | Int8ArrayListImpl.c | 31 Int8ArrayListImpl* impl; in Int8ArrayListCreate() local 35 impl = NEW(Int8ArrayListImpl, MTAG); in Int8ArrayListCreate() 36 if (impl == NULL) in Int8ArrayListCreate() 38 impl->Interface.add = &Int8ArrayList_Add; in Int8ArrayListCreate() 39 impl->Interface.contains = &Int8ArrayList_Contains; in Int8ArrayListCreate() 40 impl->Interface.destroy = &Int8ArrayList_Destroy; in Int8ArrayListCreate() 41 impl->Interface.get = &Int8ArrayList_Get; in Int8ArrayListCreate() 42 impl->Interface.getSize = &Int8ArrayList_GetSize; in Int8ArrayListCreate() 43 impl->Interface.remove = &Int8ArrayList_Remove; in Int8ArrayListCreate() 44 impl->Interface.removeAll = &Int8ArrayList_RemoveAll; in Int8ArrayListCreate() [all …]
|
D | LStringImpl.c | 30 LStringImpl* impl; in LStringCreate() local 32 impl = NEW(LStringImpl, MTAG); in LStringCreate() 33 if (impl == NULL) in LStringCreate() 35 impl->Interface.append = &LString_Append; in LStringCreate() 36 impl->Interface.toLCHAR = &LString_ToLCHAR; in LStringCreate() 37 impl->Interface.reset = &LString_Reset; in LStringCreate() 38 impl->Interface.destroy = &LString_Destroy; in LStringCreate() 39 impl->size = INITIAL_SIZE; in LStringCreate() 40 impl->value = MALLOC(sizeof(LCHAR) * INITIAL_SIZE, MTAG); in LStringCreate() 41 if (impl->value == NULL) in LStringCreate() [all …]
|
D | HashMapImpl.c | 32 HashMapImpl* impl; in HashMapCreate_Internal() local 37 impl = NEW(HashMapImpl, MTAG); in HashMapCreate_Internal() 38 if (impl == NULL) in HashMapCreate_Internal() 41 if ((rc = PHashTableCreate(hashArgs, MTAG, &impl->table)) != ESR_SUCCESS) in HashMapCreate_Internal() 43 FREE(impl); in HashMapCreate_Internal() 47 impl->Interface.put = &HashMap_Put; in HashMapCreate_Internal() 48 impl->Interface.remove = &HashMap_Remove; in HashMapCreate_Internal() 49 impl->Interface.removeAndFree = &HashMap_RemoveAndFree; in HashMapCreate_Internal() 50 impl->Interface.removeAll = &HashMap_RemoveAll; in HashMapCreate_Internal() 51 impl->Interface.removeAndFreeAll = &HashMap_RemoveAndFreeAll; in HashMapCreate_Internal() [all …]
|
/external/srec/srec/EventLog/src/ |
D | EventLogImpl.c | 156 SR_EventLogImpl *impl, *any_existing_eventlog; in SR_EventLogCreate() local 182 impl = NEW(SR_EventLogImpl, MTAG); in SR_EventLogCreate() 183 if (impl == NULL) in SR_EventLogCreate() 189 impl->Interface.destroy = &SR_EventLog_Destroy; in SR_EventLogCreate() 190 impl->Interface.event = &SR_EventLog_Event; in SR_EventLogCreate() 191 impl->Interface.token = &SR_EventLog_Token; in SR_EventLogCreate() 192 impl->Interface.tokenInt = &SR_EventLog_TokenInt; in SR_EventLogCreate() 193 impl->Interface.tokenUint16_t = &SR_EventLog_TokenUint16_t; in SR_EventLogCreate() 194 impl->Interface.tokenSize_t = &SR_EventLog_TokenSize_t; in SR_EventLogCreate() 195 impl->Interface.tokenBool = &SR_EventLog_TokenBool; in SR_EventLogCreate() [all …]
|
/external/srec/srec/Nametag/src/ |
D | NametagsImpl.c | 32 SR_NametagsImpl* impl; in SR_NametagsCreate() local 40 impl = NEW(SR_NametagsImpl, MTAG); in SR_NametagsCreate() 41 if (impl == NULL) in SR_NametagsCreate() 47 impl->Interface.load = &SR_NametagsLoadImpl; in SR_NametagsCreate() 48 impl->Interface.save = &SR_NametagsSaveImpl; in SR_NametagsCreate() 49 impl->Interface.add = &SR_NametagsAddImpl; in SR_NametagsCreate() 50 impl->Interface.remove = &SR_NametagsRemoveImpl; in SR_NametagsCreate() 51 impl->Interface.getSize = &SR_NametagsGetSizeImpl; in SR_NametagsCreate() 52 impl->Interface.get = &SR_NametagsGetImpl; in SR_NametagsCreate() 53 impl->Interface.getAtIndex = &SR_NametagsGetAtIndexImpl; in SR_NametagsCreate() [all …]
|
D | NametagImpl.c | 132 SR_NametagImpl* impl; in SR_NametagCreateFromValue() local 136 impl = NEW(SR_NametagImpl, MTAG); in SR_NametagCreateFromValue() 137 if (impl == NULL) in SR_NametagCreateFromValue() 143 impl->Interface.setID = &SR_Nametag_SetID; in SR_NametagCreateFromValue() 144 impl->Interface.getID = &SR_Nametag_GetID; in SR_NametagCreateFromValue() 145 impl->Interface.getValue = &SR_Nametag_GetValue; in SR_NametagCreateFromValue() 146 impl->Interface.clone = &SR_Nametag_Clone; in SR_NametagCreateFromValue() 147 impl->Interface.destroy = &SR_Nametag_Destroy; in SR_NametagCreateFromValue() 148 impl->id = NULL; in SR_NametagCreateFromValue() 149 impl->value = NULL; in SR_NametagCreateFromValue() [all …]
|
/external/srec/srec/Semproc/src/ |
D | SemanticGraphImpl.c | 41 SR_SemanticGraphImpl* impl; in SR_SemanticGraphCreate() local 48 impl = NEW(SR_SemanticGraphImpl, MTAG); in SR_SemanticGraphCreate() 49 if (impl == NULL) in SR_SemanticGraphCreate() 55 memset(impl, 0, sizeof(SR_SemanticGraphImpl)); in SR_SemanticGraphCreate() 57 impl->Interface.destroy = &SR_SemanticGraph_Destroy; in SR_SemanticGraphCreate() 58 impl->Interface.unload = &SR_SemanticGraph_Unload; in SR_SemanticGraphCreate() 59 impl->Interface.load = &SR_SemanticGraph_Load; in SR_SemanticGraphCreate() 60 impl->Interface.save = &SR_SemanticGraph_Save; in SR_SemanticGraphCreate() 61 impl->Interface.addWordToSlot = &SR_SemanticGraph_AddWordToSlot; in SR_SemanticGraphCreate() 62 impl->Interface.reset = &SR_SemanticGraph_Reset; in SR_SemanticGraphCreate() [all …]
|
D | SemanticResultImpl.c | 31 SR_SemanticResultImpl* impl; in SR_SemanticResultCreate() local 39 impl = NEW(SR_SemanticResultImpl, MTAG); in SR_SemanticResultCreate() 40 if (impl == NULL) in SR_SemanticResultCreate() 46 impl->Interface.destroy = &SR_SemanticResult_Destroy; in SR_SemanticResultCreate() 47 impl->Interface.getKeyCount = &SR_SemanticResult_GetKeyCount; in SR_SemanticResultCreate() 48 impl->Interface.getKeyList = &SR_SemanticResult_GetKeyList; in SR_SemanticResultCreate() 49 impl->Interface.getValue = &SR_SemanticResult_GetValue; in SR_SemanticResultCreate() 50 impl->results = NULL; in SR_SemanticResultCreate() 52 rc = HashMapCreate(&impl->results); in SR_SemanticResultCreate() 55 *self = (SR_SemanticResult*) impl; in SR_SemanticResultCreate() [all …]
|
/external/srec/srec/AcousticModels/src/ |
D | AcousticModelsImpl.c | 259 SR_AcousticModelsImpl* impl; in SR_AcousticModelsLoad() local 263 impl = NEW(SR_AcousticModelsImpl, MTAG); in SR_AcousticModelsLoad() 264 if (impl == NULL) in SR_AcousticModelsLoad() 269 impl->Interface.destroy = &SR_AcousticModels_Destroy; in SR_AcousticModelsLoad() 270 impl->Interface.save = &SR_AcousticModels_Save; in SR_AcousticModelsLoad() 271 impl->Interface.setParameter = &SR_AcousticModels_SetParameter; in SR_AcousticModelsLoad() 272 impl->Interface.getParameter = &SR_AcousticModels_GetParameter; in SR_AcousticModelsLoad() 273 impl->Interface.getCount = &SR_AcousticModels_GetCount; in SR_AcousticModelsLoad() 274 impl->Interface.getID = &SR_AcousticModels_GetID; in SR_AcousticModelsLoad() 275 impl->Interface.setID = &SR_AcousticModels_SetID; in SR_AcousticModelsLoad() [all …]
|
/external/webkit/Source/WebCore/bindings/gobject/ |
D | WebKitHTMLElementWrapperFactory.cpp | 473 map.set(aTag.localName().impl(), createAnchorWrapper); in createHTMLElementWrapper() 474 map.set(appletTag.localName().impl(), createAppletWrapper); in createHTMLElementWrapper() 476 map.set(audioTag.localName().impl(), createAudioWrapper); in createHTMLElementWrapper() 477 map.set(videoTag.localName().impl(), createVideoWrapper); in createHTMLElementWrapper() 479 map.set(areaTag.localName().impl(), createAreaWrapper); in createHTMLElementWrapper() 480 map.set(baseTag.localName().impl(), createBaseWrapper); in createHTMLElementWrapper() 481 map.set(basefontTag.localName().impl(), createBaseFontWrapper); in createHTMLElementWrapper() 482 map.set(blockquoteTag.localName().impl(), createBlockquoteWrapper); in createHTMLElementWrapper() 483 map.set(bodyTag.localName().impl(), createBodyWrapper); in createHTMLElementWrapper() 484 map.set(brTag.localName().impl(), createBRWrapper); in createHTMLElementWrapper() [all …]
|
/external/qemu/android/ |
D | looper.h | 114 void* impl; member 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); in loopTimer_done() 143 timer->impl = NULL; in loopTimer_done() 153 timer->clazz->startRelative(timer->impl, timeout_ms); in loopTimer_startRelative() 165 timer->clazz->startAbsolute(timer->impl, deadline_ms); in loopTimer_startAbsolute() [all …]
|
/external/srec/srec/Vocabulary/src/ |
D | VocabularyImpl.c | 53 SR_VocabularyImpl * impl = (SR_VocabularyImpl*) self; in SR_CreateG2P() local 66 impl->hSlts = NULL; in SR_CreateG2P() 87 res = SWIsltsOpen(&(impl->hSlts), szG2PDataFile); in SR_CreateG2P() 91 FREE(impl); in SR_CreateG2P() 98 FREE(impl); in SR_CreateG2P() 108 SR_VocabularyImpl * impl = (SR_VocabularyImpl*) self; in SR_DestroyG2P() local 117 if ( bG2P == ESR_FALSE || impl->hSlts == NULL) in SR_DestroyG2P() 122 res = SWIsltsClose(impl->hSlts); in SR_DestroyG2P() 148 SR_VocabularyImpl* impl; in SR_VocabularyCreateImpl() local 155 impl = NEW(SR_VocabularyImpl, MTAG); in SR_VocabularyCreateImpl() [all …]
|
/external/webkit/Source/WebCore/css/ |
D | CSSSelector.cpp | 329 nameToPseudoType->set(active.impl(), CSSSelector::PseudoActive); in nameToPseudoTypeMap() 330 nameToPseudoType->set(after.impl(), CSSSelector::PseudoAfter); in nameToPseudoTypeMap() 331 nameToPseudoType->set(anyLink.impl(), CSSSelector::PseudoAnyLink); in nameToPseudoTypeMap() 332 nameToPseudoType->set(any.impl(), CSSSelector::PseudoAny); in nameToPseudoTypeMap() 333 nameToPseudoType->set(autofill.impl(), CSSSelector::PseudoAutofill); in nameToPseudoTypeMap() 334 nameToPseudoType->set(before.impl(), CSSSelector::PseudoBefore); in nameToPseudoTypeMap() 335 nameToPseudoType->set(checked.impl(), CSSSelector::PseudoChecked); in nameToPseudoTypeMap() 336 nameToPseudoType->set(fileUploadButton.impl(), CSSSelector::PseudoFileUploadButton); in nameToPseudoTypeMap() 338 nameToPseudoType->set(inputSpeechButton.impl(), CSSSelector::PseudoInputSpeechButton); in nameToPseudoTypeMap() 340 nameToPseudoType->set(defaultString.impl(), CSSSelector::PseudoDefault); in nameToPseudoTypeMap() [all …]
|