Home
last modified time | relevance | path

Searched refs:selectionStyle (Results 1 – 8 of 8) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
DTextPainter.cpp152 TextPainter::Style selectionStyle = textStyle; in selectionPaintingStyle() local
156 selectionStyle.fillColor = renderer.selectionForegroundColor(); in selectionPaintingStyle()
157 selectionStyle.emphasisMarkColor = renderer.selectionEmphasisMarkColor(); in selectionPaintingStyle()
161selectionStyle.strokeColor = forceBlackText ? Color::black : renderer.resolveColor(pseudoStyle, CS… in selectionPaintingStyle()
162 selectionStyle.strokeWidth = pseudoStyle->textStrokeWidth(); in selectionPaintingStyle()
163 selectionStyle.shadow = forceBlackText ? 0 : pseudoStyle->textShadow(); in selectionPaintingStyle()
168 selectionStyle.shadow = 0; in selectionPaintingStyle()
171 return selectionStyle; in selectionPaintingStyle()
DInlineTextBox.cpp452 …TextPainter::Style selectionStyle = TextPainter::selectionPaintingStyle(renderer(), haveSelection,… in paint() local
454 bool paintSelectedTextSeparately = !paintSelectedTextOnly && textStyle != selectionStyle; in paint()
473 paintSelection(context, boxOrigin, styleToUse, font, selectionStyle.fillColor); in paint()
542 textPainter.paint(selectionStart, selectionEnd, length, selectionStyle); in paint()
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
DSVGInlineTextBox.cpp273 RenderStyle* selectionStyle = style; in paint() local
275 selectionStyle = parentRenderer.getCachedPseudoStyle(SELECTION); in paint()
276 if (selectionStyle) { in paint()
277 const SVGRenderStyle& svgSelectionStyle = selectionStyle->svgStyle(); in paint()
284 selectionStyle = style; in paint()
317 paintText(paintInfo.context, style, selectionStyle, fragment, in paint()
324 paintText(paintInfo.context, style, selectionStyle, fragment, in paint()
613 RenderStyle* selectionStyle, const SVGTextFragment& fragment, in paintText() argument
617 ASSERT(selectionStyle); in paintText()
638 if (style != selectionStyle) { in paintText()
[all …]
DSVGInlineTextBox.h71 …void paintText(GraphicsContext*, RenderStyle*, RenderStyle* selectionStyle, const SVGTextFragment&,
/external/chromium_org/third_party/skia/experimental/iOSSampleApp/Shared/
DSkOptionsTableViewController.mm189 cell.selectionStyle = UITableViewCellSelectionStyleNone;
208 cell.selectionStyle = UITableViewCellSelectionStyleNone;
227 cell.selectionStyle = UITableViewCellSelectionStyleNone;
246 cell.selectionStyle = UITableViewCellSelectionStyleNone;
305 if (UITableViewCellSelectionStyleNone != cell.selectionStyle) { //Actions
/external/skia/experimental/iOSSampleApp/Shared/
DSkOptionsTableViewController.mm189 cell.selectionStyle = UITableViewCellSelectionStyleNone;
208 cell.selectionStyle = UITableViewCellSelectionStyleNone;
227 cell.selectionStyle = UITableViewCellSelectionStyleNone;
246 cell.selectionStyle = UITableViewCellSelectionStyleNone;
305 if (UITableViewCellSelectionStyleNone != cell.selectionStyle) { //Actions
/external/chromium_org/third_party/WebKit/Source/core/editing/
DEditor.cpp641 …RefPtrWillBeRawPtr<EditingStyle> selectionStyle = EditingStyle::styleAtSelectionStart(frame().sele… in selectionStartCSSPropertyValue() local
643 if (!selectionStyle || !selectionStyle->style()) in selectionStartCSSPropertyValue()
647 return String::number(selectionStyle->legacyFontSize(frame().document())); in selectionStartCSSPropertyValue()
648 return selectionStyle->style()->getPropertyValue(propertyID); in selectionStartCSSPropertyValue()
DEditorCommand.cpp140 …RefPtrWillBeRawPtr<EditingStyle> selectionStyle = EditingStyle::styleAtSelectionStart(frame.select… in executeToggleStyleInList() local
141 if (!selectionStyle || !selectionStyle->style()) in executeToggleStyleInList()
144 …RefPtrWillBeRawPtr<CSSValue> selectedCSSValue = selectionStyle->style()->getPropertyCSSValue(prope… in executeToggleStyleInList()