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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGResourceFilterPrimitive.cpp 46 const SVGRenderStyle& newStyle = this->style()->svgStyle();
49 if (newStyle.floodColor() != oldStyle->svgStyle().floodColor())
51 if (newStyle.floodOpacity() != oldStyle->svgStyle().floodOpacity())
54 if (newStyle.lightingColor() != oldStyle->svgStyle().lightingColor())
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderLayerReflectionInfo.cpp 91 RefPtr<RenderStyle> newStyle = RenderStyle::create();
92 newStyle->inheritFrom(box().style());
129 newStyle->setTransform(transform);
132 newStyle->setMaskBoxImage(box().style()->boxReflect()->mask());
134 m_reflection->setStyle(newStyle.release());
RenderRuby.cpp 87 RefPtr<RenderStyle> newStyle = RenderStyle::createAnonymousStyleWithDisplay(ruby->style(), INLINE_BLOCK);
89 newBlock->setStyle(newStyle.release());
RenderTableRow.cpp 64 static bool borderWidthChanged(const RenderStyle* oldStyle, const RenderStyle* newStyle)
66 return oldStyle->borderLeftWidth() != newStyle->borderLeftWidth()
67 || oldStyle->borderTopWidth() != newStyle->borderTopWidth()
68 || oldStyle->borderRightWidth() != newStyle->borderRightWidth()
69 || oldStyle->borderBottomWidth() != newStyle->borderBottomWidth();
244 RefPtr<RenderStyle> newStyle = RenderStyle::createAnonymousStyleWithDisplay(parent->style(), TABLE_ROW);
245 newRow->setStyle(newStyle.release());
RenderRubyRun.cpp 184 RefPtr<RenderStyle> newStyle = RenderStyle::createAnonymousStyleWithDisplay(style(), BLOCK);
185 newStyle->setTextAlign(CENTER); // FIXME: use WEBKIT_CENTER?
186 renderer->setStyle(newStyle.release());
195 RefPtr<RenderStyle> newStyle = RenderStyle::createAnonymousStyleWithDisplay(parentRuby->style(), INLINE_BLOCK);
196 rr->setStyle(newStyle.release());
RenderListItem.cpp 62 RefPtr<RenderStyle> newStyle = RenderStyle::create();
65 newStyle->inheritFrom(style());
68 m_marker->setStyle(newStyle.release());
RenderTable.cpp     [all...]
RenderInline.cpp 162 static void updateStyleOfAnonymousBlockContinuations(RenderObject* block, const RenderStyle* newStyle, const RenderStyle* oldStyle)
170 if (!block->style()->isOutlineEquivalent(newStyle)) {
172 newBlockStyle->setOutlineFromStyle(*newStyle);
175 if (block->style()->position() != newStyle->position()) {
183 newBlockStyle->setPosition(newStyle->position());
201 RenderStyle* newStyle = style();
206 currCont->setStyle(newStyle);
213 && (!newStyle->isOutlineEquivalent(oldStyle)
214 || (newStyle->position() != oldStyle->position() && (newStyle->hasInFlowPosition() || oldStyle->hasInFlowPosition()))))
    [all...]
RenderTableCell.cpp     [all...]
RenderTableSection.cpp     [all...]
RenderText.cpp 202 RenderStyle* newStyle = style();
205 if (oldTransform != newStyle->textTransform() || oldSecurity != newStyle->textSecurity())
212 newStyle->font().willUseFontData(text().characterStartingAt(0));
    [all...]
RenderObject.cpp     [all...]
RenderBlock.cpp 296 void RenderBlock::styleWillChange(StyleDifference diff, const RenderStyle& newStyle)
300 setReplaced(newStyle.isDisplayInlineType());
304 bool newStyleIsContainer = newStyle.position() != StaticPosition || newStyle.hasTransformRelatedProperty();
327 RenderBox::styleWillChange(diff, newStyle);
330 static bool borderOrPaddingLogicalWidthChanged(const RenderStyle* oldStyle, const RenderStyle* newStyle)
332 if (newStyle->isHorizontalWritingMode())
333 return oldStyle->borderLeftWidth() != newStyle->borderLeftWidth()
334 || oldStyle->borderRightWidth() != newStyle->borderRightWidth()
335 || oldStyle->paddingLeft() != newStyle->paddingLeft(
    [all...]
RenderBox.cpp 141 void RenderBox::styleWillChange(StyleDifference diff, const RenderStyle& newStyle)
151 if (oldStyle->hasEntirelyFixedBackground() != newStyle.hasEntirelyFixedBackground())
157 if (diff.needsFullLayout() && parent() && oldStyle->position() != newStyle.position()) {
161 else if (newStyle.hasOutOfFlowPosition())
163 if (isFloating() && !isOutOfFlowPositioned() && newStyle.hasOutOfFlowPosition())
172 RenderBoxModelObject::styleWillChange(diff, newStyle);
184 RenderStyle* newStyle = style();
194 if (hasOverflowClip() && oldStyle && newStyle && oldStyle->effectiveZoom() != newStyle->effectiveZoom() && layer()) {
196 left = (left / oldStyle->effectiveZoom()) * newStyle->effectiveZoom()
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
reptest.cpp 122 UChar newStyle = NO_STYLE;
124 newStyle = styles.charAt(start);
126 newStyle = styles.charAt(start-1);
128 newStyle = styles.charAt(limit);
139 s.append(newStyle);
  /external/icu/icu4c/source/test/intltest/
reptest.cpp 122 UChar newStyle = NO_STYLE;
124 newStyle = styles.charAt(start);
126 newStyle = styles.charAt(start-1);
128 newStyle = styles.charAt(limit);
139 s.append(newStyle);
  /external/chromium_org/third_party/skia/src/core/
SkTypeface.cpp 147 SkFontStyle newStyle = SkFontStyle(bold ? SkFontStyle::kBold_Weight
152 return fm->matchFaceStyle(family, newStyle);
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
CanvasRenderingContext2D.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
RenderStyle.cpp 88 RefPtr<RenderStyle> newStyle = RenderStyle::create();
89 newStyle->inheritFrom(parentStyle);
90 newStyle->inheritUnicodeBidiFrom(parentStyle);
91 newStyle->setDisplay(display);
92 return newStyle;
153 static StyleRecalcChange diffPseudoStyles(const RenderStyle* oldStyle, const RenderStyle* newStyle)
162 RenderStyle* newPseudoStyle = newStyle->getCachedPseudoStyle(pseudoId);
172 StyleRecalcChange RenderStyle::stylePropagationDiff(const RenderStyle* oldStyle, const RenderStyle* newStyle)
174 if ((!oldStyle && newStyle) || (oldStyle && !newStyle))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Document.cpp     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jar 
org.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jar 
com.ibm.icu_4.2.1.v20100412.jar 

Completed in 646 milliseconds