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

1 2 3 4 5 6 7 8 91011>>

  /external/libcxx/test/std/thread/futures/futures.overview/
launch.pass.cpp 14 // enum class launch
29 LIBCPP_STATIC_ASSERT(static_cast<int>(std::launch::any) ==
30 (static_cast<int>(std::launch::async) | static_cast<int>(std::launch::deferred)), "");
32 LIBCPP_STATIC_ASSERT(std::launch::any == (std::launch::async | std::launch::deferred), "");
33 static_assert(std::launch(0) == (std::launch::async & std::launch::deferred), "")
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/thread/futures/futures.overview/
launch.pass.cpp 14 // enum class launch
29 LIBCPP_STATIC_ASSERT(static_cast<int>(std::launch::any) ==
30 (static_cast<int>(std::launch::async) | static_cast<int>(std::launch::deferred)), "");
32 LIBCPP_STATIC_ASSERT(std::launch::any == (std::launch::async | std::launch::deferred), "");
33 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/libcxx/test/std/thread/futures/futures.async/
async.fail.cpp 22 // async(launch policy, F&& f, Args&&... args);
37 std::async(std::launch::async, foo, 3); // expected-error {{ignoring return value of function declared with 'nodiscard' attribute}}
async.pass.cpp 21 // async(launch policy, F&& f, Args&&... args);
108 // The default launch policy is implementation defined. libc++ defines
109 // it to be std::launch::async.
113 std::launch AnyPolicy = std::launch::async | std::launch::deferred;
114 LIBCPP_ASSERT(AnyPolicy == std::launch::any);
119 test<int>(checkInt, false, std::launch::async, f0);
120 test<int>(checkInt, true, std::launch::deferred, f0);
126 test<int&>(checkIntRef, false, std::launch::async, f1)
    [all...]
async_race.pass.cpp 21 // async(launch policy, F&& f, Args&&... args);
52 std::future<int> f = std::async(std::launch::async, f_async);
58 std::future<int> f = std::async(std::launch::deferred, f_deferred);
  /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
  /external/libxcam/tests/
test-xcamsrc-camera.sh 3 gst-launch-1.0 xcamsrc sensor-id=3 capture-mode=1 io-mode=4 ! video/x-raw, format=NV12, width=1920, height=1080, framerate=30/1 ! queue ! vaapiencode_h264 ! fakesink
  /developers/build/prebuilts/gradle/DeviceOwner/Application/src/main/java/com/example/android/deviceowner/
DeviceOwnerReceiver.java 43 Intent launch = new Intent(context, MainActivity.class); local
44 launch.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
45 context.startActivity(launch);
  /developers/samples/android/admin/DeviceOwner/Application/src/main/java/com/example/android/deviceowner/
DeviceOwnerReceiver.java 43 Intent launch = new Intent(context, MainActivity.class); local
44 launch.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
45 context.startActivity(launch);
  /development/samples/browseable/DeviceOwner/src/com.example.android.deviceowner/
DeviceOwnerReceiver.java 43 Intent launch = new Intent(context, MainActivity.class); local
44 launch.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
45 context.startActivity(launch);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/thread/futures/futures.async/
async.pass.cpp 21 // async(launch policy, F&& f, Args&&... args);
108 // The default launch policy is implementation defined. libc++ defines
109 // it to be std::launch::async.
113 std::launch AnyPolicy = std::launch::async | std::launch::deferred;
114 LIBCPP_ASSERT(AnyPolicy == std::launch::any);
119 test<int>(checkInt, false, std::launch::async, f0);
120 test<int>(checkInt, true, std::launch::deferred, f0);
126 test<int&>(checkIntRef, false, std::launch::async, f1)
    [all...]
async_race.pass.cpp 21 // async(launch policy, F&& f, Args&&... args);
52 std::future<int> f = std::async(std::launch::async, f_async);
58 std::future<int> f = std::async(std::launch::deferred, f_deferred);
  /prebuilts/misc/common/robolectric/3.1.1/lib/
ant-launcher-1.8.0.jar 
  /prebuilts/tools/common/m2/repository/org/apache/ant/ant-launcher/1.7.0/
ant-launcher-1.7.0.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 
  /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...]

Completed in 562 milliseconds

1 2 3 4 5 6 7 8 91011>>