Searched defs:stillSelecting (Results 1 - 12 of 12) sorted by relevance

/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
H A DInjectedBundlePageEditorClient.cpp85 bool InjectedBundlePageEditorClient::shouldChangeSelectedRange(WebPage* page, Range* fromRange, Range* toRange, EAffinity affinity, bool stillSelecting) argument
90 return m_client.shouldChangeSelectedRange(toAPI(page), toAPI(fromRangeHandle.get()), toAPI(toRangeHandle.get()), toAPI(affinity), stillSelecting, m_client.clientInfo);
/external/webkit/Tools/DumpRenderTree/gtk/
H A DEditingCallbacks.cpp145 gboolean shouldChangeSelectedRange(WebKitWebView* webView, WebKitDOMRange* fromRange, WebKitDOMRange* toRange, WebKitSelectionAffinity affinity, gboolean stillSelecting) argument
148 printf("EDITING DELEGATE: shouldChangeSelectedDOMRange:%s toDOMRange:%s affinity:%s stillSelecting:%s\n",
150 stillSelecting ? "TRUE" : "FALSE");
/external/webkit/Tools/DumpRenderTree/win/
H A DEditingDelegate.cpp220 /* [in] */ BOOL stillSelecting,
238 _tprintf(TEXT("EDITING DELEGATE: shouldChangeSelectedDOMRange:%s toDOMRange:%s affinity:%s stillSelecting:%s\n"), dump(currentRange), dump(proposedRange), affinitystring[selectionAffinity], boolstring[stillSelecting]);
215 shouldChangeSelectedDOMRange( IWebView* webView, IDOMRange* currentRange, IDOMRange* proposedRange, WebSelectionAffinity selectionAffinity, BOOL stillSelecting, BOOL* result) argument
/external/webkit/Source/WebKit/haiku/WebCoreSupport/
H A DEditorClientHaiku.cpp141 EAffinity, bool stillSelecting)
140 shouldChangeSelectedRange(Range* fromRange, Range* toRange, EAffinity, bool stillSelecting) argument
/external/webkit/Source/WebKit/chromium/public/
H A DWebViewClient.h155 bool stillSelecting) { return true; }
153 shouldChangeSelectedRange( const WebRange& from, const WebRange& to, WebTextAffinity, bool stillSelecting) argument
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DEditorClientQt.cpp153 bool EditorClientQt::shouldChangeSelectedRange(Range* currentRange, Range* proposedRange, EAffinity selectionAffinity, bool stillSelecting) argument
165 printf("EDITING DELEGATE: shouldChangeSelectedDOMRange:%s toDOMRange:%s affinity:%s stillSelecting:%s\n",
168 affinitystring[selectionAffinity], boolstring[stillSelecting]);
/external/webkit/Source/WebKit/wx/WebKitSupport/
H A DEditorClientWx.cpp240 EAffinity, bool stillSelecting)
239 shouldChangeSelectedRange(Range* fromRange, Range* toRange, EAffinity, bool stillSelecting) argument
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
H A DWebEditorClient.cpp150 bool WebEditorClient::shouldChangeSelectedRange(Range* fromRange, Range* toRange, EAffinity affinity, bool stillSelecting) argument
152 bool result = m_page->injectedBundleEditorClient().shouldChangeSelectedRange(m_page, fromRange, toRange, affinity, stillSelecting);
/external/webkit/Source/WebKit/chromium/src/
H A DEditorClientImpl.cpp240 bool stillSelecting)
246 stillSelecting);
237 shouldChangeSelectedRange(Range* fromRange, Range* toRange, EAffinity affinity, bool stillSelecting) argument
/external/webkit/Source/WebKit/gtk/WebCoreSupport/
H A DEditorClientGtk.cpp362 bool EditorClient::shouldChangeSelectedRange(Range* fromRange, Range* toRange, EAffinity affinity, bool stillSelecting) argument
368 kit(affinity), stillSelecting, &accept);
/external/webkit/Tools/WebKitTestRunner/InjectedBundle/
H A DInjectedBundlePage.cpp855 bool InjectedBundlePage::shouldChangeSelectedRange(WKBundlePageRef page, WKBundleRangeHandleRef fromRange, WKBundleRangeHandleRef toRange, WKAffinityType affinity, bool stillSelecting, const void* clientInfo) argument
857 return static_cast<InjectedBundlePage*>(const_cast<void*>(clientInfo))->shouldChangeSelectedRange(fromRange, toRange, affinity, stillSelecting);
947 bool InjectedBundlePage::shouldChangeSelectedRange(WKBundleRangeHandleRef fromRange, WKBundleRangeHandleRef toRange, WKAffinityType affinity, bool stillSelecting) argument
962 InjectedBundle::shared().os() << "EDITING DELEGATE: shouldChangeSelectedDOMRange:" << toStr(m_page, m_world.get(), fromRange) << " toDOMRange:" << toStr(m_page, m_world.get(), toRange) << " affinity:" << affinitystring[affinity] << " stillSelecting:" << boolstring[stillSelecting] << "\n";
/external/webkit/Tools/DumpRenderTree/chromium/
H A DWebViewHost.cpp325 const WebRange& fromRange, const WebRange& toRange, WebTextAffinity affinity, bool stillSelecting)
332 printf(" affinity:%s stillSelecting:%s\n",
334 (stillSelecting ? "TRUE" : "FALSE"));
324 shouldChangeSelectedRange( const WebRange& fromRange, const WebRange& toRange, WebTextAffinity affinity, bool stillSelecting) argument

Completed in 2767 milliseconds