Searched refs:selectionStyle (Results 1 – 8 of 8) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
D | TextPainter.cpp | 152 TextPainter::Style selectionStyle = textStyle; in selectionPaintingStyle() local 156 selectionStyle.fillColor = renderer.selectionForegroundColor(); in selectionPaintingStyle() 157 selectionStyle.emphasisMarkColor = renderer.selectionEmphasisMarkColor(); in selectionPaintingStyle() 161 …selectionStyle.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()
|
D | InlineTextBox.cpp | 452 …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/ |
D | SVGInlineTextBox.cpp | 273 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 …]
|
D | SVGInlineTextBox.h | 71 …void paintText(GraphicsContext*, RenderStyle*, RenderStyle* selectionStyle, const SVGTextFragment&,
|
/external/chromium_org/third_party/skia/experimental/iOSSampleApp/Shared/ |
D | SkOptionsTableViewController.mm | 189 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/ |
D | SkOptionsTableViewController.mm | 189 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/ |
D | Editor.cpp | 641 …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()
|
D | EditorCommand.cpp | 140 …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()
|