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

1 2 3 4 5

  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_1.1.2.R36x_v20101019_1345/
launcher.gtk.linux.x86.properties 11 pluginName = Equinox Launcher Linux X86 Fragment
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.equinox.launcher.win32.win32.x86_1.1.2.R36x_v20101019_1345/
launcher.win32.win32.x86.properties 11 pluginName = Equinox Launcher Win32 X86 Fragment
  /external/chromium_org/ash/launcher/
launcher.cc 5 #include "ash/launcher/launcher.h"
11 #include "ash/launcher/launcher_delegate.h"
12 #include "ash/launcher/launcher_model.h"
13 #include "ash/launcher/launcher_navigator.h"
14 #include "ash/launcher/launcher_view.h"
41 const char Launcher::kNativeViewName[] = "LauncherView";
43 Launcher::Launcher(LauncherModel* launcher_model,
58 Launcher::~Launcher()
    [all...]
launcher.h 9 #include "ash/launcher/launcher_types.h"
45 class ASH_EXPORT Launcher {
49 Launcher(LauncherModel* launcher_model,
52 virtual ~Launcher();
54 // Return the launcher for the primary display. NULL if no user is
56 static Launcher* ForPrimaryDisplay();
58 // Return the launcher for the display that |window| is currently on,
59 // or a launcher on primary display if the launcher per display feature
61 static Launcher* ForWindow(aura::Window* window)
    [all...]
launcher_unittest.cc 5 #include "ash/launcher/launcher.h"
6 #include "ash/launcher/launcher_button.h"
7 #include "ash/launcher/launcher_model.h"
8 #include "ash/launcher/launcher_view.h"
35 Launcher* launcher = Launcher::ForPrimaryDisplay(); local
36 ASSERT_TRUE(launcher);
37 LauncherView* launcher_view = launcher->GetLauncherViewForTest()
61 Launcher* launcher = Launcher::ForPrimaryDisplay(); local
86 Launcher* launcher = Launcher::ForPrimaryDisplay(); local
    [all...]
launcher_delegate.h 9 #include "ash/launcher/launcher_types.h"
22 class Launcher;
38 // Delegate for the Launcher.
41 // Launcher owns the delegate.
44 // Invoked when the user clicks on a window entry in the launcher.
49 // handling might happen (PerApp launcher).
53 // Returns the title to display for the specified launcher item.
79 // Whether the given launcher item is draggable.
86 // depend on the Launcher being in a known state.
87 virtual void OnLauncherCreated(Launcher* launcher) = 0
    [all...]
  /packages/apps/Launcher2/tests/stress/src/com/android/launcher2/stress/
LauncherRotationStressTest.java 20 import com.android.launcher2.Launcher;
31 public class LauncherRotationStressTest extends ActivityInstrumentationTestCase2<Launcher> {
38 super(Launcher.class);
53 Launcher launcher = getActivity(); local
56 launcher.setRequestedOrientation(
60 launcher.setRequestedOrientation(
  /packages/apps/Launcher3/tests/stress/src/com/android/launcher3/stress/
LauncherRotationStressTest.java 20 import com.android.launcher3.Launcher;
31 public class LauncherRotationStressTest extends ActivityInstrumentationTestCase2<Launcher> {
38 super(Launcher.class);
53 Launcher launcher = getActivity(); local
56 launcher.setRequestedOrientation(
60 launcher.setRequestedOrientation(
  /external/chromium_org/chrome/browser/service/
service_process_control.h 106 class Launcher
107 : public base::RefCountedThreadSafe<ServiceProcessControl::Launcher> {
109 Launcher(ServiceProcessControl* process, CommandLine* cmd_line);
118 friend class base::RefCountedThreadSafe<ServiceProcessControl::Launcher>;
119 virtual ~Launcher();
147 // Method called by Launcher when the service process is launched.
161 // Service process launcher.
162 scoped_refptr<Launcher> launcher_;
service_process_control.cc 150 launcher_ = new Launcher(this, cmd_line);
172 // We don't need the launcher anymore.
254 ServiceProcessControl::Launcher::Launcher(ServiceProcessControl* process,
265 void ServiceProcessControl::Launcher::Run(const base::Closure& task) {
269 base::Bind(&Launcher::DoRun, this));
272 ServiceProcessControl::Launcher::~Launcher() {}
274 void ServiceProcessControl::Launcher::Notify() {
281 void ServiceProcessControl::Launcher::DoDetectLaunched()
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
LauncherAppWidgetHost.java 31 Launcher mLauncher;
33 public LauncherAppWidgetHost(Launcher launcher, int hostId) {
34 super(launcher, hostId);
35 mLauncher = launcher;
LauncherAppWidgetInfo.java 24 * Represents a widget (either instantiated or about to be) in the Launcher.
49 * until Launcher knows it's needed.
74 void onBindAppWidget(Launcher launcher) {
76 notifyWidgetSizeChanged(launcher);
83 void notifyWidgetSizeChanged(Launcher launcher) {
84 AppWidgetResizeFrame.updateWidgetSizeRanges(hostView, launcher, spanX, spanY);
SpringLoadedDragController.java 29 private Launcher mLauncher;
31 public SpringLoadedDragController(Launcher launcher) {
32 mLauncher = launcher;
DropTarget.java 74 Launcher launcher = (Launcher) context; local
75 launcher.getDragController().addDragListener(this);
  /packages/apps/Launcher3/src/com/android/launcher3/
LauncherAppWidgetHost.java 31 Launcher mLauncher;
33 public LauncherAppWidgetHost(Launcher launcher, int hostId) {
34 super(launcher, hostId);
35 mLauncher = launcher;
SpringLoadedDragController.java 29 private Launcher mLauncher;
31 public SpringLoadedDragController(Launcher launcher) {
32 mLauncher = launcher;
  /external/chromium/chrome/browser/service/
service_process_control.h 135 class Launcher
136 : public base::RefCountedThreadSafe<ServiceProcessControl::Launcher> {
138 Launcher(ServiceProcessControl* process, CommandLine* cmd_line);
147 friend class base::RefCountedThreadSafe<ServiceProcessControl::Launcher>;
148 virtual ~Launcher();
168 // Method called by Launcher when the service process is launched.
181 // Service process launcher.
182 scoped_refptr<Launcher> launcher_;
service_process_control.cc 167 launcher_ = new Launcher(this, cmd_line);
184 // We don't need the launcher anymore.
311 ServiceProcessControl::Launcher::Launcher(ServiceProcessControl* process,
322 void ServiceProcessControl::Launcher::Run(Task* task) {
326 NewRunnableMethod(this, &Launcher::DoRun));
329 ServiceProcessControl::Launcher::~Launcher() {}
331 void ServiceProcessControl::Launcher::Notify() {
338 void ServiceProcessControl::Launcher::DoDetectLaunched()
    [all...]
  /external/chromium_org/ash/shelf/
shelf_widget.h 19 class Launcher;
53 Launcher* launcher() const { return launcher_.get(); } function in class:ash::ShelfWidget
60 // Set visibility of the launcher component of the shelf.
64 // Sets the focus cycler. Also adds the launcher to the cycle.
68 // Called by the activation delegate, before the launcher is activated
102 scoped_ptr<Launcher> launcher_;
shelf_widget_unittest.cc 7 #include "ash/launcher/launcher.h"
8 #include "ash/launcher/launcher_button.h"
9 #include "ash/launcher/launcher_model.h"
10 #include "ash/launcher/launcher_view.h"
29 return Launcher::ForPrimaryDisplay()->shelf_widget();
40 // Launcher can't be activated on mouse click, but it is activable from
47 Launcher* launcher = Launcher::ForPrimaryDisplay()
68 Launcher* launcher = Launcher::ForPrimaryDisplay(); local
135 Launcher* launcher = shelf_widget->launcher(); local
183 Launcher* launcher = shelf->launcher(); local
    [all...]
  /external/chromium_org/ash/wm/dock/
docked_window_layout_manager.h 37 class Launcher;
78 // when launcher (shelf) is aligned on the same side.
82 ash::Launcher* launcher() { return launcher_; } function in class:ash::internal::DockedWindowLayoutManager
83 void SetLauncher(ash::Launcher* launcher);
170 // The launcher we are observing for launcher icon changes.
171 Launcher* launcher_;
  /external/chromium_org/ash/wm/panels/
panel_layout_manager.h 12 #include "ash/launcher/launcher_icon_observer.h"
38 class Launcher;
74 ash::Launcher* launcher() { return launcher_; } function in class:ash::internal::PanelLayoutManager
75 void SetLauncher(ash::Launcher* launcher);
168 // The launcher we are observing for launcher icon changes.
169 Launcher* launcher_;
  /external/chromium_org/ash/
dip_unittest.cc 9 #include "ash/launcher/launcher.h"
63 // the launcher's height.
64 Launcher* launcher = Launcher::ForPrimaryDisplay(); local
67 launcher->shelf_widget()->GetNativeView()->layer()->bounds().height());
  /external/chromium_org/ash/shell/
launcher_delegate_impl.cc 7 #include "ash/launcher/launcher_util.h"
61 void LauncherDelegateImpl::OnLauncherCreated(Launcher* launcher) {
64 void LauncherDelegateImpl::OnLauncherDestroyed(Launcher* launcher) {
launcher_delegate_impl.h 8 #include "ash/launcher/launcher_delegate.h"
40 virtual void OnLauncherCreated(Launcher* launcher) OVERRIDE;
41 virtual void OnLauncherDestroyed(Launcher* launcher) OVERRIDE;
49 // Used to update Launcher. Owned by main.

Completed in 248 milliseconds

1 2 3 4 5