OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:styleToUse
(Results
1 - 17
of
17
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderNamedFlowFragment.cpp
87
RenderStyle*
styleToUse
= parent()->style();
88
bool hasSpecifiedEndpointsForHeight =
styleToUse
->logicalTop().isSpecified() &&
styleToUse
->logicalBottom().isSpecified();
90
bool hasAutoHeightStyle =
styleToUse
->logicalHeight().isAuto()
91
||
styleToUse
->logicalHeight().isFitContent()
92
||
styleToUse
->logicalHeight().isMaxContent()
93
||
styleToUse
->logicalHeight().isMinContent();
104
RenderStyle*
styleToUse
= parent()->style();
105
return
styleToUse
->logicalMaxHeight().isUndefined() ? RenderFlowThread::maxLogicalHeight() : toRenderBlock(parent())->computeReplacedLogicalHeightUsing(
styleToUse
->logicalMaxHeight())
[
all
...]
InlineTextBox.cpp
208
RenderStyle*
styleToUse
= textObj->style(isFirstLineStyle());
209
const Font& font =
styleToUse
->font();
213
TextRun textRun = constructTextRun(
styleToUse
, font, respectHyphen ? &charactersWithHyphen : 0);
520
RenderStyle*
styleToUse
= rendererToUse->style(isFirstLineStyle());
522
adjustedPaintOffset.move(0,
styleToUse
->isHorizontalWritingMode() ? 0 : -logicalHeight());
528
RenderCombineText* combinedText =
styleToUse
->hasTextCombine() && textRenderer()->isCombineText() && toRenderCombineText(textRenderer())->isCombined() ? toRenderCombineText(textRenderer()) : 0;
542
float textStrokeWidth =
styleToUse
->textStrokeWidth();
545
const ShadowList* textShadow = (context->printing() || paintInfo.forceBlackText()) ? 0 :
styleToUse
->textShadow();
552
textFillColor = rendererToUse->resolveColor(
styleToUse
, CSSPropertyWebkitTextFillColor);
556
if (
styleToUse
->printColorAdjust() == PrintColorAdjustEconomy
[
all
...]
RenderReplaced.cpp
500
RenderStyle*
styleToUse
= style();
501
if (
styleToUse
->logicalWidth().isPercent() ||
styleToUse
->logicalMaxWidth().isPercent() || hasRelativeIntrinsicLogicalWidth())
504
if (
styleToUse
->logicalMinWidth().isFixed() &&
styleToUse
->logicalMinWidth().value() > 0) {
505
m_maxPreferredLogicalWidth = max(m_maxPreferredLogicalWidth, adjustContentBoxLogicalWidthForBoxSizing(
styleToUse
->logicalMinWidth().value()));
506
m_minPreferredLogicalWidth = max(m_minPreferredLogicalWidth, adjustContentBoxLogicalWidthForBoxSizing(
styleToUse
->logicalMinWidth().value()));
509
if (
styleToUse
->logicalMaxWidth().isFixed()) {
510
m_maxPreferredLogicalWidth = min(m_maxPreferredLogicalWidth, adjustContentBoxLogicalWidthForBoxSizing(
styleToUse
->logicalMaxWidth().value()));
511
m_minPreferredLogicalWidth = min(m_minPreferredLogicalWidth, adjustContentBoxLogicalWidthForBoxSizing(
styleToUse
->logicalMaxWidth().value()))
[
all
...]
RenderBox.h
275
const RenderStyle*
styleToUse
= overrideStyle ? overrideStyle : style();
276
return m_marginBox.start(
styleToUse
->writingMode(),
styleToUse
->direction());
280
const RenderStyle*
styleToUse
= overrideStyle ? overrideStyle : style();
281
return m_marginBox.end(
styleToUse
->writingMode(),
styleToUse
->direction());
287
const RenderStyle*
styleToUse
= overrideStyle ? overrideStyle : style();
288
m_marginBox.setStart(
styleToUse
->writingMode(),
styleToUse
->direction(), value);
292
const RenderStyle*
styleToUse
= overrideStyle ? overrideStyle : style()
[
all
...]
RenderText.cpp
[
all
...]
RenderBox.cpp
326
RenderStyle*
styleToUse
= style();
334
setFloating(!isOutOfFlowPositioned() &&
styleToUse
->isFloating());
339
if (
styleToUse
->overflowX() != OVISIBLE && !isRootObject && isRenderBlock()) {
359
setHasTransform(
styleToUse
->hasTransformRelatedProperty());
360
setHasReflection(
styleToUse
->boxReflect());
608
RenderStyle*
styleToUse
= style();
609
if (!
styleToUse
->logicalMaxWidth().isUndefined())
610
logicalWidth = min(logicalWidth, computeLogicalWidthInRegionUsing(MaxSize,
styleToUse
->logicalMaxWidth(), availableWidth, cb, region));
611
return max(logicalWidth, computeLogicalWidthInRegionUsing(MinSize,
styleToUse
->logicalMinWidth(), availableWidth, cb, region));
616
RenderStyle*
styleToUse
= style()
[
all
...]
RenderTable.cpp
[
all
...]
RenderInline.cpp
[
all
...]
RenderObject.cpp
[
all
...]
RenderBlock.cpp
[
all
...]
InlineFlowBox.cpp
[
all
...]
RenderObject.h
[
all
...]
RenderBlockLineLayout.cpp
[
all
...]
RenderBoxModelObject.cpp
177
RenderStyle*
styleToUse
= style();
178
setHasBoxDecorations(hasBackground() ||
styleToUse
->hasBorder() ||
styleToUse
->hasAppearance() ||
styleToUse
->boxShadow());
179
setInline(
styleToUse
->isDisplayInlineType());
180
setPositionState(
styleToUse
->position());
181
setHorizontalWritingMode(
styleToUse
->isHorizontalWritingMode());
[
all
...]
RenderBlockFlow.cpp
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/svg/
SVGElement.cpp
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/dom/
Element.cpp
[
all
...]
Completed in 452 milliseconds