Searched refs:launch (Results 1 - 25 of 50) sorted by relevance

12

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
H A DILaunchController.java17 package com.android.ide.eclipse.adt.internal.launch;
29 * @param launchInfo the {@link DelayedLaunchInfo} that indicates the launch action
30 * @param device the device or emulator to launch the application on
35 * Cancels a launch
H A DLaunchShortcut.java17 package com.android.ide.eclipse.adt.internal.launch;
35 * Launch shortcut to launch debug/run configuration directly.
41 * @see org.eclipse.debug.ui.ILaunchShortcut#launch(
45 public void launch(ISelection selection, String mode) { method in class:LaunchShortcut
69 // and launch
70 launch(project, mode);
79 * @see org.eclipse.debug.ui.ILaunchShortcut#launch(
83 public void launch(IEditorPart editor, String mode) { method in class:LaunchShortcut
91 * @param project The project to launch
92 * @param mode The launch mod
94 private void launch(IProject project, String mode) { method in class:LaunchShortcut
[all...]
H A DIAndroidLaunchAction.java17 package com.android.ide.eclipse.adt.internal.launch;
24 * An action to perform after performing a launch of an Android application
29 * Do the launch
31 * @param info the {@link DelayedLaunchInfo} that contains launch details
33 * @returns true if launch was successfully, and controller should wait for debugger to attach
39 * Return a description of launch, to be used for logging and error messages
H A DDelayedLaunchInfo.java17 package com.android.ide.eclipse.adt.internal.launch;
26 * A delayed launch waiting for a device to be present or ready before the
38 /** The device on which to launch the app */
64 /** the launch object */
73 /** current number of launch attempts */
76 /** cancellation state of launch */
89 * @param launch the launch object
90 * @param monitor progress monitor for launch
94 String requiredApiVersionNumber, AndroidLaunch launch, IProgressMonito
92 DelayedLaunchInfo(IProject project, String packageName, String debugPackageName, IAndroidLaunchAction launchAction, IFile pack, Boolean debuggable, String requiredApiVersionNumber, AndroidLaunch launch, IProgressMonitor monitor) argument
[all...]
H A DAndroidLaunch.java17 package com.android.ide.eclipse.adt.internal.launch;
42 /** Stops the launch, and removes it from the launch manager */
54 // remove the launch
H A DEmptyLaunchAction.java16 package com.android.ide.eclipse.adt.internal.launch;
24 * A launch action that does nothing after the application has been installed
41 // return false so launch controller will not wait for debugger to attach
H A DLaunchConfigTabGroup.java17 package com.android.ide.eclipse.adt.internal.launch;
H A DAvdCompatibility.java17 package com.android.ide.eclipse.adt.internal.launch;
H A DLaunchMessages.java17 package com.android.ide.eclipse.adt.internal.launch;
22 private static final String BUNDLE_NAME = "com.android.ide.eclipse.adt.internal.launch.messages"; //$NON-NLS-1$
H A Dmessages.properties23 AndroidJUnitLaunchAction_LaunchDesc_s=%1$s JUnit launch
24 AndroidJUnitLaunchAction_LaunchFail=Failed to launch test
26 AndroidJUnitDelegate_NoRunnerConfigMsg_s=Warning: No instrumentation runner found for the launch, using %1$s
H A DLaunchConfigDelegate.java17 package com.android.ide.eclipse.adt.internal.launch;
24 import com.android.ide.eclipse.adt.internal.launch.AndroidLaunchConfiguration.TargetMode;
41 * Implementation of an eclipse LauncConfigurationDelegate to launch android
58 /** Device on which the last launch happened. */
65 * <li>0: launch default activity</li>
66 * <li>1: launch specified activity. See {@link #ATTR_ACTIVITY}</li>
72 /** Default launch action. This launches the activity that is setup to be found in the HOME
80 /** Default launch action value. */
118 public void launch(ILaunchConfiguration configuration, String mode, argument
119 ILaunch launch, IProgressMonito
[all...]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/junit/
H A DAndroidJUnitLaunchAction.java16 package com.android.ide.eclipse.adt.internal.launch.junit;
20 import com.android.ide.eclipse.adt.internal.launch.DelayedLaunchInfo;
21 import com.android.ide.eclipse.adt.internal.launch.IAndroidLaunchAction;
22 import com.android.ide.eclipse.adt.internal.launch.LaunchMessages;
23 import com.android.ide.eclipse.adt.internal.launch.junit.runtime.AndroidJUnitLaunchInfo;
24 import com.android.ide.eclipse.adt.internal.launch.junit.runtime.RemoteAdtTestRunner;
43 * A launch action that executes a instrumentation test run on an Android device.
60 * Reuses JDT JUnit launch delegate so results can be communicated back to JDT JUnit UI.
79 junitDelegate.launch(info.getLaunch().getLaunchConfiguration(), mode, info.getLaunch(),
100 * Extends the JDT JUnit launch delegat
114 launch(ILaunchConfiguration configuration, String mode, ILaunch launch, IProgressMonitor monitor) argument
164 run(final VMRunnerConfiguration config, ILaunch launch, IProgressMonitor monitor) argument
[all...]
H A DAndroidJUnitTabGroup.java17 package com.android.ide.eclipse.adt.internal.launch.junit;
19 import com.android.ide.eclipse.adt.internal.launch.EmulatorConfigTab;
28 * Tab group object for Android JUnit launch configuration type.
H A DAndroidJUnitLaunchConfigDelegate.java17 package com.android.ide.eclipse.adt.internal.launch.junit;
25 import com.android.ide.eclipse.adt.internal.launch.AndroidLaunch;
26 import com.android.ide.eclipse.adt.internal.launch.AndroidLaunchConfiguration;
27 import com.android.ide.eclipse.adt.internal.launch.AndroidLaunchController;
28 import com.android.ide.eclipse.adt.internal.launch.IAndroidLaunchAction;
29 import com.android.ide.eclipse.adt.internal.launch.LaunchConfigDelegate;
30 import com.android.ide.eclipse.adt.internal.launch.LaunchMessages;
31 import com.android.ide.eclipse.adt.internal.launch.junit.runtime.AndroidJUnitLaunchInfo;
102 // launch on a separate thread if currently on the display thread
107 controller.launch(projec
[all...]
H A DAndroidJUnitLaunchShortcut.java17 package com.android.ide.eclipse.adt.internal.launch.junit;
25 * Launch shortcut to launch debug/run Android JUnit configuration directly.
35 * Creates a default Android JUnit launch configuration. Sets the instrumentation runner to the
49 // if a valid runner is not found, rely on launch delegate to log error.
50 // This method is called without explicit user action to launch Android JUnit, so avoid
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/junit/runtime/
H A DAndroidJUnitLaunchInfo.java16 package com.android.ide.eclipse.adt.internal.launch.junit.runtime;
28 * Contains info about Android JUnit launch
145 public void setLaunch(ILaunch launch) { argument
146 mLaunch = launch;
H A DAndroidTestReference.java17 package com.android.ide.eclipse.adt.internal.launch.junit.runtime;
H A DTestCaseReference.java17 package com.android.ide.eclipse.adt.internal.launch.junit.runtime;
/sdk/apps/NotificationStudio/src/com/android/notificationstudio/action/
H A DShareCodeAction.java26 public static void launch(Context context, CharSequence title) { method in class:ShareCodeAction
/sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/launch/
H A DNdkGdbLaunchConfigTabGroups.java17 package com.android.ide.eclipse.ndk.internal.launch;
H A DNdkMainLaunchConfigTab.java17 package com.android.ide.eclipse.ndk.internal.launch;
19 import com.android.ide.eclipse.adt.internal.launch.MainLaunchConfigTab;
H A DNdkGdbLaunchShortcut.java17 package com.android.ide.eclipse.ndk.internal.launch;
20 import com.android.ide.eclipse.adt.internal.launch.AndroidLaunchController;
43 public void launch(ISelection selection, String mode) { method in class:NdkGdbLaunchShortcut
83 public void launch(IEditorPart editor, String mode) { method in class:NdkGdbLaunchShortcut
94 // Set the ndk gdb specific launch attributes in the config (if necessary)
100 "Unable to create launch configuration for project.");
105 // launch
106 DebugUITools.launch(config, mode);
111 // All NDK launch configurations have ATTR_REMOTE_TCP set to true
H A DNdkLaunchConstants.java17 package com.android.ide.eclipse.ndk.internal.launch;
H A DNdkGdbLaunchDelegate.java17 package com.android.ide.eclipse.ndk.internal.launch;
35 import com.android.ide.eclipse.adt.internal.launch.AndroidLaunchController;
36 import com.android.ide.eclipse.adt.internal.launch.DeviceChooserDialog;
37 import com.android.ide.eclipse.adt.internal.launch.DeviceChooserDialog.DeviceChooserResponse;
38 import com.android.ide.eclipse.adt.internal.launch.LaunchConfigDelegate;
87 public void launch(ILaunchConfiguration config, String mode, ILaunch launch, argument
89 boolean launched = doLaunch(config, mode, launch, monitor);
91 if (launch.canTerminate()) {
92 launch
98 doLaunch(final ILaunchConfiguration config, String mode, ILaunch launch, IProgressMonitor monitor) argument
[all...]
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/launch/
H A DJUnitLaunchConfigDelegateTest.java17 package com.android.ide.eclipse.adt.internal.launch;
19 import com.android.ide.eclipse.adt.internal.launch.JUnitLaunchConfigDelegate;

Completed in 240 milliseconds

12