Searched defs:underline (Results 1 - 8 of 8) sorted by relevance

/external/skia/src/animator/
H A DSkDrawPaint.h73 SkBool underline; member in class:SkDrawPaint
/external/freetype/include/freetype/
H A Dftwinfnt.h196 FT_Byte underline; member in struct:FT_WinFNT_HeaderRec_
/external/webkit/WebCore/rendering/
H A DSVGInlineTextBox.cpp456 const CompositionUnderline& underline = underlines[index]; local
458 if (underline.endOffset <= start())
459 // underline is completely before this run. This might be an underline that sits
464 if (underline.startOffset <= end()) {
465 // underline intersects this run. Paint it.
466 paintCompositionUnderline(paintInfo.context, tx, ty, underline);
467 if (underline.endOffset > end() + 1)
468 // underline also runs into the next run. Bail now, no more marker advancement.
471 // underline i
[all...]
H A DInlineTextBox.cpp401 // 2. Now paint the foreground, including text and decorations like underline/overline (in quirks mode only).
532 const CompositionUnderline& underline = underlines[index]; local
534 if (underline.endOffset <= start())
535 // underline is completely before this run. This might be an underline that sits
540 if (underline.startOffset <= end()) {
541 // underline intersects this run. Paint it.
542 paintCompositionUnderline(context, tx, ty, underline);
543 if (underline.endOffset > end() + 1)
544 // underline als
663 Color underline, overline, linethrough; local
906 paintCompositionUnderline(GraphicsContext* ctx, int tx, int ty, const CompositionUnderline& underline) argument
[all...]
H A DInlineFlowBox.cpp667 // 2. Paint our underline and overline.
937 // Trim w and x so that the underline isn't drawn underneath the ellipsis.
970 Color underline, overline, linethrough; local
971 underline = overline = linethrough = styleToUse->color();
973 renderer()->getTextDecorationColors(deco, underline, overline, linethrough);
982 bool linesAreOpaque = !isPrinting && (!paintUnderline || underline.alpha() == 255) && (!paintOverline || overline.alpha() == 255) && (!paintLineThrough || linethrough.alpha() == 255);
1022 context->setStrokeColor(underline, colorSpace);
1024 // Leave one pixel of white between the baseline and the underline.
H A DRenderObject.cpp2230 void RenderObject::getTextDecorationColors(int decorations, Color& underline, Color& overline, argument
2239 underline = decorationColor(curr->style());
2259 underline = decorationColor(curr->style());
/external/libvpx/examples/includes/PHP-Markdown-Extra-1.2.3/
H A Dmarkdown.php2281 [|] ([ ]*[-:]+[-| :]*) \n # $2: Header underline
2308 ([-:]+[ ]*[|][-| :]*) \n # $2: Header underline
2323 $underline = $matches[2]; variable
2329 return $this->_doTable_callback(array($matches[0], $head, $underline, $content));
2333 $underline = $matches[2]; variable
2338 $underline = preg_replace('/[|] *$/m', '', $underline); variable
2341 # Reading alignement from header underline.
2342 $separators = preg_split('/ *[|] */', $underline);
/external/webkit/WebCore/editing/
H A DEditorCommand.cpp1019 RefPtr<CSSPrimitiveValue> underline = CSSPrimitiveValue::createIdentifier(CSSValueUnderline); local
1020 return executeToggleStyleInList(frame, source, EditActionUnderline, CSSPropertyWebkitTextDecorationsInEffect, underline.get());
1253 return stateStyle(frame, CSSPropertyWebkitTextDecorationsInEffect, "underline");

Completed in 180 milliseconds