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

1234567891011>>

/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/chromium/src/
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/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);
/external/webkit/Source/WebKit2/Shared/mac/
H A DCoreAnimationRenderer.mm42 PassRefPtr<CoreAnimationRenderer> CoreAnimationRenderer::create(Client* client, CGLContextObj cglContextObj, CALayer *layer)
44 return adoptRef(new CoreAnimationRenderer(client, cglContextObj, layer));
47 CoreAnimationRenderer::CoreAnimationRenderer(Client* client, CGLContextObj cglContextObj, CALayer *layer)
48 : m_client(client)
/external/webkit/Source/WebKit2/UIProcess/Launcher/
H A DProcessLauncher.cpp40 ProcessLauncher::ProcessLauncher(Client* client, const LaunchOptions& launchOptions) argument
41 : m_client(client)
H A DThreadLauncher.h48 static PassRefPtr<ThreadLauncher> create(Client* client) argument
50 return adoptRef(new ThreadLauncher(client));
/external/webkit/Source/WebKit2/UIProcess/
H A DWebPopupMenuProxy.h68 WebPopupMenuProxy(Client* client) argument
69 : m_client(client)
/external/webkit/Source/WebKit2/UIProcess/mac/
H A DWebPopupMenuProxyMac.h41 static PassRefPtr<WebPopupMenuProxyMac> create(WKView *webView, WebPopupMenuProxy::Client* client) argument
43 return adoptRef(new WebPopupMenuProxyMac(webView, client));
/external/webkit/Source/WebKit2/UIProcess/win/
H A DWebTextChecker.cpp46 void WebTextChecker::setClient(const WKTextCheckerClient* client) argument
48 m_client.initialize(client);

Completed in 1426 milliseconds

1234567891011>>