Searched defs:underline (Results 1 - 7 of 7) 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/Source/WebKit2/Shared/
H A DWebCoreArgumentCoders.h402 static void encode(ArgumentEncoder* encoder, const WebCore::CompositionUnderline& underline) argument
404 encoder->encode(CoreIPC::In(underline.startOffset, underline.endOffset, underline.thick, underline.color));
407 static bool decode(ArgumentDecoder* decoder, WebCore::CompositionUnderline& underline) argument
409 return decoder->decode(CoreIPC::Out(underline.startOffset, underline.endOffset, underline.thick, underline
[all...]
/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/Source/WebCore/editing/
H A DEditorCommand.cpp1072 RefPtr<CSSPrimitiveValue> underline = CSSPrimitiveValue::createIdentifier(CSSValueUnderline); local
1073 return executeToggleStyleInList(frame, source, EditActionUnderline, CSSPropertyWebkitTextDecorationsInEffect, underline.get());
1322 return stateStyle(frame, CSSPropertyWebkitTextDecorationsInEffect, "underline");
/external/webkit/Source/WebCore/rendering/
H A DInlineTextBox.cpp562 // 2. Now paint the foreground, including text and decorations like underline/overline (in quirks mode only).
748 const CompositionUnderline& underline = underlines[index]; local
750 if (underline.endOffset <= start())
751 // underline is completely before this run. This might be an underline that sits
756 if (underline.startOffset <= end()) {
757 // underline intersects this run. Paint it.
758 paintCompositionUnderline(context, boxOrigin, underline);
759 if (underline.endOffset > end() + 1)
760 // underline als
892 Color underline, overline, linethrough; local
1158 paintCompositionUnderline(GraphicsContext* ctx, const FloatPoint& boxOrigin, const CompositionUnderline& underline) argument
[all...]
H A DRenderObject.cpp2306 void RenderObject::getTextDecorationColors(int decorations, Color& underline, Color& overline, argument
2315 underline = decorationColor(curr);
2335 underline = decorationColor(curr);

Completed in 388 milliseconds