HomeSort by relevance Sort by last modified time
    Searched refs:clients (Results 1 - 25 of 110) sorted by null

1 2 3 4 5

  /external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
ServiceWorkerGlobalScopeClient.cpp 46 return static_cast<ServiceWorkerGlobalScopeClient*>(WillBeHeapSupplement<WorkerClients>::from(toWorkerGlobalScope(context)->clients(), supplementName()));
49 void provideServiceWorkerGlobalScopeClientToWorker(WorkerClients* clients, PassOwnPtrWillBeRawPtr<ServiceWorkerGlobalScopeClient> client)
51 clients->provideSupplement(ServiceWorkerGlobalScopeClient::supplementName(), client);
ServiceWorkerClients.cpp 27 HeapVector<Member<ServiceWorkerClient> > clients; local
29 clients.append(ServiceWorkerClient::create(webClients->clientIDs[i]));
31 return clients;
ServiceWorkerContainerClient.cpp 48 return static_cast<ServiceWorkerContainerClient*>(WillBeHeapSupplement<WorkerClients>::from(toWorkerGlobalScope(context)->clients(), supplementName()));
56 void provideServiceWorkerContainerClientToWorker(WorkerClients* clients, PassOwnPtr<WebServiceWorkerProvider> provider)
58 clients->provideSupplement(ServiceWorkerContainerClient::supplementName(), ServiceWorkerContainerClient::create(provider));
ServiceWorkerGlobalScope.idl 38 readonly attribute ServiceWorkerClients clients;
  /external/chromium_org/android_webview/browser/
