Home
last modified time | relevance | path

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

/external/pdfium/fxjs/xfa/
Dcfxjse_engine.cpp494 CFXJSE_Context* CFXJSE_Engine::CreateVariablesContext(CXFA_Node* pScriptNode, in CreateVariablesContext() argument
496 if (!pScriptNode || !pSubform) in CreateVariablesContext()
501 new CXFA_ThisProxy(pSubform, pScriptNode)); in CreateVariablesContext()
505 m_mapVariableToContext[pScriptNode] = std::move(pNewContext); in CreateVariablesContext()
518 bool CFXJSE_Engine::RunVariablesScript(CXFA_Node* pScriptNode) { in RunVariablesScript() argument
519 if (!pScriptNode) in RunVariablesScript()
522 if (pScriptNode->GetElementType() != XFA_Element::Script) in RunVariablesScript()
525 CXFA_Node* pParent = pScriptNode->GetParent(); in RunVariablesScript()
529 auto it = m_mapVariableToContext.find(pScriptNode); in RunVariablesScript()
533 CXFA_Node* pTextNode = pScriptNode->GetFirstChild(); in RunVariablesScript()
[all …]
Dcfxjse_engine.h106 CFXJSE_Context* CreateVariablesContext(CXFA_Node* pScriptNode,
116 bool QueryVariableValue(CXFA_Node* pScriptNode,
120 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
19 m_pScriptNode(pScriptNode) {} in CXFA_ThisProxy()
Dcxfa_thisproxy.h17 CXFA_ThisProxy(CXFA_Node* pThisNode, CXFA_Node* pScriptNode);