Lines Matching refs:dwDecoration
146 uint32_t dwDecoration = 0; in CreateRootStyle() local
148 dwDecoration |= CFX_CSSTEXTDECORATION_LineThrough; in CreateRootStyle()
150 dwDecoration |= CFX_CSSTEXTDECORATION_Double; in CreateRootStyle()
152 dwDecoration |= CFX_CSSTEXTDECORATION_Underline; in CreateRootStyle()
154 pStyle->SetTextDecoration(dwDecoration); in CreateRootStyle()
168 uint32_t dwDecoration = pParentStyle->GetTextDecoration(); in CreateStyle() local
173 pNewStyle->SetTextDecoration(dwDecoration); in CreateStyle()
420 uint32_t dwDecoration = pStyle->GetTextDecoration(); in GetUnderline() local
421 if (dwDecoration & CFX_CSSTEXTDECORATION_Double) in GetUnderline()
423 else if (dwDecoration & CFX_CSSTEXTDECORATION_Underline) in GetUnderline()
439 uint32_t dwDecoration = pStyle->GetTextDecoration(); in GetLinethrough() local
440 iLinethrough = (dwDecoration & CFX_CSSTEXTDECORATION_LineThrough) ? 1 : 0; in GetLinethrough()