Home
last modified time | relevance | path

Searched refs:dwNameHash (Results 1 – 6 of 6) sorted by relevance

/external/pdfium/xfa/fxfa/parser/
Dcxfa_document.cpp196 uint32_t dwNameHash = pTemplateNode->GetNameHash(); in CloneOrMergeInstanceManager() local
207 if (dwNameHash != pNode->GetNameHash()) in CloneOrMergeInstanceManager()
260 uint32_t dwNameHash, in ScopeMatchGlobalBinding() argument
268 for (CXFA_Node* pDataChild = pCurDataScope->GetFirstChildByName(dwNameHash); in ScopeMatchGlobalBinding()
270 pDataChild = pDataChild->GetNextSameNameSibling(dwNameHash)) { in ScopeMatchGlobalBinding()
286 CXFA_Node* pDataNode = ScopeMatchGlobalBinding(pDataChild, dwNameHash, in ScopeMatchGlobalBinding()
304 uint32_t dwNameHash = FX_HashCode_GetW(wsName.AsStringView()); in FindGlobalDataNode() local
305 CXFA_Node* pBounded = pDocument->GetGlobalBinding(dwNameHash); in FindGlobalDataNode()
308 ScopeMatchGlobalBinding(pDataScope, dwNameHash, eMatchNodeType, true); in FindGlobalDataNode()
310 pDocument->RegisterGlobalBinding(dwNameHash, pBounded); in FindGlobalDataNode()
[all …]
Dxfa_document_datamerger_imp.cpp28 uint32_t dwNameHash, in XFA_DataMerge_FindFormDOMInstance() argument
33 pFormChild->GetNameHash() == dwNameHash && pFormChild->IsUnusedNode()) { in XFA_DataMerge_FindFormDOMInstance()
Dcxfa_document.h139 CXFA_Node* GetGlobalBinding(uint32_t dwNameHash);
140 void RegisterGlobalBinding(uint32_t dwNameHash, CXFA_Node* pDataNode);
Dxfa_document_datamerger_imp.h28 uint32_t dwNameHash,
Dcxfa_node.cpp573 uint32_t dwNameHash = pNode->GetNameHash(); in NodeSetPairForNode() local
574 if (!pParentNode || !dwNameHash) in NodeSetPairForNode()
577 return &((*pMap)[pParentNode][dwNameHash]); in NodeSetPairForNode()
675 uint32_t dwNameHash,
681 CXFA_Node* FindFirstSiblingNamed(CXFA_Node* parent, uint32_t dwNameHash) { in FindFirstSiblingNamed() argument
682 CXFA_Node* result = FindFirstSiblingNamedInList(parent, dwNameHash, in FindFirstSiblingNamed()
687 return FindFirstSiblingNamedInList(parent, dwNameHash, in FindFirstSiblingNamed()
692 uint32_t dwNameHash, in FindFirstSiblingNamedInList() argument
695 if (child->GetNameHash() == dwNameHash) in FindFirstSiblingNamedInList()
698 CXFA_Node* result = FindFirstSiblingNamed(child, dwNameHash); in FindFirstSiblingNamedInList()
[all …]
/external/pdfium/fxjs/xfa/
Dcfxjse_resolveprocessor.cpp139 XFA_HashCode dwNameHash = static_cast<XFA_HashCode>( in ResolveDollar() local
141 if (dwNameHash == XFA_HASHCODE_Xfa) { in ResolveDollar()
144 CXFA_Object* pObjNode = pDocument->GetXFAObject(dwNameHash); in ResolveDollar()