Searched defs:client (Results 251 - 275 of 1107) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/ui/aura/client/
H A Ddefault_capture_client.cc5 #include "ui/aura/client/default_capture_client.h"
12 namespace client { namespace in namespace:aura
58 } // namespace client
H A Dwindow_tree_client.cc5 #include "ui/aura/client/window_tree_client.h"
11 DECLARE_WINDOW_PROPERTY_TYPE(aura::client::WindowTreeClient*)
14 namespace client { namespace in namespace:aura
31 WindowTreeClient* client = local
33 DCHECK(client);
34 return client;
43 WindowTreeClient* client = GetWindowTreeClient(context); local
44 DCHECK(client);
46 client->GetDefaultParent(context, window, screen_bounds);
50 } // namespace client
[all...]
/external/chromium_org/ui/events/gesture_detection/
H A Dfiltered_gesture_provider.cc15 GestureProviderClient* client)
16 : client_(client),
13 FilteredGestureProvider( const GestureProvider::Config& config, GestureProviderClient* client) argument
/external/chromium_org/ui/views/widget/desktop_aura/
H A Ddesktop_window_tree_host.h18 namespace client { namespace in namespace:aura
70 virtual scoped_ptr<aura::client::DragDropClient> CreateDragDropClient(
/external/chromium_org/ui/wm/core/
H A Dshadow_controller.h18 namespace client { namespace in namespace:aura
35 public aura::client::ActivationChangeObserver {
50 explicit ShadowController(aura::client::ActivationClient* activation_client);
53 // aura::client::ActivationChangeObserver overrides:
60 aura::client::ActivationClient* activation_client_;
/external/chromium_org/ui/wm/public/
H A Ddispatcher_client.cc11 DECLARE_WINDOW_PROPERTY_TYPE(aura::client::DispatcherClient*);
14 namespace client { namespace in namespace:aura
16 DispatcherRunLoop::DispatcherRunLoop(DispatcherClient* client, argument
18 client->PrepareNestedLoopClosures(dispatcher, &run_closure_, &quit_closure_);
40 void SetDispatcherClient(Window* root_window, DispatcherClient* client) { argument
42 root_window->SetProperty(kDispatcherClientKey, client);
51 } // namespace client
H A Dtooltip_client.cc10 DECLARE_WINDOW_PROPERTY_TYPE(aura::client::TooltipClient*)
15 namespace client { namespace in namespace:aura
22 void SetTooltipClient(Window* root_window, TooltipClient* client) { argument
24 root_window->SetProperty(kRootWindowTooltipClientKey, client);
51 } // namespace client
H A Dwindow_move_client.h17 namespace client { namespace in namespace:aura
48 // Sets/Gets the activation client for the specified window.
50 WindowMoveClient* client);
53 } // namespace client
/external/chromium_org/ui/wm/test/
H A Dwm_test_helper.h10 #include "ui/aura/client/window_tree_client.h"
16 namespace client { namespace in namespace:aura
39 class WMTestHelper : public aura::client::WindowTreeClient {
47 // Overridden from client::WindowTreeClient:
56 scoped_ptr<aura::client::DefaultCaptureClient> capture_client_;
58 scoped_ptr<aura::client::FocusClient> focus_client_;
/external/mesa3d/src/mesa/drivers/dri/nouveau/
H A Dnouveau_scratch.c38 struct nouveau_client *client = context_client(ctx); local
54 nouveau_bo_map(*bo, NOUVEAU_BO_WR, client);
64 nouveau_bo_map(*bo, NOUVEAU_BO_WR, client);
/external/oauth/core/src/main/java/net/oauth/client/
H A DOAuthResponseMessage.java17 package net.oauth.client;
H A DURLConnectionResponse.java17 package net.oauth.client;
/external/oauth/core/src/main/java/net/oauth/client/httpclient4/
H A DHttpMethodResponse.java17 package net.oauth.client.httpclient4;
26 import net.oauth.client.ExcerptInputStream;
32 import org.apache.http.client.methods.HttpRequestBase;
/external/okhttp/benchmarks/src/main/java/com/squareup/okhttp/benchmarks/
H A DApacheHttpClient.java27 import org.apache.http.client.HttpClient;
28 import org.apache.http.client.methods.HttpGet;
32 import org.apache.http.impl.client.DefaultHttpClient;
35 /** Benchmark Apache HTTP client. */
39 private HttpClient client; field in class:ApacheHttpClient
49 client = new DefaultHttpClient(connectionManager);
66 HttpResponse response = client.execute(new HttpGet(url.toString()));
H A DOkHttp.java32 private OkHttpClient client; field in class:OkHttp
36 client = new OkHttpClient();
37 client.setProtocols(benchmark.protocols);
47 client.setSslSocketFactory(socketFactory);
48 client.setHostnameVerifier(hostnameVerifier);
66 HttpURLConnection urlConnection = client.open(url);
H A DOkHttpAsync.java40 private OkHttpClient client; field in class:OkHttpAsync
49 client = new OkHttpClient();
50 client.setProtocols(benchmark.protocols);
51 client.setDispatcher(new Dispatcher(new ThreadPoolExecutor(benchmark.concurrencyLevel,
62 client.setSslSocketFactory(socketFactory);
63 client.setHostnameVerifier(hostnameVerifier);
88 client.enqueue(new Request.Builder().tag(System.nanoTime()).url(url).build(), receiver);
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
H A DVariant.java29 * @param client true if this is the HTTP client's reader, reading frames from a server.
31 FrameReader newReader(BufferedSource source, boolean client); argument
34 * @param client true if this is the HTTP client's writer, writing frames to a server.
36 FrameWriter newWriter(BufferedSink sink, boolean client); argument
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
H A DDisconnectTest.java32 private final OkHttpClient client = new OkHttpClient(); field in class:DisconnectTest
41 HttpURLConnection connection = client.open(server.getUrl("/"));
68 HttpURLConnection connection = client.open(server.getUrl("/"));
H A DThreadInterruptTest.java33 private final OkHttpClient client = new OkHttpClient(); field in class:ThreadInterruptTest
44 HttpURLConnection connection = client.open(server.getUrl("/"));
71 HttpURLConnection connection = client.open(server.getUrl("/"));
/external/okhttp/samples/guide/src/main/java/com/squareup/okhttp/guide/
H A DGetExample.java11 OkHttpClient client = new OkHttpClient(); field in class:GetExample
19 HttpURLConnection connection = client.open(url);
/external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/org/apache/http/impl/client/
H A DHttpRedirect.java29 package com.xtremelabs.robolectric.tester.org.apache.http.impl.client;
33 import org.apache.http.client.methods.HttpGet;
34 import org.apache.http.client.methods.HttpHead;
35 import org.apache.http.client.methods.HttpRequestBase;
/external/smack/asmack-master/static-src/novell-openldap-jldap/com/novell/sasl/client/
H A DParsedDirective.java2 * $OpenLDAP: /com/novell/sasl/client/ParsedDirective.java,v 1.1 2003/08/21 10:06:26 kkanil Exp $
15 package com.novell.sasl.client;
/external/smack/src/com/novell/sasl/client/
H A DParsedDirective.java2 * $OpenLDAP: /com/novell/sasl/client/ParsedDirective.java,v 1.1 2003/08/21 10:06:26 kkanil Exp $
15 package com.novell.sasl.client;
/external/valgrind/main/none/tests/
H A Dfdleak_ipv4.c39 void client () function
83 client();
/external/zxing/qr_scanner/src/com/google/zxing/client/android/
H A DDecodeThread.java17 package com.google.zxing.client.android;

Completed in 4402 milliseconds

<<11121314151617181920>>