Searched refs:client (Results 176 - 200 of 864) sorted by relevance

1234567891011>>

/external/webkit/Source/WebKit/chromium/src/
H A DEditorClientImpl.cpp106 if (m_webView->client())
107 return m_webView->client()->isSmartInsertDeleteEnabled();
113 if (m_webView->client())
114 return m_webView->client()->isSelectTrailingWhitespaceEnabled();
172 webframe->client()->didToggleContinuousSpellChecking(webframe);
193 if (m_webView->client())
194 return m_webView->client()->shouldBeginEditing(WebRange(range));
200 if (m_webView->client())
201 return m_webView->client()->shouldEndEditing(WebRange(range));
209 if (m_webView->client()) {
[all...]
H A DAsyncFileWriterChromium.cpp43 AsyncFileWriterChromium::AsyncFileWriterChromium(AsyncFileWriterClient* client) argument
44 : m_client(client)
H A DGeolocationClientProxy.cpp38 GeolocationClientProxy::GeolocationClientProxy(WebGeolocationClient* client) argument
39 : m_client(client)
49 // We support there not being a client, provided we don't do any Geolocation.
51 // Ownership of the WebGeolocationController is transferred to the client.
H A DWebWorkerImpl.h52 explicit WebWorkerImpl(WebWorkerClient* client);
62 virtual WebWorkerClient* client() { return m_client; } function in class:WebKit::WebWorkerImpl
H A DWorkerAsyncFileWriterChromium.cpp53 WorkerAsyncFileWriterChromium::WorkerAsyncFileWriterChromium(WebFileSystem* webFileSystem, const String& path, WorkerContext* workerContext, AsyncFileWriterClient* client, WriterType type) argument
59 m_bridge = WorkerFileWriterCallbacksBridge::create(path, proxy, workerContext, client);
/external/smack/src/org/xbill/DNS/
H A DTCPClient.java114 TCPClient client = new TCPClient(endTime);
117 client.bind(local);
118 client.connect(remote);
119 client.send(data);
120 return client.recv();
123 client.cleanup();
H A DUDPClient.java145 UDPClient client = new UDPClient(endTime);
147 client.bind(local);
148 client.connect(remote);
149 client.send(data);
150 return client.recv(max);
153 client.cleanup();
/external/v8/test/cctest/
H A Dtest-sockets.cc39 Socket* client_; // Single client connection used by the test.
100 Socket* client = OS::CreateSocket(); local
101 CHECK(client != NULL);
102 ok = client->Connect(kLocalhost, port_str);
106 ok = SendAll(client, data, len);
117 // Close the client before the listener to avoid TIME_WAIT issues.
118 client->Shutdown();
119 delete client;
/external/valgrind/main/memcheck/tests/
H A Ddw4.stderr.exp1 Uninitialised byte(s) found during client check request
8 Uninitialised byte(s) found during client check request
14 Uninitialised byte(s) found during client check request
/external/webkit/Source/WebCore/platform/win/
H A DPopupMenuWin.cpp90 PopupMenuWin::PopupMenuWin(PopupMenuClient* client) argument
91 : m_popupClient(client)
136 if (!m_scrollbar && visibleItems() < client()->listSize()) {
138 m_scrollbar = client()->createScrollbar(this, VerticalScrollbar, SmallScrollbar);
180 if (client()) {
181 int index = client()->selectedIndex();
224 // These mouse messages use client coordinates so we need to convert them.
285 if (client())
286 client()->popupDidHide();
307 int itemCount = client()
[all...]
/external/webkit/Source/WebCore/platform/gtk/
H A DPopupMenuGtk.cpp43 PopupMenuGtk::PopupMenuGtk(PopupMenuClient* client) argument
44 : m_popupClient(client)
60 ASSERT(client());
78 const int size = client()->listSize();
81 if (client()->itemIsSeparator(i))
84 item = gtk_menu_item_new_with_label(client()->itemText(i).utf8().data());
90 // FIXME: Apply the PopupMenuStyle from client()->itemStyle(i)
91 gtk_widget_set_sensitive(item, client()->itemIsEnabled(i));
145 client()->setTextFromItem(client()
[all...]
/external/apache-http/src/org/apache/http/client/entity/
H A DUrlEncodedFormEntity.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/client/entity/UrlEncodedFormEntity.java $
31 package org.apache.http.client.entity;
36 import org.apache.http.client.utils.URLEncodedUtils;
/external/apache-http/src/org/apache/http/client/methods/
H A DHttpEntityEnclosingRequestBase.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/client/methods/HttpEntityEnclosingRequestBase.java $
32 package org.apache.http.client.methods;
37 import org.apache.http.client.utils.CloneUtils;
/external/apache-http/src/org/apache/http/client/protocol/
H A DRequestDefaultHeaders.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/client/protocol/RequestDefaultHeaders.java $
32 package org.apache.http.client.protocol;
41 import org.apache.http.client.params.ClientPNames;
/external/chromium/third_party/libjingle/source/talk/examples/call/
H A Dpresencepushtask.h43 PresencePushTask(Task * parent, CallClient* client) argument
45 client_(client) {}
/external/chromium/webkit/glue/
H A Dwebsocketstreamhandle_impl.cc31 WebKit::WebSocketStreamHandleClient* client() const { return client_; } function in class:webkit_glue::WebSocketStreamHandleImpl::Context
32 void set_client(WebKit::WebSocketStreamHandleClient* client) { argument
33 client_ = client;
132 WebKit::WebSocketStreamHandleClient* client = client_; local
134 client->didClose(handle);
153 const WebKit::WebURL& url, WebKit::WebSocketStreamHandleClient* client) {
155 DCHECK(!context_->client());
156 context_->set_client(client);
152 connect( const WebKit::WebURL& url, WebKit::WebSocketStreamHandleClient* client) argument
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
H A DSCPOutputStream.java24 public SCPOutputStream(SCPClient client, Session session, final String remoteFile, long length, String mode) throws IOException argument
28 this.scp = client;
/external/webkit/Source/WebCore/history/
H A DBackForwardController.cpp35 BackForwardController::BackForwardController(Page* page, PassRefPtr<BackForwardList> client) argument
37 , m_client(client)
/external/webkit/Source/WebCore/platform/network/brew/
H A DSocketStreamHandle.h49 static PassRefPtr<SocketStreamHandle> create(const KURL& url, SocketStreamHandleClient* client) { return adoptRef(new SocketStreamHandle(url, client)); } argument
/external/webkit/Source/WebCore/platform/network/chromium/
H A DSocketStreamHandle.h49 static PassRefPtr<SocketStreamHandle> create(const KURL& url, SocketStreamHandleClient* client) { return adoptRef(new SocketStreamHandle(url, client)); } argument
/external/webkit/Source/WebCore/platform/network/curl/
H A DSocketStreamHandle.h48 static PassRefPtr<SocketStreamHandle> create(const KURL& url, SocketStreamHandleClient* client) { return adoptRef(new SocketStreamHandle(url, client)); } argument
/external/webkit/Source/WebCore/platform/network/qt/
H A DSocketStreamHandle.h54 static PassRefPtr<SocketStreamHandle> create(const KURL& url, SocketStreamHandleClient* client) { return adoptRef(new SocketStreamHandle(url, client)); } argument
/external/webkit/Source/WebCore/platform/network/win/
H A DSocketStreamHandle.h48 static PassRefPtr<SocketStreamHandle> create(const KURL& url, SocketStreamHandleClient* client) { return adoptRef(new SocketStreamHandle(url, client)); } argument
/external/webkit/Source/WebKit/android/jni/
H A DWebIconDatabase.h59 static void RegisterForIconNotification(WebIconDatabaseClient* client);
60 static void UnregisterForIconNotification(WebIconDatabaseClient* client);
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DPopupMenuQt.cpp62 WebCore::ListPopupMenuClient* client = static_cast<WebCore::ListPopupMenuClient*>(d);
63 return client && client->multiple();
83 PopupMenuQt::PopupMenuQt(PopupMenuClient* client, const ChromeClientQt* chromeClient) argument
84 : m_popupClient(client)
152 ListPopupMenuClient* client = static_cast<ListPopupMenuClient*>(m_popupClient);
153 if (client) {
154 client->listBoxSelectItem(index, ctrl, shift);

Completed in 614 milliseconds

1234567891011>>