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

1 2 3

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
IAndroidLaunchAction.java 17 package com.android.ide.eclipse.adt.internal.launch;
20 import com.android.ide.eclipse.adt.internal.launch.DelayedLaunchInfo;
23 * An action to perform after performing a launch of an Android application
28 * Do the launch
30 * @param info the {@link DelayedLaunchInfo} that contains launch details
32 * @returns true if launch was successfully, and controller should wait for debugger to attach
38 * Return a description of launch, to be used for logging and error messages
ILaunchController.java 17 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
LaunchShortcut.java 17 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(
44 public void launch(ISelection selection, String mode) { method in class:LaunchShortcut
65 "Android Launch",
68 // and launch
69 launch(project, mode); method
78 * @see org.eclipse.debug.ui.ILaunchShortcut#launch(
81 public void launch(IEditorPart editor, String mode) method in class:LaunchShortcut
92 private void launch(IProject project, String mode) { method in class:LaunchShortcut
    [all...]
EmptyLaunchAction.java 16 package com.android.ide.eclipse.adt.internal.launch;
22 * A launch action that does nothing after the application has been installed
31 // return false so launch controller will not wait for debugger to attach
messages.properties 18 LaunchDialogTitle=Android Launch
23 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
DelayedLaunchInfo.java 17 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 */
61 /** Launch action. */
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
    [all...]
AndroidLaunch.java 17 package com.android.ide.eclipse.adt.internal.launch;
22 import org.eclipse.debug.core.Launch;
26 * Custom implementation of Launch to allow access to the LaunchManager
29 public class AndroidLaunch extends Launch {
42 /** Stops the launch, and removes it from the launch manager */
54 // remove the launch
LaunchConfigTabGroup.java 17 package com.android.ide.eclipse.adt.internal.launch;
25 * Tab group object for Android Launch Config type.
LaunchMessages.java 17 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$
LaunchConfigDelegate.java 17 package com.android.ide.eclipse.adt.internal.launch;
22 import com.android.ide.eclipse.adt.internal.launch.AndroidLaunchConfiguration.TargetMode;
43 * Implementation of an eclipse LauncConfigurationDelegate to launch android
57 * Launch action:
59 * <li>0: launch default activity</li>
60 * <li>1: launch specified activity. See {@link #ATTR_ACTIVITY}</li>
66 /** Default launch action. This launches the activity that is setup to be found in the HOME
70 /** Launch action starting a specific activity. */
72 /** Launch action that does nothing. */
74 /** Default launch action value. *
111 public void launch(ILaunchConfiguration configuration, String mode, method in class:LaunchConfigDelegate
    [all...]
ActivityLaunchAction.java 17 package com.android.ide.eclipse.adt.internal.launch;
38 * @param activity fully qualified activity name to launch
39 * @param controller the {@link ILaunchController} that performs launch
49 * @param info the {@link DelayedLaunchInfo} that contains launch details
70 // increment launch attempt count, to handle retries and timeouts
73 // now we actually launch the app.
79 // stop the launch object, since there's no debug, and it can't
84 AdtPlugin.printErrorToConsole(info.getProject(), "Launch error: timeout");
88 "Launch error: adb rejected command: %1$s", e.getMessage()));
95 // something went wrong trying to launch the app
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/junit/
AndroidJUnitTabGroup.java 17 package com.android.ide.eclipse.adt.internal.launch.junit;
24 import com.android.ide.eclipse.adt.internal.launch.EmulatorConfigTab;
27 * Tab group object for Android JUnit launch configuration type.
AndroidJUnitLaunchAction.java 16 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;
40 * A launch action that executes a instrumentation test run on an Android device.
56 * Launch a instrumentation test run on given Android device.
57 * Reuses JDT JUnit launch delegate so results can be communicated back to JDT JUnit UI.
75 junitDelegate.launch(info.getLaunch().getLaunchConfiguration(), mode, info.getLaunch()
109 public synchronized void launch(ILaunchConfiguration configuration, String mode, method in class:AndroidJUnitLaunchAction.JUnitLaunchDelegate
    [all...]
AndroidJUnitLaunchConfigDelegate.java 17 package com.android.ide.eclipse.adt.internal.launch.junit;
21 import com.android.ide.eclipse.adt.internal.launch.AndroidLaunch;
22 import com.android.ide.eclipse.adt.internal.launch.AndroidLaunchConfiguration;
23 import com.android.ide.eclipse.adt.internal.launch.AndroidLaunchController;
24 import com.android.ide.eclipse.adt.internal.launch.IAndroidLaunchAction;
25 import com.android.ide.eclipse.adt.internal.launch.LaunchConfigDelegate;
26 import com.android.ide.eclipse.adt.internal.launch.LaunchMessages;
27 import com.android.ide.eclipse.adt.internal.launch.junit.runtime.AndroidJUnitLaunchInfo;
55 /** Launch config attribute that stores instrumentation runner. */
92 controller.launch(project, mode, applicationPackage, testAppPackage, targetAppPackage
    [all...]
AndroidJUnitLaunchShortcut.java 17 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
InstrumentationRunnerValidator.java 16 package com.android.ide.eclipse.adt.internal.launch.junit;
19 import com.android.ide.eclipse.adt.internal.launch.LaunchMessages;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/junit/runtime/
AndroidJUnitLaunchInfo.java 16 package com.android.ide.eclipse.adt.internal.launch.junit.runtime;
24 * Contains info about Android JUnit launch
132 public void setLaunch(ILaunch launch) {
133 mLaunch = launch;
AndroidTestReference.java 17 package com.android.ide.eclipse.adt.internal.launch.junit.runtime;
TestCaseReference.java 17 package com.android.ide.eclipse.adt.internal.launch.junit.runtime;
TestSuiteReference.java 17 package com.android.ide.eclipse.adt.internal.launch.junit.runtime;
TestCollector.java 17 package com.android.ide.eclipse.adt.internal.launch.junit.runtime;
  /development/simulator/wrapsim/
Android.mk 45 # Build instructions for simulator runtime launch wrapper.
52 LOCAL_MODULE := launch-wrapper
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/launch/
JUnitLaunchConfigDelegateTest.java 17 package com.android.ide.eclipse.adt.internal.launch;
19 import com.android.ide.eclipse.adt.internal.launch.JUnitLaunchConfigDelegate;
  /external/dbus/tools/
run-with-tmp-session-bus.sh 48 echo "Running $DBUS_TOP_BUILDDIR/tools/dbus-launch --sh-syntax --config-file=$CONFIG_FILE" >&2
51 eval `$DBUS_TOP_BUILDDIR/tools/dbus-launch --sh-syntax --config-file=$CONFIG_FILE`
54 die "Failed to launch message bus for test script to run"
  /libcore/luni/src/main/java/org/apache/xalan/extensions/
ExtensionNamespaceSupport.java 68 * Launch the ExtensionHandler that this ExtensionNamespaceSupport object defines.
70 public ExtensionHandler launch() method in class:ExtensionNamespaceSupport

Completed in 1481 milliseconds

1 2 3