Searched refs:lineStyle (Results 1 - 21 of 21) sorted by relevance

/macosx-10.10/WebCore-7600.1.25/rendering/
H A DEllipsisBox.cpp46 const RenderStyle& lineStyle = this->lineStyle(); local
47 Color textColor = lineStyle.visitedDependentColor(CSSPropertyWebkitTextFillColor);
49 context->setFillColor(textColor, lineStyle.colorSpace());
51 if (lineStyle.textShadow()) {
52 context->setShadow(LayoutSize(lineStyle.textShadow()->x(), lineStyle.textShadow()->y()),
53 lineStyle.textShadow()->radius(), lineStyle.textShadow()->color(), lineStyle
112 const RenderStyle& lineStyle = this->lineStyle(); local
117 font.adjustSelectionRectForText(RenderBlock::constructTextRun(&blockFlow(), font, m_str, lineStyle, TextRun::AllowTrailingExpansion), selectionRect); local
149 const RenderStyle& lineStyle = this->lineStyle(); local
[all...]
H A DTextPaintStyle.cpp74 TextPaintStyle computeTextPaintStyle(const RenderText& renderer, const RenderStyle& lineStyle, const PaintInfo& paintInfo) argument
76 TextPaintStyle paintStyle(lineStyle.colorSpace());
79 paintStyle.useLetterpressEffect = lineStyle.textDecorationsInEffect() & TextDecorationLetterpress;
81 paintStyle.strokeWidth = lineStyle.textStrokeWidth();
89 paintStyle.fillColor = lineStyle.visitedDependentColor(CSSPropertyWebkitTextFillColor);
93 if (lineStyle.printColorAdjust() == PrintColorAdjustEconomy)
103 paintStyle.strokeColor = lineStyle.visitedDependentColor(CSSPropertyWebkitTextStrokeColor);
109 paintStyle.emphasisMarkColor = lineStyle.visitedDependentColor(CSSPropertyWebkitTextEmphasisColor);
118 TextPaintStyle computeTextSelectionPaintStyle(const TextPaintStyle& textPaintStyle, const RenderText& renderer, const RenderStyle& lineStyle, const PaintInfo& paintInfo, bool& paintSelectedTextOnly, bool& paintSelectedTextSeparately, const ShadowData*& selectionShadow) argument
122 selectionShadow = paintInfo.forceBlackText() ? nullptr : lineStyle
[all...]
H A DInlineTextBox.cpp271 const RenderStyle& lineStyle = this->lineStyle(); local
272 const Font& font = fontToUse(lineStyle, renderer());
276 TextRun textRun = constructTextRun(lineStyle, font, respectHyphen ? &hyphenatedStringBuffer : 0);
541 const RenderStyle& lineStyle = this->lineStyle(); local
543 adjustedPaintOffset.move(0, lineStyle.isHorizontalWritingMode() ? 0 : -logicalHeight());
549 RenderCombineText* combinedText = lineStyle.hasTextCombine() && renderer().isCombineText() && toRenderCombineText(renderer()).isCombined() ? &toRenderCombineText(renderer()) : 0;
560 TextPaintStyle textPaintStyle = computeTextPaintStyle(renderer(), lineStyle, paintInfo);
565 TextPaintStyle selectionPaintStyle = computeTextSelectionPaintStyle(textPaintStyle, renderer(), lineStyle, paintInf
961 const RenderStyle& lineStyle = this->lineStyle(); local
1367 const RenderStyle& lineStyle = this->lineStyle(); local
1382 const RenderStyle& lineStyle = this->lineStyle(); local
[all...]
H A DInlineFlowBox.cpp117 const RenderStyle& parentStyle = lineStyle();
118 const RenderStyle& childStyle = child->lineStyle();
154 const RenderStyle& childStyle = child->lineStyle();
156 const RenderStyle* childStyle = &child->lineStyle();
384 logicalLeft += text->lineStyle().font().wordSpacing();
440 const RenderStyle& lineStyle = this->lineStyle(); local
441 if (lineStyle.fontDescription().nonCJKGlyphOrientation() == NonCJKGlyphOrientationUpright
442 || lineStyle.font().primaryFont()->hasVerticalGlyphs())
453 if (curr->lineStyle()
780 const RenderStyle& lineStyle = this->lineStyle(); local
813 const RenderStyle& lineStyle = this->lineStyle(); local
847 const RenderStyle& lineStyle = this->lineStyle(); local
1298 const RenderStyle& lineStyle = this->lineStyle(); local
[all...]
H A DInlineBox.cpp134 const RenderStyle& lineStyle = this->lineStyle(); local
136 return behavesLikeText() ? lineStyle.fontMetrics().height() : 0;
142 const FontMetrics& fontMetrics = lineStyle.fontMetrics();
H A DInlineFlowBox.h79 const RenderStyle& lineStyle() const { return isFirstLine() ? renderer().firstLineStyle() : renderer().style(); } function in class:WebCore::InlineFlowBox
145 return isHorizontal() ? lineStyle().borderLeftWidth() : lineStyle().borderTopWidth();
151 return isHorizontal() ? lineStyle().borderRightWidth() : lineStyle().borderBottomWidth();
H A DInlineBox.h250 const RenderStyle& lineStyle() const { return m_bitfields.firstLine() ? renderer().firstLineStyle() : renderer().style(); } function in class:WebCore::InlineBox
252 EVerticalAlign verticalAlign() const { return lineStyle().verticalAlign(); }
H A DInlineTextBox.h55 const RenderStyle& lineStyle() const { return isFirstLine() ? renderer().firstLineStyle() : renderer().style(); } function in class:WebCore::InlineTextBox
H A DRenderInline.cpp584 int logicalTop = rootBox.logicalTop() + (rootBox.lineStyle().font().fontMetrics().ascent() - containerStyle.font().fontMetrics().ascent());
600 int logicalTop = rootBox.logicalTop() + (rootBox.lineStyle().font().fontMetrics().ascent() - containerStyle.font().fontMetrics().ascent());
619 int logicalTop = rootBox.logicalTop() + (rootBox.lineStyle().font().fontMetrics().ascent() - containerStyle.font().fontMetrics().ascent());
631 int logicalTop = rootBox.logicalTop() + (rootBox.lineStyle().font().fontMetrics().ascent() - containerStyle.font().fontMetrics().ascent());
H A DRenderDeprecatedFlexibleBox.cpp999 const RenderStyle& lineStyle = numVisibleLines == 1 ? firstLineStyle() : style(); local
1000 const Font& font = lineStyle.font();
H A DRenderText.cpp1170 const RenderStyle& lineStyle = firstLine ? firstLineStyle() : style(); local
1171 return width(from, len, lineStyle.font(), xPos, fallbackFonts, glyphOverflow);
H A DRootInlineBox.cpp820 if (lineStyle().lineBoxContain() & LineBoxContainReplaced) {
845 const RenderStyle& boxLineStyle = box.lineStyle();
H A DRenderBlockLineLayout.cpp457 const Font& font = lineStyle(*renderer->parent(), lineInfo).font();
531 glyphOverflow.extendTo(visualOverflowForDecorations(run->box()->lineStyle(), toInlineTextBox(run->box())));
690 totalLogicalWidth += lineStyle(*rt.parent(), lineInfo).font().wordSpacing();
/macosx-10.10/WebCore-7600.1.25/style/
H A DInlineTextBoxStyle.cpp78 GlyphOverflow visualOverflowForDecorations(const RenderStyle& lineStyle, InlineTextBox* inlineTextBox) argument
80 ASSERT(!inlineTextBox || inlineTextBox->lineStyle() == lineStyle);
82 TextDecoration decoration = lineStyle.textDecorationsInEffect();
86 float strokeThickness = textDecorationStrokeThickness(lineStyle.fontSize());
91 TextDecorationStyle decorationStyle = lineStyle.textDecorationStyle();
92 float height = lineStyle.font().fontMetrics().floatHeight();
104 float underlineOffset = computeUnderlineOffset(lineStyle.textUnderlinePosition(), lineStyle.fontMetrics(), inlineTextBox, strokeThickness);
123 float baseline = lineStyle
[all...]
H A DInlineTextBoxStyle.h47 GlyphOverflow visualOverflowForDecorations(const RenderStyle& lineStyle, InlineTextBox*);
/macosx-10.10/WebCore-7600.1.25/rendering/line/
H A DLineInlineHeaders.h46 inline const RenderStyle& lineStyle(const RenderElement& renderer, const LineInfo& lineInfo) function in namespace:WebCore
55 const RenderStyle& flowStyle = lineStyle(flow, lineInfo);
56 const RenderStyle& parentStyle = lineStyle(*parent, lineInfo);
H A DBreakingContextInlineHeaders.h608 const RenderStyle& style = lineStyle(*renderText->parent(), m_lineInfo);
/macosx-10.10/tcl-105/tcl_ext/tktreectrl/tktreectrl/generic/
H A DtkTreeCtrl.h264 int lineStyle; /* -linestyle */ member in struct:TreeCtrl
H A DtkTreeDisplay.c2996 (tree->lineStyle == LINE_STYLE_DOT) &&
3109 (tree->lineStyle == LINE_STYLE_DOT) &&
3416 (tree->lineStyle == LINE_STYLE_DOT) &&
3455 (tree->lineStyle == LINE_STYLE_DOT) &&
H A DtkTreeItem.c4311 if (tree->lineStyle == LINE_STYLE_DOT) {
4330 if (tree->lineStyle == LINE_STYLE_DOT) {
4360 if (tree->lineStyle == LINE_STYLE_DOT) {
H A DtkTreeCtrl.c196 {TK_OPTION_STRING_TABLE, "-linestyle", "lineStyle", "LineStyle",
197 "dot", -1, Tk_Offset(TreeCtrl, lineStyle),

Completed in 324 milliseconds