OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Launcher
(Results
1 - 15
of
15
) sorted by null
/external/chromium_org/ash/launcher/
launcher.h
9
#include "ash/
launcher
/launcher_types.h"
49
class ASH_EXPORT
Launcher
{
53
Launcher
(ShelfModel* model, ShelfDelegate* delegate, ShelfWidget* widget);
54
virtual ~
Launcher
();
56
// Return the
launcher
for the primary display. NULL if no user is
58
static
Launcher
* ForPrimaryDisplay();
60
// Return the
launcher
for the display that |window| is currently on,
61
// or a
launcher
on primary display if the
launcher
per display feature
63
static
Launcher
* ForWindow(aura::Window* window)
[
all
...]
launcher.cc
5
#include "ash/
launcher
/
launcher
.h"
43
const char
Launcher
::kNativeViewName[] = "ShelfView";
45
Launcher
::
Launcher
(ShelfModel* shelf_model,
60
Launcher
::~
Launcher
() {
65
Launcher
*
Launcher
::ForPrimaryDisplay() {
68
return shelf_widget ? shelf_widget->
launcher
() : NULL
[
all
...]
/frameworks/testing/uiautomator/cmds/uiautomator/src/com/android/commands/uiautomator/
Launcher.java
31
public class
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/chrome/browser/service_process/
service_process_control.cc
156
launcher_ = new
Launcher
(this, cmd_line);
182
// We don't need the
launcher
anymore.
328
ServiceProcessControl::
Launcher
::
Launcher
(ServiceProcessControl* process,
340
void ServiceProcessControl::
Launcher
::Run(const base::Closure& task) {
344
base::Bind(&
Launcher
::DoRun, this));
347
ServiceProcessControl::
Launcher
::~
Launcher
() {
352
void ServiceProcessControl::
Launcher
::Notify() {
358
void ServiceProcessControl::
Launcher
::CloseProcessHandle()
[
all
...]
service_process_control.h
132
class
Launcher
133
: public base::RefCountedThreadSafe<ServiceProcessControl::
Launcher
> {
135
Launcher
(ServiceProcessControl* process, CommandLine* cmd_line);
144
friend class base::RefCountedThreadSafe<ServiceProcessControl::
Launcher
>;
145
virtual ~
Launcher
();
183
// Method called by
Launcher
when the service process is launched.
197
// Service process
launcher
.
198
scoped_refptr<
Launcher
> launcher_;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-launcher.jar
/prebuilts/tools/common/m2/internal/org/apache/ant/ant-launcher/1.8.0/
ant-launcher-1.8.0.jar
/packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
PhotoTable.java
58
class
Launcher
implements Runnable {
84
private final
Launcher
mLauncher;
160
mLauncher = new
Launcher
();
[
all
...]
/packages/apps/Launcher3/src/com/android/launcher3/
LauncherProvider.java
70
private static final String TAG = "
Launcher
.LauncherProvider";
73
private static final String DATABASE_NAME = "
launcher
.db";
94
"com.android.
launcher
.action.APPWIDGET_DEFAULT_WORKSPACE_CONFIGURE";
375
mAppWidgetHost = new AppWidgetHost(context,
Launcher
.APPWIDGET_HOST_ID);
404
if (LOGD) Log.d(TAG, "creating new
launcher
database");
469
// Fresh and clean
launcher
DB.
501
// We rearrange the screens from the old
launcher
648
// - Sholes shipped on 2.1r1 (aka Mr. 3) with version 5 of
launcher
1
650
// which was version 6 in
launcher
2 (first shipped on passion 2.1r1).
715
// screen ids, redo the import from old
launcher
[
all
...]
LauncherModel.java
66
* Maintains in-memory state of the
Launcher
. It is expected that there should be only one
68
* for the
Launcher
.
72
static final String TAG = "
Launcher
.Model";
96
// clear all queued binding runnables when the
Launcher
activity is destroyed.
101
private static final HandlerThread sWorkerThread = new HandlerThread("
launcher
-loader");
230
boolean canMigrateFromOldLauncherDb(
Launcher
launcher
) {
231
return mOldContentProviderExists && !
launcher
.isLauncherPreinstalled() ;
287
// Update the
Launcher
db
[
all
...]
Launcher.java
118
* Default
launcher
application.
120
public class
Launcher
extends Activity
123
static final String TAG = "
Launcher
";
154
private static final String PREFERENCES = "
launcher
.preferences";
166
private static final String RUNTIME_STATE_CURRENT_SCREEN = "
launcher
.current_screen";
168
private static final String RUNTIME_STATE = "
launcher
.state";
170
private static final String RUNTIME_STATE_PENDING_ADD_CONTAINER = "
launcher
.add_container";
172
private static final String RUNTIME_STATE_PENDING_ADD_SCREEN = "
launcher
.add_screen";
174
private static final String RUNTIME_STATE_PENDING_ADD_CELL_X = "
launcher
.add_cell_x";
176
private static final String RUNTIME_STATE_PENDING_ADD_CELL_Y = "
launcher
.add_cell_y"
[
all
...]
Workspace.java
64
import com.android.launcher3.
Launcher
.CustomContentCallbacks;
81
private static final String TAG = "
Launcher
.Workspace";
168
private
Launcher
mLauncher;
311
mLauncher = (
Launcher
) context;
420
Launcher
.setScreen(mCurrentPage);
446
// Set the wallpaper dimensions when
Launcher
starts up
550
Launcher
.addDumpLog(TAG, "11683562 - insertNewWorkspaceScreen(): " + screenId +
654
Launcher
.addDumpLog(TAG, "11683562 - addExtraEmptyScreenOnDrag()", true);
683
Launcher
.addDumpLog(TAG, "11683562 - addExtraEmptyScreen()", true);
694
Launcher
.addDumpLog(TAG, "11683562 - convertFinalScreenToEmptyScreenIfNecessary()", true)
[
all
...]
/packages/apps/Launcher2/src/com/android/launcher2/
Launcher.java
99
import com.android.
launcher
.R;
118
* Default
launcher
application.
120
public final class
Launcher
extends Activity
123
static final String TAG = "
Launcher
";
151
private static final String PREFERENCES = "
launcher
.preferences";
159
"com.android.
launcher
.intent.extra.shortcut.INGORE_LAUNCH_ANIMATION";
162
private static final String RUNTIME_STATE_CURRENT_SCREEN = "
launcher
.current_screen";
164
private static final String RUNTIME_STATE = "
launcher
.state";
166
private static final String RUNTIME_STATE_PENDING_ADD_CONTAINER = "
launcher
.add_container";
168
private static final String RUNTIME_STATE_PENDING_ADD_SCREEN = "
launcher
.add_screen"
[
all
...]
Completed in 578 milliseconds