global_tile_manager_unittest.cc 59 MockGlobalTileManagerClient clients[2]; local
62 manager()->RequestTiles(clients[i].GetTileRequest(), clients[i].GetKey());
63 manager()->DidUse(clients[i].GetKey());
65 // Ensure clients get what they asked for when the manager is under tile
67 EXPECT_EQ(clients[i].GetMemoryPolicy().num_resources_limit,
73 MockGlobalTileManagerClient clients[4]; local
76 manager()->RequestTiles(clients[i].GetTileRequest(), clients[i].GetKey());
77 manager()->DidUse(clients[i].GetKey())
91 MockGlobalTileManagerClient clients[100]; local
119 MockGlobalTileManagerClient clients[10]; local
137 MockGlobalTileManagerClient clients[20]; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WorkerPermissionClient.cpp 72 WorkerClients* clients = toWorkerGlobalScope(context).clients(); local
73 ASSERT(clients);
74 return static_cast<WorkerPermissionClient*>(WillBeHeapSupplement<WorkerClients>::from(*clients, supplementName()));
82 void providePermissionClientToWorker(WorkerClients* clients, PassOwnPtr<WebWorkerPermissionClientProxy> proxy)
84 ASSERT(clients);
85 WorkerPermissionClient::provideTo(*clients, WorkerPermissionClient::supplementName(), WorkerPermissionClient::create(proxy));
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSCanvasValue.cpp 54 RenderObjectSizeCountMap::const_iterator end = clients().end();
55 for (RenderObjectSizeCountMap::const_iterator curr = clients().begin(); curr != end; ++curr)
61 RenderObjectSizeCountMap::const_iterator end = clients().end();
62 for (RenderObjectSizeCountMap::const_iterator curr = clients().begin(); curr != end; ++curr)
92 ASSERT(clients().contains(renderer));
CSSFontSelector.cpp 83 WillBeHeapVector<RawPtrWillBeMember<CSSFontSelectorClient> > clients; local
84 copyToVector(m_clients, clients);
85 for (size_t i = 0; i < clients.size(); ++i)
86 clients[i]->fontsNeedUpdate(this);
CSSImageGeneratorValue.h 76 const RenderObjectSizeCountMap& clients() const { return m_clients; } function in class:blink::CSSImageGeneratorValue
85 // there are clients in the RenderObjectSizeCountMap.
  /external/chromium_org/chrome/browser/sync/test/integration/performance/
sync_timing_helper.h 32 // Returns the time taken for all clients in |clients| to complete their
35 std::vector<ProfileSyncServiceHarness*>& clients);
passwords_sync_perf_test.cc 86 base::TimeDelta dt = SyncTimingHelper::TimeUntilQuiescence(clients());
92 dt = SyncTimingHelper::TimeUntilQuiescence(clients());
98 dt = SyncTimingHelper::TimeUntilQuiescence(clients());
sync_timing_helper.cc 37 std::vector<ProfileSyncServiceHarness*>& clients) {
39 EXPECT_TRUE(ProfileSyncServiceHarness::AwaitQuiescence(clients));
  /external/chromium_org/chrome/browser/extensions/api/push_messaging/
sync_setup_helper.cc 42 // Because clients may modify sync data as part of startup (for example local
44 // changes have propagated between the clients.
78 std::vector<ProfileSyncServiceHarness*> clients; local
79 clients.push_back(client_.get());
80 return ProfileSyncServiceHarness::AwaitQuiescence(clients);
  /libcore/support/src/test/java/tests/net/
StuckServer.java 34 private ArrayList<Socket> clients = new ArrayList<Socket>(); field in class:StuckServer
53 clients.add(client);
81 for (Socket client : clients) {
  /external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/server/
main.cc 94 PeerChannel clients; local
118 ChannelMember* member = clients.Lookup(s);
122 clients.AddMember(s);
133 ChannelMember* target = clients.IsTargetedRequest(s);
151 clients.CloseAll();
161 clients.OnClosing(s);
171 clients.CheckForTimeout();
  /external/chromium_org/content/browser/renderer_host/media/
video_capture_controller.h 17 // out to multiple clients.
18 // * Keeping track of the clients on behalf of the VideoCaptureManager, making
20 // there are no clients left.
35 // * A VideoCaptureController interacts with its clients (VideoCaptureHosts)
43 // clients.
106 // Return the number of clients that aren't paused.
141 // Find a client of |id| and |handler| in |clients|.
145 const ControllerClients& clients);
147 // Find a client of |session_id| in |clients|.
150 const ControllerClients& clients);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/
FontCache.cpp 240 DEFINE_STATIC_LOCAL(OwnPtrWillBePersistent<WillBeHeapHashSet<RawPtrWillBeWeakMember<FontCacheClient> > >, clients, (adoptPtrWillBeNoop(new WillBeHeapHashSet<RawPtrWillBeWeakMember<FontCacheClient> >())));
242 return *clients;
280 WillBeHeapVector<RefPtrWillBeMember<FontCacheClient> > clients; local
282 clients.reserveInitialCapacity(numClients);
285 clients.append(*it);
287 ASSERT(numClients == clients.size());
289 clients[i]->fontCacheInvalidated();
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/checks/
ContextTrackingValidationCheck.java 16 private final List<ContextTrackingChecker> clients = new ArrayList<>(5); field in class:ContextTrackingValidationCheck
61 this.clients.add(client);
66 for (ContextTrackingChecker client : clients) {
72 for (ContextTrackingChecker client : clients) {
  /external/chromium_org/chrome/browser/resources/cryptotoken/
hidgnubbydevice.js 25 this.clients = [];
49 // Synthesize a close error frame to alert all clients,
59 // Set all clients to closed status and remove them.
60 while (this.clients.length != 0) {
61 var client = this.clients.shift();
85 * Push frame to all clients.
90 var old = this.clients;
105 if (changes) this.clients = remaining;
113 for (var i = 0; i < this.clients.length; ++i) {
114 if (this.clients[i] === who) return; // Already registered
    [all...]
usbgnubbydevice.js 29 this.clients = [];
55 // Synthesize a close error frame to alert all clients,
65 // Set all clients to closed status and remove them.
66 while (this.clients.length != 0) {
67 var client = this.clients.shift();
100 * Push frame to all clients.
105 var old = this.clients;
120 if (changes) this.clients = remaining;
192 for (var i = 0; i < this.clients.length; ++i) {
193 if (this.clients[i] === who) return; // Already registered
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
IntRangeManager.java 23 * Clients can enable reception of SMS-CB messages for specific ranges of
35 * Clients are identified by String (the name associated with the User ID
42 * Initial capacity for IntRange clients array list. There will be
48 * One or more clients forming the continuous range [startId, endId].
107 * to the clients array list directly, instead of via this method.
109 * number of clients grows large enough that it would make a difference.
446 // search for it in the clients list
447 ArrayList<ClientRange> clients = range.mClients; local
450 int crLength = clients.size();
452 ClientRange cr = clients.get(0)
    [all...]
  /external/chromium_org/content/test/data/workers/
worker_common.js 1 // Track the number of clients for this worker - tests can use this to ensure
  /external/chromium_org/chrome/browser/sync/test/integration/
multiple_client_sessions_sync_test.cc 45 // Open tabs on all clients and retain window information.
53 // Get foreign session data from all clients and check it against all
69 // Enable encryption on client 0, should propagate to all other clients.
76 ASSERT_TRUE(GetClient(0)->AwaitGroupSyncCycleCompletion(clients()));
78 // Open tabs on all clients and retain window information.
86 // Get foreign session data from all clients and check it against all
profile_sync_service_harness.h 23 // several clients to get to the same state.
61 // Blocks the caller until every client in |clients| completes its ongoing
62 // sync cycle and all the clients' progress markers match. Note: Use this
66 std::vector<ProfileSyncServiceHarness*>& clients);
  /external/chromium_org/remoting/webapp/
paired_client_manager.js 7 * Dialog for showing the list of clients that are paired with this host.
118 * clients.
120 * the user that clients are paired and containing the link to open the
126 * when all clients have been deleted.
181 * Populate the dialog with the list of paired clients and show or hide the
184 * @param {*} pairedClients The list of paired clients as returned by the
202 // Show or hide the "this computer has paired clients" message.
258 * Delete all paired clients.

Completed in 1140 milliseconds

1 2 3 4 5