Searched refs:menuList (Results 1 - 18 of 18) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/accessibility/
H A DAXMenuList.cpp47 RenderMenuList* menuList = toRenderMenuList(m_renderer); local
48 if (menuList->popupIsVisible())
49 menuList->hidePopup();
51 menuList->showPopup();
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/ui/
H A Dcontext_menu_widget.js66 this.menuList = extractMenuList_(this.triggerElement_);
68 if (!this.menuList) {
73 this.menuList.forEach(goog.bind(function(menuItem) {
92 if (this.menuList) {
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderThemeChromiumDefault.cpp348 extraParams.menuList.arrowY = middle;
351 extraParams.menuList.hasBorder = box->borderRight() || box->borderLeft() || box->borderTop() || box->borderBottom();
352 extraParams.menuList.hasBorderRadius = o->style()->hasBorderRadius();
357 extraParams.menuList.backgroundColor = backgroundColor.rgb();
364 extraParams.menuList.fillContentArea = !o->style()->hasBackgroundImage() && backgroundColor.alpha();
372 extraParams.menuList.arrowX = (o->style()->direction() == RTL) ? rect.x() + 4 + spacingRight: right - 13 - spacingRight;
373 extraParams.menuList.arrowHeight = rect.height() - spacingBottom - spacingTop;
375 extraParams.menuList.arrowX = (o->style()->direction() == RTL) ? rect.x() + 7 : right - 13;
393 extraParams.menuList.arrowY = middle;
394 extraParams.menuList
[all...]
H A DRenderMenuList.cpp441 if (AXMenuList* menuList = toAXMenuList(document().axObjectCache()->get(this)))
442 menuList->didUpdateActiveOption(optionIndex);
/external/chromium_org/content/child/
H A Dwebfallbackthemeengine_impl.cc124 extra_params->menuList.hasBorder;
126 extra_params->menuList.hasBorderRadius;
128 extra_params->menuList.arrowX;
130 extra_params->menuList.arrowY;
132 extra_params->menuList.backgroundColor;
H A Dwebthemeengine_impl_android.cc117 extra_params->menuList.hasBorder;
119 extra_params->menuList.hasBorderRadius;
121 extra_params->menuList.arrowX;
123 extra_params->menuList.arrowY;
125 extra_params->menuList.backgroundColor;
H A Dwebthemeengine_impl_default.cc124 extra_params->menuList.hasBorder;
126 extra_params->menuList.hasBorderRadius;
128 extra_params->menuList.arrowX;
130 extra_params->menuList.arrowY;
132 extra_params->menuList.backgroundColor;
/external/chromium_org/mojo/services/html_viewer/
H A Dwebthemeengine_impl.cc124 extra_params->menuList.hasBorder;
126 extra_params->menuList.hasBorderRadius;
128 extra_params->menuList.arrowX;
130 extra_params->menuList.arrowY;
132 extra_params->menuList.backgroundColor;
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebFallbackThemeEngine.h137 MenuListExtraParams menuList; member in union:blink::WebFallbackThemeEngine::ExtraParams
H A DWebThemeEngine.h177 MenuListExtraParams menuList; member in union:blink::WebThemeEngine::ExtraParams
/external/chromium_org/content/shell/renderer/test_runner/
H A Dmock_web_theme_engine.cc525 if (extraParams->menuList.fillContentArea) {
526 box(canvas, irect, extraParams->menuList.backgroundColor);
535 if (extraParams->menuList.arrowX - 4 > irect.fLeft)
536 irect.fLeft = extraParams->menuList.arrowX - 4;
537 if (extraParams->menuList.arrowX + 12 < irect.fRight)
538 irect.fRight = extraParams->menuList.arrowX + 12;
540 irect.fTop = extraParams->menuList.arrowY - (extraParams->menuList.arrowHeight) / 2;
541 irect.fBottom = extraParams->menuList.arrowY + (extraParams->menuList
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLSelectElement.cpp360 if (RenderMenuList* menuList = toRenderMenuList(renderer())) {
361 if (menuList->popupIsVisible())
362 menuList->hidePopup();
1195 if (RenderMenuList* menuList = toRenderMenuList(renderer()))
1196 menuList->showPopup();
1307 if (RenderMenuList* menuList = toRenderMenuList(renderer())) {
1308 if (menuList->popupIsVisible())
1309 menuList->hidePopup();
1317 menuList->showPopup();
1325 if (RenderMenuList* menuList
[all...]
/external/chromium_org/third_party/WebKit/Source/web/
H A DPopupMenuTest.cpp601 RenderMenuList* menuList = toRenderMenuList(select->renderer()); local
602 ASSERT(menuList);
603 menuList->showPopup();
/external/chromium_org/third_party/WebKit/Source/core/testing/
H A DInternals.cpp2015 RenderMenuList* menuList = toRenderMenuList(renderer);
2016 return menuList->popupIsVisible();
2030 RenderMenuList& menuList = toRenderMenuList(*renderer);
2031 PopupMenuStyle itemStyle = menuList.itemStyle(itemIndex);
2046 RenderMenuList& menuList = toRenderMenuList(*renderer);
2047 PopupMenuStyle itemStyle = menuList.itemStyle(itemIndex);
/external/chromium_org/chrome/third_party/chromevox/
H A DchromeVoxChromePageScript.js1268 cvox.ContextMenuWidget=function(){cvox.OverlayWidget.call(this,"");this.container_=document.createElement("div");this.triggerElement_=getCurrentElement_();(this.menuList=extractMenuList_(this.triggerElement_))?this.menuList.forEach(goog.bind(function(a){if(a.desc||a.cmd){var b=a.desc;a=a.cmd;var c=document.createElement("p");c.id=a;c.textContent=b;c.setAttribute("role","menuitem");this.container_.appendChild(c)}},this)):console.log("No context menu found.")};goog.inherits(cvox.ContextMenuWidget,cvox.OverlayWidget);
1269 cvox.ContextMenuWidget.prototype.show=function(){this.menuList&&(cvox.ContextMenuWidget.superClass_.show.call(this),this.host_.appendChild(this.container_))};cvox.ContextMenuWidget.prototype.getNameMsg=function(){return["context_menu_intro"]};
H A DchromeVoxChromeBackgroundScript.js1520 cvox.ContextMenuWidget=function(){cvox.OverlayWidget.call(this,"");this.container_=document.createElement("div");this.triggerElement_=getCurrentElement_();(this.menuList=extractMenuList_(this.triggerElement_))?this.menuList.forEach(goog.bind(function(a){if(a.desc||a.cmd){var b=a.desc;a=a.cmd;var c=document.createElement("p");c.id=a;c.textContent=b;c.setAttribute("role","menuitem");this.container_.appendChild(c)}},this)):console.log("No context menu found.")};goog.inherits(cvox.ContextMenuWidget,cvox.OverlayWidget);
1521 cvox.ContextMenuWidget.prototype.show=function(){this.menuList&&(cvox.ContextMenuWidget.superClass_.show.call(this),this.host_.appendChild(this.container_))};cvox.ContextMenuWidget.prototype.getNameMsg=function(){return["context_menu_intro"]};
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 1715 milliseconds