Home
last modified time | relevance | path

Searched refs:pScriptNode (Results 1 – 4 of 4) sorted by relevance

/external/pdfium/fxjs/
Dcfxjse_engine.cpp426 CFXJSE_Context* CFXJSE_Engine::CreateVariablesContext(CXFA_Node* pScriptNode, in CreateVariablesContext() argument
428 if (!pScriptNode || !pSubform) in CreateVariablesContext()
433 new CXFA_ThisProxy(pSubform, pScriptNode)); in CreateVariablesContext()
437 m_mapVariableToContext[pScriptNode] = std::move(pNewContext); in CreateVariablesContext()
450 bool CFXJSE_Engine::RunVariablesScript(CXFA_Node* pScriptNode) { in RunVariablesScript() argument
451 if (!pScriptNode) in RunVariablesScript()
454 if (pScriptNode->GetElementType() != XFA_Element::Script) in RunVariablesScript()
457 CXFA_Node* pParent = pScriptNode->GetParent(); in RunVariablesScript()
461 auto it = m_mapVariableToContext.find(pScriptNode); in RunVariablesScript()
465 CXFA_Node* pTextNode = pScriptNode->GetFirstChild(); in RunVariablesScript()
[all …]
Dcfxjse_engine.h87 CFXJSE_Context* CreateVariablesContext(CXFA_Node* pScriptNode,
97 bool QueryVariableValue(CXFA_Node* pScriptNode,
101 bool RunVariablesScript(CXFA_Node* pScriptNode);
/external/pdfium/xfa/fxfa/parser/
Dcxfa_thisproxy.cpp13 CXFA_ThisProxy::CXFA_ThisProxy(CXFA_Node* pThisNode, CXFA_Node* pScriptNode) in CXFA_ThisProxy() argument
20 m_pScriptNode(pScriptNode) {} in CXFA_ThisProxy()
Dcxfa_thisproxy.h16 CXFA_ThisProxy(CXFA_Node* pThisNode, CXFA_Node* pScriptNode);