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

1 2 3

  /external/chromium_org/ash/
cancel_mode.cc 14 Shell::RootWindowControllerList controllers(
16 for (Shell::RootWindowControllerList::const_iterator i = controllers.begin();
17 i != controllers.end(); ++i) {
shell.cc 386 RootWindowControllerList controllers = GetAllRootWindowControllers(); local
387 for (RootWindowControllerList::iterator iter = controllers.begin();
388 iter != controllers.end(); ++iter)
439 RootWindowControllerList controllers = GetAllRootWindowControllers(); local
440 for (RootWindowControllerList::iterator iter = controllers.begin();
441 iter != controllers.end(); ++iter)
461 RootWindowControllerList controllers = GetAllRootWindowControllers(); local
462 for (RootWindowControllerList::iterator iter = controllers.begin();
463 iter != controllers.end(); ++iter) {
471 RootWindowControllerList controllers = GetAllRootWindowControllers() local
495 RootWindowControllerList controllers = GetAllRootWindowControllers(); local
527 RootWindowControllerList controllers = GetAllRootWindowControllers(); local
544 RootWindowControllerList controllers = GetAllRootWindowControllers(); local
551 RootWindowControllerList controllers = GetAllRootWindowControllers(); local
1069 RootWindowControllerList controllers = GetAllRootWindowControllers(); local
1114 RootWindowControllerList controllers = GetAllRootWindowControllers(); local
    [all...]
root_window_controller_unittest.cc 465 Shell::RootWindowControllerList controllers = local
475 controllers[0]->GetRootWindow());
477 controllers[0]->GetRootWindow());
479 controllers[1]->GetRootWindow());
482 EXPECT_EQ(NULL, controllers[0]->GetWindowForFullscreenMode());
483 EXPECT_EQ(NULL, controllers[1]->GetWindowForFullscreenMode());
487 controllers[0]->GetWindowForFullscreenMode());
488 EXPECT_EQ(NULL, controllers[1]->GetWindowForFullscreenMode());
494 controllers[0]->GetWindowForFullscreenMode());
495 EXPECT_EQ(NULL, controllers[1]->GetWindowForFullscreenMode())
    [all...]
  /external/chromium_org/ash/test/
