• Home
  • Raw
  • Download

Lines Matching refs:wsValue

299     WideString wsValue = pXMLElement->GetAttribute(L"style");  in ParseTagInfo()  local
300 if (!wsValue.IsEmpty()) in ParseTagInfo()
301 tagProvider->SetAttribute(L"style", wsValue); in ParseTagInfo()
319 WideString wsValue; in GetTabInterval() local
320 if (pStyle && pStyle->GetCustomStyle(L"tab-interval", &wsValue)) in GetTabInterval()
321 return CXFA_Measurement(wsValue.AsStringView()).ToUnit(XFA_Unit::Pt); in GetTabInterval()
326 WideString wsValue; in CountTabs() local
327 if (pStyle && pStyle->GetCustomStyle(L"xfa-tab-count", &wsValue)) in CountTabs()
328 return wsValue.GetInteger(); in CountTabs()
333 WideString wsValue; in IsSpaceRun() local
334 return pStyle && pStyle->GetCustomStyle(L"xfa-spacerun", &wsValue) && in IsSpaceRun()
335 wsValue.EqualsASCIINoCase("yes"); in IsSpaceRun()
382 WideString wsValue; in GetHorScale() local
383 if (pStyle->GetCustomStyle(L"xfa-font-horizontal-scale", &wsValue)) in GetHorScale()
384 return wsValue.GetInteger(); in GetHorScale()
392 L"xfa-font-horizontal-scale", &wsValue)) { in GetHorScale()
393 return wsValue.GetInteger(); in GetHorScale()
407 WideString wsValue; in GetVerScale() local
408 if (pStyle->GetCustomStyle(L"xfa-font-vertical-scale", &wsValue)) in GetVerScale()
409 return wsValue.GetInteger(); in GetVerScale()
437 WideString wsValue; in GetUnderline() local
438 if (pStyle->GetCustomStyle(L"underlinePeriod", &wsValue)) { in GetUnderline()
439 if (wsValue.EqualsASCII("word")) in GetUnderline()
551 WideString wsValue; in GetTabstops() local
552 if (!pStyle->GetCustomStyle(L"xfa-tab-stops", &wsValue) && in GetTabstops()
553 !pStyle->GetCustomStyle(L"tab-stops", &wsValue)) { in GetTabstops()
557 pdfium::span<const wchar_t> spTabStops = wsValue.span(); in GetTabstops()