HomeSort by relevance Sort by last modified time
    Searched refs:wsName (Results 1 - 25 of 39) sorted by null

1 2

  /external/pdfium/xfa/fde/css/
fde_cssdatatable.h 45 const CFX_WideStringC& wsName);
49 const CFX_WideStringC& wsName);
52 const CFX_WideStringC& wsName);
54 const FDE_CSSCOLORTABLE* FDE_GetCSSColorByName(const CFX_WideStringC& wsName);
cfde_cssstylesheet.cpp 68 CFX_WideString wsName;
82 wsName = CFX_WideString(strValue);
93 decl->AddProperty(wsName, CFX_WideString(strValue));
fde_cssdatatable.cpp 200 const CFX_WideStringC& wsName) {
201 ASSERT(!wsName.IsEmpty());
202 uint32_t dwHash = FX_HashCode_GetW(wsName, true);
225 const CFX_WideStringC& wsName) {
226 ASSERT(!wsName.IsEmpty());
227 uint32_t dwHash = FX_HashCode_GetW(wsName, true);
246 const CFX_WideStringC& wsName) {
247 ASSERT(!wsName.IsEmpty());
248 uint16_t wHash = FX_HashCode_GetW(wsName, true);
267 const FDE_CSSCOLORTABLE* FDE_GetCSSColorByName(const CFX_WideStringC& wsName) {
    [all...]
cfde_csscomputedstyle.cpp 17 bool CFDE_CSSComputedStyle::GetCustomStyle(const CFX_WideString& wsName,
21 if (wsName == iter->name()) {
cfde_csscomputedstyle.h 95 bool GetCustomStyle(const CFX_WideString& wsName,
  /external/pdfium/xfa/fxfa/app/
cxfa_csstagprovider.h 21 void SetTagName(const CFX_WideString& wsName) { m_wsTagName = wsName; }
cxfa_textparser.cpp 261 bool CXFA_TextParser::TagValidate(const CFX_WideString& wsName) const {
280 FX_HashCode_GetW(wsName.AsStringC(), true));
287 CFX_WideString wsName;
290 pXMLElement->GetLocalTagName(wsName);
291 tagProvider->SetTagName(wsName);
292 tagProvider->m_bTagAvailable = TagValidate(wsName);
xfa_ffbarcode.cpp 96 const CFX_WideStringC& wsName) {
97 if (wsName.IsEmpty())
100 uint32_t uHash = FX_HashCode_GetW(wsName, true);
xfa_ffdoc.cpp 359 CFX_DIBitmap* CXFA_FFDoc::GetPDFNamedImage(const CFX_WideStringC& wsName,
365 uint32_t dwHash = FX_HashCode_GetW(wsName, false);
386 CFX_ByteString bsName = PDF_EncodeText(wsName.c_str(), wsName.GetLength());
  /external/pdfium/xfa/fxfa/parser/
xfa_locale.cpp 34 CFX_WideString wsName;
38 wsName = L"decimal";
42 wsName = L"grouping";
46 wsName = L"percent";
50 wsName = L"minus";
54 wsName = L"zero";
58 wsName = L"symbol";
62 wsName = L"isoname";
73 wsName.AsStringC(), wsNumSymbol);
148 CFX_WideString wsName;
    [all...]
cxfa_validate.cpp 54 CFX_WideStringC wsName;
55 pItemNode->TryCData(XFA_ATTRIBUTE_Name, wsName);
56 if (wsName.IsEmpty() || wsName == wsMessageType) {
91 CFX_WideStringC wsName;
92 pItemNode->TryCData(XFA_ATTRIBUTE_Name, wsName);
93 if (wsName.IsEmpty() || wsName == wsMessageType) {
cxfa_nodehelper.cpp 261 CFX_WideString& wsName,
264 wsName.clear();
266 GetNameExpression(refNode, wsName, false, eLogicType);
273 wsParent += wsName;
274 wsName = wsParent;
285 wsName.Format(L"#%s[%d]", ws.c_str(),
291 wsName.Format(L"%s[%d]", ws.c_str(),
347 CFX_WideString wsName,
356 if (wsName.GetAt(0) == '!') {
357 wsName = wsName.Right(wsName.GetLength() - 1)
    [all...]
cxfa_nodehelper.h 51 CFX_WideString& wsName,
55 bool ResolveNodes_CreateNode(CFX_WideString wsName,
cxfa_resolveprocessor.cpp 80 CFX_WideString wsName = rnd.m_wsName;
85 if (wsName.GetAt(0) == '#') {
87 wsName = wsName.Right(wsName.GetLength() - 1);
90 ToNode(rnd.m_CurNode), wsName.c_str(), bClassName);
105 CFX_WideString wsName = rnd.m_wsName;
107 int32_t iNameLen = wsName.GetLength();
116 CFX_WideStringC(wsName.c_str() + 1, iNameLen - 1), false));
156 CFX_WideString wsName = rnd.m_wsName.Right(rnd.m_wsName.GetLength() - 1)
    [all...]
xfa_utils.cpp 372 XFA_Element XFA_GetElementTypeForName(const CFX_WideStringC& wsName) {
373 if (wsName.IsEmpty())
376 uint32_t uHash = FX_HashCode_GetW(wsName, false);
423 const XFA_ATTRIBUTEINFO* XFA_GetAttributeByName(const CFX_WideStringC& wsName) {
424 if (wsName.IsEmpty())
427 uint32_t uHash = FX_HashCode_GetW(wsName, false);
449 const CFX_WideStringC& wsName) {
450 if (wsName.IsEmpty())
453 uint32_t uHash = FX_HashCode_GetW(wsName, false);
cxfa_nodelist.cpp 26 CXFA_Node* CXFA_NodeList::NamedItem(const CFX_WideStringC& wsName) {
27 uint32_t dwHashCode = FX_HashCode_GetW(wsName, false);
xfa_locale.h 47 const CFX_WideStringC& wsName,
88 const CFX_WideStringC& wsName) const;
xfa_utils.h 197 XFA_Element XFA_GetElementTypeForName(const CFX_WideStringC& wsName);
206 const XFA_ATTRIBUTEINFO* XFA_GetAttributeByName(const CFX_WideStringC& wsName);
209 const CFX_WideStringC& wsName);
cxfa_simple_parser.cpp 234 const XFA_PACKETINFO* GetPacketByName(const CFX_WideStringC& wsName) {
235 if (wsName.IsEmpty())
238 uint32_t uHash = FX_HashCode_GetW(wsName, false);
850 CFX_WideString wsName;
851 static_cast<CFDE_XMLElement*>(pXMLDocumentNode)->GetLocalTagName(wsName);
852 pNode->SetCData(XFA_ATTRIBUTE_Name, wsName);
    [all...]
  /external/pdfium/xfa/fxfa/
xfa_ffdoc.h 52 CFX_DIBitmap* GetPDFNamedImage(const CFX_WideStringC& wsName,
xfa_ffdocview.h 62 CXFA_FFWidget* GetWidgetByName(const CFX_WideString& wsName,
64 CXFA_WidgetAcc* GetWidgetAccByName(const CFX_WideString& wsName,
fxfa_widget.h 39 bool GetName(CFX_WideString& wsName, int32_t iNameType = 0);
  /external/pdfium/core/fxge/win32/
fx_win32_print.cpp 233 const CFX_WideString wsName = pFont->GetFaceName().UTF8Decode();
234 int iNameLen = std::min(wsName.GetLength(), LF_FACESIZE - 1);
235 memcpy(lf.lfFaceName, wsName.c_str(), sizeof(lf.lfFaceName[0]) * iNameLen);
266 if (wsName != wsSelectedName)
  /external/pdfium/xfa/fxfa/fm2js/
xfa_expression.h 47 const CFX_WideStringC& wsName,
65 const CFX_WideStringC& wsName,
xfa_expression.cpp 36 const CFX_WideStringC& wsName,
40 m_wsName(wsName),
105 const CFX_WideStringC& wsName,
108 m_wsName(wsName),

Completed in 334 milliseconds

1 2