HomeSort by relevance Sort by last modified time
    Searched full:controller (Results 1 - 25 of 3632) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /packages/apps/TV/tests/func/src/com/android/tv/tests/ui/dvr/
DvrLibraryTest.java 46 @Rule public final LiveChannelsTestController controller = new LiveChannelsTestController(); field in class:DvrLibraryTest
58 ByResource.text(controller.getTargetResources(), R.string.dvr_main_recent));
62 controller.getTargetResources(), R.string.dvr_main_scheduled));
65 ByResource.text(controller.getTargetResources(), R.string.dvr_main_series));
70 controller.getTargetResources(),
72 controller.liveChannelsHelper.assertAppStarted();
83 controller.menuHelper.assertPressDvrLibrary();
84 controller.assertWaitForCondition(Until.hasObject(Constants.DVR_LIBRARY));
85 controller.pressBack();
86 controller.assertWaitForCondition(Until.gone(Constants.DVR_LIBRARY))
    [all...]
  /packages/apps/TV/tests/func/src/com/android/tv/tests/ui/
ParentalControlsTest.java 41 @Rule public final LiveChannelsTestController controller = new LiveChannelsTestController(); field in class:ParentalControlsTest
47 controller.liveChannelsHelper.assertAppStarted();
49 controller.sidePanelHelper.bySidePanelTitled(R.string.side_panel_title_settings);
68 controller.sidePanelHelper.bySidePanelTitled(R.string.option_program_restrictions);
69 controller.assertWaitForCondition(Until.hasObject(bySidePanel));
70 controller.sidePanelHelper.assertNavigateToItem(R.string.option_ratings);
71 controller.pressDPadCenter();
73 bySidePanel = controller.sidePanelHelper.bySidePanelTitled(R.string.option_ratings);
74 controller.assertWaitForCondition(Until.hasObject(bySidePanel));
82 controller
    [all...]
LiveChannelsAppTest.java 38 @Rule public final LiveChannelsTestController controller = new LiveChannelsTestController(); field in class:LiveChannelsAppTest
44 controller.liveChannelsHelper.assertAppStarted();
45 controller.pressKeysForChannel(TvTestInputConstants.CH_1_DEFAULT_DONT_MODIFY);
46 controller.waitForIdleSync();
48 controller.sidePanelHelper.bySidePanelTitled(R.string.side_panel_title_settings);
53 controller.menuHelper.assertPressOptionsSettings();
55 controller.sidePanelHelper.bySidePanelTitled(
57 controller.assertWaitForCondition(Until.hasObject(byChannelSourcesSidePanel));
58 controller.pressBack();
59 controller.assertWaitForCondition(Until.gone(byChannelSourcesSidePanel))
    [all...]
PlayControlsRowViewTest.java 45 @Rule public final LiveChannelsTestController controller = new LiveChannelsTestController(); field in class:PlayControlsRowViewTest
52 controller.liveChannelsHelper.assertAppStarted();
53 controller.pressKeysForChannel(TvTestInputConstants.CH_2);
55 controller.assertWaitForCondition(Until.hasObject(CHANNEL_BANNER));
57 controller.pressDPadUp();
58 controller.waitForIdleSync();
60 controller.sidePanelHelper.bySidePanelTitled(R.string.side_panel_title_settings);
67 controller.menuHelper.showMenu();
68 controller.menuHelper.assertNavigateToPlayControlsRow();
70 controller.pressBack()
    [all...]
ChannelSourcesTest.java 33 @Rule public final LiveChannelsTestController controller = new LiveChannelsTestController(); field in class:ChannelSourcesTest
39 controller.sidePanelHelper.bySidePanelTitled(R.string.side_panel_title_settings);
46 controller.liveChannelsHelper.assertAppStarted();
47 controller.menuHelper.assertPressOptionsSettings();
48 controller.assertWaitForCondition(Until.hasObject(mBySettingsSidePanel));
50 controller.sidePanelHelper.assertNavigateToItem(
52 controller.pressDPadCenter();
54 controller.assertWaitForCondition(
57 controller.getTargetResources(), R.string.setup_sources_text)));
58 controller.pressBack()
    [all...]
  /external/dtc/tests/
obsolete-chosen-interrupt-controller.dts 8 interrupt-controller;
11 interrupt-controller = <&PIC>;
  /tools/test/connectivity/acts/framework/acts/controllers/
