/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/DOM/ |
D | InjectedBundleNodeHandle.cpp | 51 typedef HashMap<Node*, InjectedBundleNodeHandle*> DOMHandleCache; 59 PassRefPtr<InjectedBundleNodeHandle> InjectedBundleNodeHandle::getOrCreate(JSContextRef, JSObjectRe… in getOrCreate() 65 PassRefPtr<InjectedBundleNodeHandle> InjectedBundleNodeHandle::getOrCreate(Node* node) in getOrCreate() 72 return PassRefPtr<InjectedBundleNodeHandle>(result.first->second); in getOrCreate() 74 RefPtr<InjectedBundleNodeHandle> nodeHandle = InjectedBundleNodeHandle::create(node); in getOrCreate() 79 PassRefPtr<InjectedBundleNodeHandle> InjectedBundleNodeHandle::create(Node* node) in create() 81 return adoptRef(new InjectedBundleNodeHandle(node)); in create() 84 InjectedBundleNodeHandle::InjectedBundleNodeHandle(Node* node) in InjectedBundleNodeHandle() function in WebKit::InjectedBundleNodeHandle 89 InjectedBundleNodeHandle::~InjectedBundleNodeHandle() in ~InjectedBundleNodeHandle() 94 Node* InjectedBundleNodeHandle::coreNode() const in coreNode() [all …]
|
D | InjectedBundleNodeHandle.h | 45 class InjectedBundleNodeHandle : public APIObject { 49 static PassRefPtr<InjectedBundleNodeHandle> getOrCreate(JSContextRef, JSObjectRef); 50 static PassRefPtr<InjectedBundleNodeHandle> getOrCreate(WebCore::Node*); 52 virtual ~InjectedBundleNodeHandle(); 57 PassRefPtr<InjectedBundleNodeHandle> document(); 69 PassRefPtr<InjectedBundleNodeHandle> htmlTableCellElementCellAbove(); 71 PassRefPtr<InjectedBundleNodeHandle> elementShadowRoot(); 78 static PassRefPtr<InjectedBundleNodeHandle> create(WebCore::Node*); 79 InjectedBundleNodeHandle(WebCore::Node*);
|
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/ |
D | InjectedBundlePageFormClient.cpp | 46 … RefPtr<InjectedBundleNodeHandle> nodeHandle = InjectedBundleNodeHandle::getOrCreate(inputElement); in textFieldDidBeginEditing() 55 … RefPtr<InjectedBundleNodeHandle> nodeHandle = InjectedBundleNodeHandle::getOrCreate(inputElement); in textFieldDidEndEditing() 64 … RefPtr<InjectedBundleNodeHandle> nodeHandle = InjectedBundleNodeHandle::getOrCreate(inputElement); in textDidChangeInTextField() 73 …RefPtr<InjectedBundleNodeHandle> nodeHandle = InjectedBundleNodeHandle::getOrCreate(textAreaElemen… in textDidChangeInTextArea() 82 … RefPtr<InjectedBundleNodeHandle> nodeHandle = InjectedBundleNodeHandle::getOrCreate(inputElement); in shouldPerformActionInTextField() 91 … RefPtr<InjectedBundleNodeHandle> nodeHandle = InjectedBundleNodeHandle::getOrCreate(formElement); in willSubmitForm()
|
D | InjectedBundlePageFullScreenClient.cpp | 56 … RefPtr<InjectedBundleNodeHandle> nodeHandle = InjectedBundleNodeHandle::getOrCreate(element); in enterFullScreenForElement() 65 … RefPtr<InjectedBundleNodeHandle> nodeHandle = InjectedBundleNodeHandle::getOrCreate(element); in exitFullScreenForElement()
|
D | InjectedBundleHitTestResult.h | 37 class InjectedBundleNodeHandle; variable 48 PassRefPtr<InjectedBundleNodeHandle> nodeHandle() const;
|
D | InjectedBundleNavigationAction.h | 59 InjectedBundleNodeHandle* formElement() const { return m_formElement.get(); } in formElement() 70 RefPtr<InjectedBundleNodeHandle> m_formElement;
|
D | InjectedBundleHitTestResult.cpp | 47 PassRefPtr<InjectedBundleNodeHandle> InjectedBundleHitTestResult::nodeHandle() const in nodeHandle() 49 return InjectedBundleNodeHandle::getOrCreate(m_hitTestResult.innerNonSharedNode()); in nodeHandle()
|
D | InjectedBundlePageEditorClient.cpp | 60 RefPtr<InjectedBundleNodeHandle> nodeHandle = InjectedBundleNodeHandle::getOrCreate(node); in shouldInsertNode()
|
D | InjectedBundleNavigationAction.cpp | 101 m_formElement = InjectedBundleNodeHandle::getOrCreate(formState->form()); in InjectedBundleNavigationAction()
|
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/ |
D | WKBundleNodeHandle.cpp | 39 return toAPI(InjectedBundleNodeHandle::APIType); in WKBundleNodeHandleGetTypeID() 44 …RefPtr<InjectedBundleNodeHandle> nodeHandle = InjectedBundleNodeHandle::getOrCreate(contextRef, ob… in WKBundleNodeHandleCreate() 50 RefPtr<InjectedBundleNodeHandle> nodeHandle = toImpl(nodeHandleRef)->document(); in WKBundleNodeHandleCopyDocument() 66 RefPtr<InjectedBundleNodeHandle> nodeHandle = toImpl(elementHandleRef)->elementShadowRoot(); in WKBundleNodeHandleCopyElementShadowRoot() 97 …RefPtr<InjectedBundleNodeHandle> nodeHandle = toImpl(htmlTableCellElementHandleRef)->htmlTableCell… in WKBundleNodeHandleCopyHTMLTableCellElementCellAbove()
|
D | WKBundleAPICast.h | 49 class InjectedBundleNodeHandle; variable 65 WK_ADD_API_MAPPING(WKBundleNodeHandleRef, InjectedBundleNodeHandle) in WK_ADD_API_MAPPING()
|
D | WKBundleNavigationAction.cpp | 65 RefPtr<InjectedBundleNodeHandle> formElement = toImpl(navigationActionRef)->formElement(); in WKBundleNavigationActionCopyFormElement()
|
D | WKBundleHitTestResult.cpp | 43 RefPtr<InjectedBundleNodeHandle> nodeHandle = toImpl(hitTestResultRef)->nodeHandle(); in WKBundleHitTestResultCopyNodeHandle()
|
/external/webkit/Source/WebKit2/WebProcess/WebPage/ |
D | WebFrame.h | 48 class InjectedBundleNodeHandle; variable 102 JSValueRef jsWrapperForWorld(InjectedBundleNodeHandle*, InjectedBundleScriptWorld*);
|
D | WebFrame.cpp | 575 JSValueRef WebFrame::jsWrapperForWorld(InjectedBundleNodeHandle* nodeHandle, InjectedBundleScriptWo… in jsWrapperForWorld()
|
/external/webkit/Source/WebKit2/ |
D | WebKit2.pro | 241 WebProcess/InjectedBundle/DOM/InjectedBundleNodeHandle.h \ 455 WebProcess/InjectedBundle/DOM/InjectedBundleNodeHandle.cpp \
|
D | GNUmakefile.am | 550 Source/WebKit2/WebProcess/InjectedBundle/DOM/InjectedBundleNodeHandle.cpp \ 551 Source/WebKit2/WebProcess/InjectedBundle/DOM/InjectedBundleNodeHandle.h \
|
D | ChangeLog-2011-02-16 | 4982 * WebProcess/InjectedBundle/DOM/InjectedBundleNodeHandle.cpp: 6426 * WebProcess/InjectedBundle/DOM/InjectedBundleNodeHandle.cpp: Ditto. 6427 (WebKit::InjectedBundleNodeHandle::renderRect): Ditto. 6428 * WebProcess/InjectedBundle/DOM/InjectedBundleNodeHandle.h: Ditto. 7311 * WebProcess/InjectedBundle/DOM/InjectedBundleNodeHandle.h: 14768 * WebProcess/InjectedBundle/DOM/InjectedBundleNodeHandle.cpp: 14769 (WebKit::InjectedBundleNodeHandle::copyDocumentFrame): 14770 (WebKit::InjectedBundleNodeHandle::copyHTMLFrameElementContentFrame): 14771 (WebKit::InjectedBundleNodeHandle::copyHTMLIFrameElementContentFrame): 14772 * WebProcess/InjectedBundle/DOM/InjectedBundleNodeHandle.h: [all …]
|
D | ChangeLog | 4532 * WebProcess/InjectedBundle/DOM/InjectedBundleNodeHandle.cpp: 4533 (WebKit::InjectedBundleNodeHandle::elementShadowRoot): 4534 * WebProcess/InjectedBundle/DOM/InjectedBundleNodeHandle.h: 8257 * WebProcess/InjectedBundle/DOM/InjectedBundleNodeHandle.cpp: 8258 (WebKit::InjectedBundleNodeHandle::htmlInputElementLastChangeWasUserEdit): 8259 (WebKit::InjectedBundleNodeHandle::htmlTextAreaElementLastChangeWasUserEdit): 8260 * WebProcess/InjectedBundle/DOM/InjectedBundleNodeHandle.h: 11101 InjectedBundleNodeHandle dies too early in WKBundleHitTestResultGetNodeHandle 11996 * WebProcess/InjectedBundle/DOM/InjectedBundleNodeHandle.cpp: 11997 (WebKit::InjectedBundleNodeHandle::document): [all …]
|
/external/webkit/Source/WebKit2/WebKit2.xcodeproj/ |
D | project.pbxproj | 542 …F00FBA0C7 /* InjectedBundleNodeHandle.h in Headers */ = {isa = PBXBuildFile; fileRef = BC4BEEA9120… 543 …00FBA0C7 /* InjectedBundleNodeHandle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC4BEEAA12… 1450 …7 /* InjectedBundleNodeHandle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType … 1451 …* InjectedBundleNodeHandle.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType =… 2973 BC4BEEAA120A0A5F00FBA0C7 /* InjectedBundleNodeHandle.cpp */, 2974 BC4BEEA9120A0A5E00FBA0C7 /* InjectedBundleNodeHandle.h */, 3418 BC4BEEAB120A0A5F00FBA0C7 /* InjectedBundleNodeHandle.h in Headers */, 4031 BC4BEEAC120A0A5F00FBA0C7 /* InjectedBundleNodeHandle.cpp in Sources */,
|
/external/webkit/Tools/ |
D | ChangeLog | 6663 InjectedBundleNodeHandle dies too early in WKBundleHitTestResultGetNodeHandle.
|