HomeSort by relevance Sort by last modified time
    Searched defs:parentStyle (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/third_party/angle/util/win32/
Win32Window.cpp 417 DWORD parentStyle = WS_VISIBLE | WS_CAPTION | WS_THICKFRAME | WS_MINIMIZEBOX | WS_MAXIMIZEBOX | WS_SYSMENU;
421 AdjustWindowRectEx(&sizeRect, parentStyle, FALSE, parentExtendedStyle);
423 mParentWindow = CreateWindowExA(parentExtendedStyle, mParentClassName.c_str(), name.c_str(), parentStyle, CW_USEDEFAULT, CW_USEDEFAULT,
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
StyleResolverState.h 48 StyleResolverState(Document&, Element*, RenderStyle* parentStyle = 0);
74 void setParentStyle(PassRefPtr<RenderStyle> parentStyle) { m_parentStyle = parentStyle; }
75 const RenderStyle* parentStyle() const { return m_parentStyle.get(); }
76 RenderStyle* parentStyle() { return m_parentStyle.get(); }
StyleResolver.cpp 536 adjuster.adjustRenderStyle(state.style(), state.parentStyle(), element, state.cachedUAStyle());
575 if (sharingBehavior == AllowStyleSharing && state.parentStyle()) {
581 if (state.parentStyle()) {
583 state.style()->inheritFrom(state.parentStyle(), isAtShadowBoundary(element) ? RenderStyle::AtShadowBoundary : RenderStyle::NotAtShadowBoundary);
649 PassRefPtr<RenderStyle> StyleResolver::styleForKeyframe(Element& element, const RenderStyle& elementStyle, RenderStyle* parentStyle, const StyleKeyframe* keyframe, const AtomicString& animationName)
657 StyleResolverState state(document(), &element, parentStyle);
731 RenderStyle* parentStyle = parentRenderer->style();
732 if (RenderStyle* cachedStyle = parentStyle->getCachedPseudoStyle(pseudoId)) {
738 StyleResolverState state(document(), &parent, parentStyle);
739 if (!pseudoStyleForElementInternal(parent, pseudoId, parentStyle, state)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLOptionElement.cpp 413 RenderStyle* parentStyle = parent->renderStyle() ? parent->renderStyle() : parent->computedStyle();
414 return !parentStyle || parentStyle->display() == NONE;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
InlineFlowBox.cpp 122 RenderStyle* parentStyle = renderer().style(isFirstLineStyle());
129 if (!parentStyle->font().fontMetrics().hasIdenticalAscentDescentAndLineGap(childStyle->font().fontMetrics())
130 || parentStyle->lineHeight() != childStyle->lineHeight()
131 || (parentStyle->verticalAlign() != BASELINE && !isRootInlineBox()) || childStyle->verticalAlign() != BASELINE)
146 || !parentStyle->font().fontMetrics().hasIdenticalAscentDescentAndLineGap(childStyle->font().fontMetrics())
147 || parentStyle->lineHeight() != childStyle->lineHeight()
148 || (parentStyle->verticalAlign() != BASELINE && !isRootInlineBox()) || childStyle->verticalAlign() != BASELINE
    [all...]
RenderObject.cpp     [all...]

Completed in 259 milliseconds