__init__.py 4 Top level controllers module are controller modules that need to be explicitly
5 specified by users in test configuration files. Top level controller modules
9 '''Instantiates the controller class with the input configs.
11 configs: A list of dicts each representing config for one controller
15 A list of controller objects.
18 '''Destroys a list of controller objects created by the "create" function
22 objs: A list of controller objects created from this module.
25 """This is a list of all the top level controller modules"""
  /hardware/broadcom/libbt/conf/asus/grouper/
bt_vendor.conf 1 # UART device port where Bluetooth controller is attached
  /hardware/broadcom/libbt/conf/moto/wingray/
bt_vendor.conf 1 # UART device port where Bluetooth controller is attached
  /hardware/broadcom/libbt/conf/samsung/crespo/
bt_vendor.conf 1 # UART device port where Bluetooth controller is attached
  /hardware/broadcom/libbt/conf/samsung/crespo4g/
bt_vendor.conf 1 # UART device port where Bluetooth controller is attached
  /hardware/broadcom/libbt/conf/samsung/maguro/
bt_vendor.conf 1 # UART device port where Bluetooth controller is attached
  /cts/tests/tests/media/src/android/media/cts/
MediaSession2TestBase.java 118 MediaController2 controller = (MediaController2) instance; local
119 mControllers.add(controller);
121 waitForConnect(controller, true);
123 return controller;
127 MediaController2 controller) {
128 if (!(controller instanceof TestControllerInterface)) {
129 throw new RuntimeException("Test has a bug. Expected controller implemented"
130 + " TestControllerInterface but got " + controller);
132 ControllerCallback callback = ((TestControllerInterface) controller).getCallback();
134 throw new RuntimeException("Test has a bug. Expected controller with callback
    [all...]
  /packages/apps/Launcher3/quickstep/src/com/android/quickstep/
RecentsAnimationWrapper.java 47 RecentsAnimationControllerCompat controller, RemoteAnimationTargetSet targetSet) {
48 TraceHelper.partitionSection("RecentsController", "Set controller " + controller);
49 this.mController = controller;
73 * @param onFinishComplete A callback that runs after the animation controller has finished
78 RecentsAnimationControllerCompat controller = mController;
81 "Finish " + controller + ", toHome=" + toHome);
82 if (controller != null) {
83 controller.setInputConsumerEnabled(false);
84 controller.finish(toHome)
    [all...]
  /frameworks/support/media/src/androidTest/java/androidx/media/
MediaSession2TestBase.java 159 MediaController2 controller = (MediaController2) instance; local
160 mControllers.add(controller);
162 waitForConnect(controller, true);
164 return controller;
168 MediaController2 controller) {
169 if (!(controller instanceof TestControllerInterface)) {
170 throw new RuntimeException("Test has a bug. Expected controller implemented"
171 + " TestControllerInterface but got " + controller);
173 ControllerCallback callback = ((TestControllerInterface) controller).getCallback();
175 throw new RuntimeException("Test has a bug. Expected controller with callback
200 final AtomicReference<TestControllerInterface> controller = new AtomicReference<>(); local
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Isa/IsaBusDxe/
IsaBusDxe.uni 2 // ISA Bus driver to manage the child devices attached to the ISA Host Controller.
5 // in PI spec 1.2.1. It consumes the ISA Host Controller protocol produced by
6 // the ISA Host Controller and installs the ISA Host Controller Service Binding
7 // protocol on the ISA Host Controller's handle.
22 "ISA Bus driver to manage the child devices attached to the ISA Host Controller."
26 "This driver follows UEFI driver model and layers on ISA HC protocol defined in PI spec 1.2.1. It consumes the ISA Host Controller protocol produced by the ISA Host Controller and installs the ISA Host Controller Service Binding protocol on the ISA Host Controller's handle."
    [all...]
  /external/clang/test/Parser/
missing-selector-name.mm 15 PodiumWalkerController *controller;
16 return controller.PROP;
29 PodiumWalkerController *controller;
30 return controller.PROP;
50 PodiumWalkerController *controller;
51 return controller.PROP;
  /development/samples/browseable/WearNotifications/Wearable/src/com.example.android.wearable.wear.wearnotifications/
Controller.java 6 * Controller used to instruct main activity to update {@link Notification} based on changes in
11 public class Controller {
15 Controller(StandaloneMainActivity standaloneMainActivity) {
  /developers/build/prebuilts/androidtv/visual-game-controller/res/values/
strings.xml 5 <string name="message">Connect a game controller</string>
  /test/framework/harnesses/host_controller/script/
pip_requirements.txt 1 # Required pip packages for host controller.
  /frameworks/base/services/tests/servicestests/src/com/android/server/wm/
WindowContainerControllerTests.java 48 final WindowContainerController controller = new WindowContainerController(null, sWm); local
51 container.setController(controller);
52 assertEquals(controller, container.getController());
53 assertEquals(controller.mContainer, container);
58 final WindowContainerController controller = new WindowContainerController(null, sWm); local
61 controller.setContainer(container);
62 assertEquals(controller.mContainer, container);
67 controller.setContainer(new WindowContainer(sWm));
74 controller.setContainer(null);
75 assertNull(controller.mContainer)
80 final WindowContainerController controller = new WindowContainerController(null, sWm); local
92 final WindowContainerController controller = new WindowContainerController(null, sWm); local
    [all...]
  /hardware/qcom/neuralnetworks/hvxservice/1.0/
HexagonController.cpp 69 const char Controller::kFilename[] = "libhexagon_nn_controller.so";
71 Controller::Controller() {
75 Controller::~Controller() {
79 bool Controller::openNnlib() {
87 bool Controller::closeNnlib() {
97 bool Controller::resetNnlib() {
101 Controller& Controller::getInstance()
    [all...]
  /packages/apps/TV/tests/func/src/com/android/tv/tests/ui/sidepanel/
CustomizeChannelListFragmentTest.java 44 @Rule public final LiveChannelsTestController controller = new LiveChannelsTestController(); field in class:CustomizeChannelListFragmentTest
52 controller.liveChannelsHelper.assertAppStarted();
53 mTvView = controller.getUiDevice().findObject(Constants.TV_VIEW);
56 controller.pressKeysForChannel(com.android.tv.testing.testinput.TvTestInputConstants.CH_2);
58 controller.assertWaitForCondition(Until.hasObject(Constants.CHANNEL_BANNER));
60 controller.sidePanelHelper.bySidePanelTitled(R.string.side_panel_title_settings);
75 controller.menuHelper.assertPressOptionsSettings();
76 controller.assertWaitForCondition(Until.hasObject(mBySettingsSidePanel));
77 controller.sidePanelHelper.assertNavigateToItem(
79 controller.pressDPadCenter()
    [all...]
  /frameworks/av/packages/MediaComponents/src/com/android/media/
MediaController2Stub.java 45 MediaController2Stub(MediaController2Impl controller) {
46 mController = new WeakReference<>(controller);
50 final MediaController2Impl controller = mController.get(); local
51 if (controller == null) {
52 throw new IllegalStateException("Controller is released");
54 return controller;
58 final MediaController2Impl controller = getController(); local
59 if (controller instanceof MediaBrowser2Impl) {
60 return (MediaBrowser2Impl) controller;
71 final MediaController2Impl controller; local
83 final MediaController2Impl controller; local
103 final MediaController2Impl controller; local
115 final MediaController2Impl controller; local
131 final MediaController2Impl controller; local
157 final MediaController2Impl controller; local
170 final MediaController2Impl controller; local
185 final MediaController2Impl controller; local
202 final MediaController2Impl controller; local
214 final MediaController2Impl controller; local
229 final MediaController2Impl controller = mController.get(); local
256 final MediaController2Impl controller = mController.get(); local
272 final MediaController2Impl controller; local
295 final MediaController2Impl controller; local
316 final MediaController2Impl controller; local
    [all...]
  /device/linaro/bootloader/OpenPlatformPkg/Drivers/Net/MarvellYukonDxe/
DriverBinding.c 46 IN EFI_HANDLE Controller,
54 // Test that the PCI IO Protocol is attached to the controller handle and no other driver is consuming it
57 Controller,
61 Controller,
67 // Test whether the controller is on a supported NIC
73 DEBUG ((EFI_D_NET, "Marvell Yukon: MarvellYukonDriverSupported: Supported Controller = %p\n", Controller));
77 Controller,
80 Controller
88 Start this driver on Controller by opening PciIo and DevicePath protocols.
    [all...]

Completed in 2602 milliseconds

1 2 3 4 5 6 7 8 91011>>