status_area_widget_test_helper.cc 27 Shell::RootWindowControllerList controllers = local
29 for (size_t i = 0; i < controllers.size(); ++i) {
30 if (controllers[i] != primary_controller)
31 return controllers[i]->shelf()->status_area_widget();
  /external/chromium_org/tools/profile_chrome/
profiler.py 13 def _StartTracing(controllers, interval):
14 for controller in controllers:
18 def _StopTracing(controllers):
19 for controller in controllers:
23 def _PullTraces(controllers, output, compress, write_json):
25 trace_files = [controller.PullTrace() for controller in controllers]
55 def CaptureProfile(controllers, interval, output=None, compress=False,
60 controllers: List of tracing controllers.
71 trace_type = ' + '.join(map(str, controllers))
    [all...]
profiler_unittest.py 67 controllers = [FakeController('c1'), FakeController('c2')]
68 result = profiler.CaptureProfile(controllers, 1, write_json=True)
76 [controllers[0].filename[1:], controllers[1].filename[1:]])
systrace_controller.py 8 from profile_chrome import controllers namespace
25 class SystraceController(controllers.BaseController):
27 controllers.BaseController.__init__(self)
chrome_controller.py 10 from profile_chrome import controllers namespace
18 class ChromeTracingController(controllers.BaseController):
21 controllers.BaseController.__init__(self)
perf_controller.py 12 from profile_chrome import controllers namespace
94 class PerfProfilerController(controllers.BaseController):
96 controllers.BaseController.__init__(self)
  /frameworks/base/services/core/java/com/android/server/job/
JobCompletedListener.java 19 import com.android.server.job.controllers.JobStatus;
StateChangedListener.java 19 import com.android.server.job.controllers.JobStatus;
22 * Interface through which a {@link com.android.server.job.controllers.StateController} informs
  /cts/tests/tests/media/src/android/media/cts/
MediaSessionManagerTest.java 38 List<MediaController> controllers = mSessionManager.getActiveSessions(null); local
58 public void onActiveSessionsChanged(List<MediaController> controllers) {
  /external/chromium_org/components/sync_driver/
data_type_manager_mock.h 25 MOCK_METHOD0(controllers, const DataTypeController::TypeMap&());
model_association_manager.h 52 ModelAssociationManager(const DataTypeController::TypeMap* controllers,
140 // Set of all registered controllers.
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/
repaint_overlay_unittest.py 7 from webkitpy.layout_tests.controllers import repaint_overlay
  /external/chromium_org/third_party/WebKit/Source/modules/geolocation/testing/
GeolocationClientMock.cpp 164 // Make a copy of the set of controllers since it might be modified while iterating.
165 GeolocationControllers controllers = m_controllers; local
168 for (GeolocationControllers::iterator it = controllers.begin(); it != controllers.end(); ++it)
171 for (GeolocationControllers::iterator it = controllers.begin(); it != controllers.end(); ++it)
  /frameworks/base/services/core/java/com/android/server/job/controllers/
StateController.java 17 package com.android.server.job.controllers;
27 * Incorporates shared controller logic between the various controllers of the JobManager.
44 * Also called when updating a task, so implementing controllers have to be aware of
  /frameworks/base/media/java/android/media/session/
MediaSessionManager.java 93 * Get a list of controllers for all ongoing sessions. The controllers will
105 * @return A list of controllers for ongoing sessions.
122 * @return A list of controllers for ongoing sessions.
127 ArrayList<MediaController> controllers = new ArrayList<MediaController>(); local
134 controllers.add(controller);
139 return controllers;
326 public void onActiveSessionsChanged(@Nullable List<MediaController> controllers);
345 ArrayList<MediaController> controllers
349 controllers.add(new MediaController(mContext, tokens.get(i)))
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/
print_layout_test_types.py 33 from webkitpy.layout_tests.controllers import layout_test_finder
  /external/chromium_org/chrome/browser/extensions/api/webrtc_audio_private/
webrtc_audio_private_api.h 139 controllers) OVERRIDE;
158 controllers) OVERRIDE;
webrtc_audio_private_api.cc 264 const RenderViewHost::AudioOutputControllerList& controllers) {
267 if (controllers.empty()) {
270 DVLOG(2) << "chrome.webrtcAudioPrivate.getActiveSink: No controllers.";
276 << controllers.size() << " controllers.";
281 (*controllers.begin())->GetOutputDeviceId(
325 const RenderViewHost::AudioOutputControllerList& controllers) {
328 controllers_ = controllers;
  /external/chromium_org/chrome/browser/sync/
profile_sync_components_factory.h 82 // type controllers and a DataTypeManagerObserver. The return pointer is
87 const sync_driver::DataTypeController::TypeMap* controllers,
  /external/chromium_org/ash/desktop_background/
desktop_background_controller.cc 231 Shell::RootWindowControllerList controllers = local
233 for (Shell::RootWindowControllerList::iterator iter = controllers.begin();
234 iter != controllers.end(); ++iter) {
  /external/chromium_org/ash/shelf/
shelf_widget_unittest.cc 151 Shell::RootWindowControllerList controllers(
153 for (Shell::RootWindowControllerList::const_iterator i = controllers.begin();
154 i != controllers.end();
  /external/chromium_org/ash/wm/maximize_mode/
maximize_mode_window_manager.cc 273 Shell::RootWindowControllerList controllers =
275 for (Shell::RootWindowControllerList::iterator iter = controllers.begin();
276 iter != controllers.end(); ++iter) {

Completed in 560 milliseconds

1 2 3