Searched refs:isVisible (Results 1 - 25 of 101) sorted by relevance

12345

/external/chromium/chrome/browser/resources/net_internals/
H A Dtopmidbottomview.js54 TopMidBottomView.prototype.show = function(isVisible) {
55 TopMidBottomView.superClass_.show.call(this, isVisible);
56 this.topView_.show(isVisible);
57 this.midView_.show(isVisible);
58 this.bottomView_.show(isVisible);
H A Dview.js28 View.prototype.show = function(isVisible) {
29 this.isVisible_ = isVisible;
32 View.prototype.isVisible = function() {
43 return this.isVisible();
101 DivView.prototype.show = function(isVisible) {
102 DivView.superClass_.show.call(this, isVisible);
103 setNodeDisplay(this.node_, isVisible);
136 WindowView.superClass_.show.call(this, isVisible);
137 this.childView_.show(isVisible);
H A Dresizableverticalsplitview.js77 ResizableVerticalSplitView.prototype.show = function(isVisible) {
78 ResizableVerticalSplitView.superClass_.show.call(this, isVisible);
79 this.leftView_.show(isVisible);
80 this.sizerView_.show(isVisible);
81 this.rightView_.show(isVisible);
H A Dtabswitcherview.js52 TabSwitcherView.prototype.show = function(isVisible) {
53 TabSwitcherView.superClass_.show.call(this, isVisible);
55 this.tabHandleView_.show(isVisible);
59 activeTab.contentView.show(isVisible);
141 TabSwitcherView.prototype.showTabHandleNode = function(id, isVisible) {
143 setNodeDisplay(tab.getTabHandleNode(), isVisible);
H A Ddetailsview.js72 if (this.isVisible() && !this.outstandingRepaint_) {
84 DetailsSubView.prototype.show = function(isVisible) {
85 DetailsSubView.superClass_.show.call(this, isVisible);
86 if (isVisible) {
/external/chromium/chrome/browser/ui/cocoa/bookmarks/
H A Dbookmark_bar_state.h29 - (BOOL)isVisible;
/external/webkit/Source/WebKit2/PluginProcess/mac/
H A DPluginControllerProxyMac.mm91 void PluginControllerProxy::windowVisibilityChanged(bool isVisible)
93 m_plugin->windowVisibilityChanged(isVisible);
/external/webkit/Source/WebCore/accessibility/
H A DAccessibilityMenuListOption.cpp66 bool AccessibilityMenuListOption::isVisible() const function in class:WebCore::AccessibilityMenuListOption
76 return !isVisible();
H A DAccessibilityMenuListOption.h55 virtual bool isVisible() const;
H A DAccessibilityMenuListPopup.h55 virtual bool isVisible() const;
H A DAccessibilityMenuListPopup.cpp45 bool AccessibilityMenuListPopup::isVisible() const function in class:WebCore::AccessibilityMenuListPopup
/external/webkit/Source/WebKit2/UIProcess/
H A DChunkedUpdateDrawingAreaProxy.cpp86 void ChunkedUpdateDrawingAreaProxy::setPageIsVisible(bool isVisible) argument
90 if (isVisible == m_isVisible)
93 m_isVisible = isVisible;
/external/webkit/Source/WebCore/platform/
H A DPopupMenuStyle.h53 bool isVisible() const { return m_visible; } function in class:WebCore::PopupMenuStyle
H A DWidget.cpp49 if (!view || !view->isVisible())
52 if (view && view->isVisible())
/external/webkit/Source/WebCore/rendering/style/
H A DBorderValue.h52 bool isVisible(bool checkStyle = true) const function in class:WebCore::BorderValue
/external/webkit/Source/WebCore/wml/
H A DWMLCardElement.h62 bool isVisible() const { return m_isVisible; } function in class:WebCore::WMLCardElement
/external/webkit/Source/WebKit2/Shared/
H A DWebPageCreationParameters.h51 bool isVisible; member in struct:WebKit::WebPageCreationParameters
H A DWebPageCreationParameters.cpp38 encoder->encode(isVisible);
73 if (!decoder->decode(parameters.isVisible))
/external/qemu/android/skin/
H A Dcomposer.h35 char isVisible; /* flag: TRUE iff the region is visible */ member in struct:SkinPlateAny
86 extern void skin_plate_set_visible( SkinPlate* plate, int isVisible );
H A Dcomposer.c98 if (!p->any.isVisible)
155 skin_plate_set_visible( SkinPlate* p, int isVisible )
157 isVisible = !!isVisible;
158 if (isVisible == p->any.isVisible)
163 p->any.isVisible = isVisible;
195 p->any.isVisible = 1;
288 if (!plate->any.isVisible)
[all...]
/external/apache-xml/src/main/java/org/apache/xpath/
H A DArg.java161 public boolean isVisible() method in class:Arg
176 * value (either expression string or value XObject). isVisible
209 * isVisible defaults to true.
/external/chromium/chrome/browser/ui/cocoa/download/
H A Ddownload_shelf_controller.h84 - (BOOL)isVisible;
/external/webkit/Source/WebKit/chromium/public/
H A DWebPlugin.h66 const WebVector<WebRect>& cutOutsRects, bool isVisible) = 0;
/external/webkit/Source/WebKit2/UIProcess/API/C/
H A DWKInspector.cpp48 return toImpl(inspectorRef)->isVisible();
/external/webkit/Source/WebCore/rendering/svg/
H A DRenderSVGImage.cpp154 bool isVisible = (style()->visibility() == VISIBLE); local
155 if (isVisible || !hitRules.requireVisible) {

Completed in 1294 milliseconds

12345