Home
last modified time | relevance | path

Searched refs:isInside (Results 1 – 10 of 10) sorted by relevance

/external/chromium/chrome/browser/ui/cocoa/toolbar/
Dtoolbar_button.mm60 BOOL isInside = [self mouse:mouseLoc inRect:[self bounds]];
61 [self setState:isInside ? NSOnState : NSOffState];
62 [self highlight:isInside];
63 return isInside;
/external/chromium/chrome/browser/ui/cocoa/
Ddraggable_button.mm171 BOOL isInside = [self mouse:mouseLoc inRect:[self bounds]];
172 [self highlight:isInside];
177 [self secondaryMouseUpAction:isInside];
/external/webkit/Source/WebCore/rendering/
DRenderListMarker.h46 bool isInside() const;
DRenderListItem.cpp254 …if (m_marker && m_marker->parent()->isBox() && !m_marker->isInside() && m_marker->inlineBoxWrapper… in positionListMarker()
DRenderListMarker.cpp1481 if (isInside()) { in updateMargins()
1572 bool RenderListMarker::isInside() const in isInside() function in WebCore::RenderListMarker
DInlineFlowBox.cpp155 … || (child->renderer()->isListMarker() && !toRenderListMarker(child->renderer())->isInside()))) in addToLine()
388 …} else if (!curr->renderer()->isListMarker() || toRenderListMarker(curr->renderer())->isInside()) { in placeBoxesInInlineDirection()
DRenderBlockLineLayout.cpp1992 if (toRenderListMarker(o)->isInside()) in findNextLineBreak()
2314 …mage() || allowImagesToBreak) && (!last->isListMarker() || toRenderListMarker(last)->isInside())) { in findNextLineBreak()
/external/chromium/chrome/browser/ui/cocoa/bookmarks/
Dbookmark_button.mm276 BOOL isInside = [self mouse:mouseLoc inRect:[self bounds]];
305 if (!isInside && insideBtn && insideBtn != self) {
312 [self secondaryMouseUpAction:isInside];
/external/webkit/Source/WebCore/
DChangeLog-2003-10-2515911 … * khtml/rendering/render_list.h: Add isInside() to RenderListMarker, setNotInList(), notInList(),
15916 (RenderListMarker::paintObject): Use isInside() instead of checking listStylePosition().
15919 …(RenderListMarker::isInside): Return true if we are not in a list, or if "inside" style is request…
DChangeLog-2007-10-1456151 (WebCore::RenderBlock::findNextLineBreak): Use the list marker's isInside()