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

1 2 3 4 5 6 7 8 910

  /external/libcxx/test/thread/futures/futures.overview/
launch.pass.cpp 12 // enum class launch
25 static_assert(static_cast<int>(std::launch::any) ==
26 (static_cast<int>(std::launch::async) | static_cast<int>(std::launch::deferred)), "");
28 static_assert(std::launch::any == (std::launch::async | std::launch::deferred), "");
29 static_assert(std::launch(0) == (std::launch::async & std::launch::deferred), "")
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/futures/futures.overview/
launch.pass.cpp 12 // enum class launch
25 static_assert(static_cast<int>(std::launch::any) ==
26 (static_cast<int>(std::launch::async) | static_cast<int>(std::launch::deferred)), "");
28 static_assert(std::launch::any == (std::launch::async | std::launch::deferred), "");
29 static_assert(std::launch(0) == (std::launch::async & std::launch::deferred), "")
    [all...]
  /developers/build/prebuilts/gradle/AppRestrictionEnforcer/Application/src/main/java/com/example/android/apprestrictionenforcer/
EnforcerDeviceAdminReceiver.java 38 Intent launch = new Intent(context, EnableProfileActivity.class); local
39 launch.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
40 context.startActivity(launch);
  /developers/build/prebuilts/gradle/BasicManagedProfile/Application/src/main/java/com/example/android/basicmanagedprofile/
BasicDeviceAdminReceiver.java 38 Intent launch = new Intent(context, EnableProfileActivity.class); local
39 launch.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
40 context.startActivity(launch);
  /developers/samples/android/admin/AppRestrictionEnforcer/Application/src/main/java/com/example/android/apprestrictionenforcer/
EnforcerDeviceAdminReceiver.java 38 Intent launch = new Intent(context, EnableProfileActivity.class); local
39 launch.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
40 context.startActivity(launch);
  /developers/samples/android/admin/BasicManagedProfile/Application/src/main/java/com/example/android/basicmanagedprofile/
BasicDeviceAdminReceiver.java 38 Intent launch = new Intent(context, EnableProfileActivity.class); local
39 launch.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
40 context.startActivity(launch);
  /development/samples/browseable/AppRestrictionEnforcer/src/com.example.android.apprestrictionenforcer/
EnforcerDeviceAdminReceiver.java 38 Intent launch = new Intent(context, EnableProfileActivity.class); local
39 launch.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
40 context.startActivity(launch);
  /development/samples/browseable/BasicManagedProfile/src/com.example.android.basicmanagedprofile/
BasicDeviceAdminReceiver.java 38 Intent launch = new Intent(context, EnableProfileActivity.class); local
39 launch.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
40 context.startActivity(launch);
  /external/deqp/android/scripts/
launch.py 10 def launch (extraArgs = ""): function
31 launch(string.join(sys.argv[1:], " "))
33 launch()
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
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(
45 public void launch(ISelection selection, String mode) { method in class:LaunchShortcut
66 "Android Launch",
69 // and launch
70 launch(project, mode); method
79 * @see org.eclipse.debug.ui.ILaunchShortcut#launch(
83 public void launch(IEditorPart editor, String mode) method in class:LaunchShortcut
94 private void launch(IProject project, String mode) { method in class:LaunchShortcut
    [all...]
IAndroidLaunchAction.java 17 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
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...]
  /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/repository/org/apache/ant/ant-launcher/1.8.0/
ant-launcher-1.8.0.jar 
  /prebuilts/tools/common/m2/repository/org/apache/ant/ant-launcher/1.8.2/
ant-launcher-1.8.2.jar 
  /external/chromium_org/base/mac/
launchd.h 8 #include <launch.h>
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/junit/
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;
43 * A launch action that executes a instrumentation test run on an Android device.
59 * Launch a instrumentation test run on given Android devices.
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()
114 public synchronized void launch(ILaunchConfiguration configuration, String mode, method in class:AndroidJUnitLaunchAction.JUnitLaunchDelegate
    [all...]
AndroidJUnitTabGroup.java 17 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.
  /external/chromium_org/chrome/browser/
browser_process_platform_part_aurawin.cc 42 // either connect to an existing viewer or launch a new viewer and
45 bool launch = command_line.HasSwitch(switches::kViewerLaunchViaAppId); local
46 bool connect = (launch ||
53 if (launch) {
  /system/core/logd/tests/
logd_test.cpp 298 // Find launch point
299 unsigned short launch = 0; local
302 total += times[launch];
303 } while (((++launch < number_of_buckets)
304 && ((total / launch) >= (times[launch] / 8ULL)))
305 || (launch == 1)); // too soon
307 bool failure = number_of_buckets <= launch;
309 unsigned short l = launch;
326 if (number_of_buckets <= launch) {
    [all...]
  /external/libcxx/test/thread/futures/futures.async/
async.pass.cpp 18 // async(launch policy, F&& f, Args&&... args);
75 std::future<int> f = std::async(std::launch::async, f0);
83 std::future<int> f = std::async(std::launch::any, f0);
91 std::future<int> f = std::async(std::launch::deferred, f0);
108 std::future<int&> f = std::async(std::launch::async, f1);
116 std::future<int&> f = std::async(std::launch::any, f1);
124 std::future<int&> f = std::async(std::launch::deferred, f1);
141 std::future<void> f = std::async(std::launch::async, f2);
149 std::future<void> f = std::async(std::launch::any, f2);
157 std::future<void> f = std::async(std::launch::deferred, f2)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/futures/futures.async/
async.pass.cpp 18 // async(launch policy, F&& f, Args&&... args);
75 std::future<int> f = std::async(std::launch::async, f0);
83 std::future<int> f = std::async(std::launch::any, f0);
91 std::future<int> f = std::async(std::launch::deferred, f0);
108 std::future<int&> f = std::async(std::launch::async, f1);
116 std::future<int&> f = std::async(std::launch::any, f1);
124 std::future<int&> f = std::async(std::launch::deferred, f1);
141 std::future<void> f = std::async(std::launch::async, f2);
149 std::future<void> f = std::async(std::launch::any, f2);
157 std::future<void> f = std::async(std::launch::deferred, f2)
    [all...]
  /external/chromium_org/chrome/browser/resources/extensions/chromeos/
kiosk_apps.css 139 .disable-auto-launch-button,
140 .enable-auto-launch-button {
144 .kiosk-app-list-item[auto-launch]:hover .disable-auto-launch-button,
145 .kiosk-app-list-item:not([auto-launch]):hover .enable-auto-launch-button {
  /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;
28 * Contains info about Android JUnit launch
145 public void setLaunch(ILaunch launch) {
146 mLaunch = launch;

Completed in 1018 milliseconds

1 2 3 4 5 6 7 8 910