Home
last modified time | relevance | path

Searched refs:popup (Results 1 – 25 of 55) sorted by relevance

123

/external/autotest/frontend/client/src/autotest/common/ui/
DToolTip.java12 protected PopupPanel popup; field in ToolTip
18 popup = new PopupPanel(); in ToolTip()
20 popup.setStyleName("tooltip"); in ToolTip()
21 popup.add(new Label(toolTipMessage)); in ToolTip()
27 popup.setPopupPosition(left + Window.getScrollLeft() + LEFT_OFFSET, in showAtWindow()
29 popup.show(); in showAtWindow()
33 popup.hide(); in hide()
DContextMenu.java13 private PopupPanel popup = new PopupPanel(true); field in ContextMenu
25 popup.hide(); in execute()
49 popup.add(menu); in ContextMenu()
70 popup.setPopupPosition(left, top); in showAt()
71 popup.show(); in showAt()
79 popup.addCloseHandler(closeHandler); in addCloseHandler()
/external/autotest/server/cros/ap_configurators/
Dbuffalo_ap_configurator.py120 def _wait_for_item_in_popup(self, item, popup): argument
123 self.wait_for_object_by_xpath(popup)
124 if self.item_in_popup_by_xpath_exist(item, popup):
243 popup = '//select[@name="ath0_security_mode"]'
246 self._wait_for_item_in_popup(disabled_item, popup)
248 self.select_item_from_popup_by_xpath(disabled_item, popup)
268 popup = '//select[@name="ath0_security_mode"]'
272 self._wait_for_item_in_popup(wep_item, popup)
274 self.select_item_from_popup_by_xpath('WEP', popup,
290 popup = '//select[@name="ath0_security_mode"]'
[all …]
Dlevelone_ap_configurator.py136 popup = '//select[@name="wsecurity"]'
137 if not self.item_in_popup_by_xpath_exist('WEP', popup):
139 'Is the mode N?' % (popup, self.security_wep))
140 self.select_item_from_popup_by_xpath('WEP', popup)
156 popup = '//select[@name="wsecurity"]'
157 self.wait_for_object_by_xpath(popup)
164 self.select_item_from_popup_by_xpath(wpa_item, popup)
DbelkinWRTR_ap_configurator.py122 popup = '//select[@name="wl_sec_mode"]'
123 self.wait_for_object_by_xpath(popup)
125 self.select_item_from_popup_by_xpath('64bit WEP', popup,
141 popup = '//select[@name="wl_sec_mode"]'
142 self.wait_for_object_by_xpath(popup)
144 self.select_item_from_popup_by_xpath('WPA-PSK(no server)', popup,
Dasus_ap_configurator.py204 popup = '//select[@name="rt_wep_x"]'
206 popup = '//select[@name="wl_wep_x"]'
207 self._set_authentication('Open System', wait_for_xpath=popup)
208 self.select_item_from_popup_by_xpath('None', popup)
217 popup = '//select[@name="rt_wep_x"]'
220 popup = '//select[@name="wl_wep_x"]'
222 self._set_authentication('Open System', wait_for_xpath=popup)
223 self.select_item_from_popup_by_xpath('WEP-64bits', popup,
Dlinksyse2100_ap_configurator.py63 popup = '//select[@name="security_mode2"]'
64 self.select_item_from_popup_by_xpath('WEP', popup,
74 popup = '//select[@name="security_mode2"]'
75 self.wait_for_object_by_xpath(popup)
80 self.select_item_from_popup_by_xpath(wpa_item, popup,
Dlinksyse_dual_band_configurator.py208 popup = '//select[@name="wl0_security_mode"]'
212 popup = '//select[@name="wl1_security_mode"]'
215 self.wait_for_object_by_xpath(popup)
216 self.select_item_from_popup_by_xpath('WEP', popup,
231 popup = '//select[@name="wl0_security_mode"]'
234 popup = '//select[@name="wl1_security_mode"]'
236 self.wait_for_object_by_xpath(popup)
241 self.select_item_from_popup_by_xpath(wpa_item, popup,
Dlinksyswrt120n_ap_configurator.py74 popup = '//select[@name="sec_mode"]'
75 self.select_item_from_popup_by_xpath(' WEP ', popup,
85 popup = '//select[@name="sec_mode"]'
86 self.wait_for_object_by_xpath(popup)
91 self.select_item_from_popup_by_xpath(wpa_item, popup,
Ddlinkwbr1310_ap_configurator.py165 popup = '//select[@name="wep_type"]'
166 self.wait_for_object_by_xpath(popup)
168 self.select_item_from_popup_by_xpath(security_wep, popup)
183 popup = '//select[@name="wep_type"]'
184 self.wait_for_object_by_xpath(popup)
191 self.select_item_from_popup_by_xpath(wpa_item, popup,
Dlinksyse_single_band_configurator.py222 popup = '//select[@name="wl0_security_mode"]'
223 if not self.item_in_popup_by_xpath_exist('WEP', popup):
225 'Is the mode N?' % (popup, self.security_wep))
226 self.select_item_from_popup_by_xpath('WEP', popup,
244 popup = '//select[@name="wl0_security_mode"]'
245 self.wait_for_object_by_xpath(popup)
250 self.select_item_from_popup_by_xpath(wpa_item, popup,
Dlinksys_ap_configurator.py157 popup = '//select[@name="SecurityMode"]'
158 self.wait_for_object_by_xpath(popup)
160 self.select_item_from_popup_by_xpath('WEP', popup,
182 popup = '//select[@name="SecurityMode"]'
183 self.wait_for_object_by_xpath(popup)
189 self.select_item_from_popup_by_xpath(wpa_item, popup,
Dbelkin_ap_configurator.py208 popup = '//select[@name="wl_sec_mode"]'
209 self.wait_for_object_by_xpath(popup)
211 self.select_item_from_popup_by_xpath('64bit WEP', popup,
224 popup = '//select[@name="wl_sec_mode"]'
225 self.wait_for_object_by_xpath(popup)
228 self.select_item_from_popup_by_xpath('WPA-PSK(no server)', popup,
Dweb_driver_core_helpers.py309 popup = self.driver.find_element_by_xpath(xpath)
310 for option in popup.find_elements_by_tag_name('option'):
340 popup = self.driver.find_element_by_xpath(xpath)
343 len(popup.find_elements_by_tag_name('option')))
346 return len(popup.find_elements_by_tag_name('option'))
385 popup = self.driver.find_element_by_xpath(xpath)
386 for option in popup.find_elements_by_tag_name('option'):
Dlinksyswrt54gl_ap_configurator.py67 popup = '//select[@name="security_mode2"]'
68 self.wait_for_object_by_xpath(popup)
73 self.select_item_from_popup_by_xpath(wpa_item, popup,
Dasus_qis_ap_configurator.py141 popup = '//select[@name="wl_wep_x"]'
143 self._set_authentication('Shared Key', wait_for_xpath=popup)
144 self.select_item_from_popup_by_xpath('WEP-64bits', popup,
159 popup = '//select[@name="wl_crypto"]'
Dlinksyse2000_ap_configurator.py218 popup = '//select[@name="security_mode2"]'
219 if not self.item_in_popup_by_xpath_exist('WEP', popup):
222 self.select_item_from_popup_by_xpath('WEP', popup,
238 popup = '//select[@name="security_mode2"]'
243 self.select_item_from_popup_by_xpath(wpa_item, popup,
Dmedialink_ap_configurator.py194 popup = '//select[@name="security_mode"]'
196 self.select_item_from_popup_by_xpath('Mixed WEP', popup,
212 popup = '//select[@name="security_mode"]'
218 self.select_item_from_popup_by_xpath(wpa_item, popup,
Dbuffalo_wzr_d1800h_ap_configurator.py255 popup = '//select[@name="weptype"]'
257 self.wait_for_object_by_xpath(popup)
258 self.select_item_from_popup_by_xpath(self.security_wep, popup,
DbelkinF9K1102_ap_configurator.py224 popup = '//select[@name="security_mode"]'
226 popup = '//select[@name="security_mode_5g"]'
228 self.select_item_from_popup_by_xpath(option, popup,
DbelkinF9K1103_ap_configurator.py229 popup = '//select[@name="wl_authmod"]'
231 popup = '//select[@name="wl_authmod1"]'
233 self.select_item_from_popup_by_xpath(option, popup,
DbelkinF9K1105_ap_configurator.py247 popup = '//select[@name="wl_authmod"]'
249 popup = '//select[@name="wl_authmod1"]'
251 self.select_item_from_popup_by_xpath(option, popup,
/external/autotest/frontend/client/src/autotest/moblab/wizard/
DCloudStorageCard.java83 PopupPanel popup = new PopupPanel(true); in updateModeUI()
87 popup.setWidget(new Label(helpText)); in updateModeUI()
88 popup.showRelativeTo(layoutTable); in updateModeUI()
/external/ImageMagick/MagickCore/
Danimate.c1467 magick_windows[number_windows++]=(&windows->popup); in XAnimateImages()
1874 resource_info,&windows->popup); in XAnimateImages()
1875 windows->popup.border_width=0; in XAnimateImages()
1876 windows->popup.flags|=PPosition; in XAnimateImages()
1877 windows->popup.attributes.event_mask=ButtonMotionMask | ButtonPressMask | in XAnimateImages()
1885 &windows->popup); in XAnimateImages()
1886 windows->popup.highlight_stipple=XCreateBitmapFromData(display, in XAnimateImages()
1887 windows->popup.id,(char *) HighlightBitmap,HighlightWidth,HighlightHeight); in XAnimateImages()
1888 windows->popup.shadow_stipple=XCreateBitmapFromData(display, in XAnimateImages()
1889 windows->popup.id,(char *) ShadowBitmap,ShadowWidth,ShadowHeight); in XAnimateImages()
[all …]
/external/wayland/
DTODO24 a popup window?
29 unresponsive apps). Rectangle for close button, so we can popup
34 - popup placement protocol logic.

123