summaryrefslogtreecommitdiff
path: root/xfa/fxfa/parser/xfa_script_resolveprocessor.h
diff options
context:
space:
mode:
authordsinclair <dsinclair@chromium.org>2016-07-20 06:34:45 -0700
committerCommit bot <commit-bot@chromium.org>2016-07-20 06:34:45 -0700
commit31f8740fe51ceca8e973a2efe40d4d440d7a5cb7 (patch)
tree1ca536ca7019d3ac5f63ccaf9436ee40d6165d00 /xfa/fxfa/parser/xfa_script_resolveprocessor.h
parentc1515ef195a2310f1d07838902eb10d66f66dbed (diff)
downloadpdfium-31f8740fe51ceca8e973a2efe40d4d440d7a5cb7.tar.xz
Rename remaining xfa_script_* files.
This Cl renames the remaining xfa_script_* files to match the class names contained within the files. Review-Url: https://codereview.chromium.org/2160343002
Diffstat (limited to 'xfa/fxfa/parser/xfa_script_resolveprocessor.h')
-rw-r--r--xfa/fxfa/parser/xfa_script_resolveprocessor.h78
1 files changed, 0 insertions, 78 deletions
diff --git a/xfa/fxfa/parser/xfa_script_resolveprocessor.h b/xfa/fxfa/parser/xfa_script_resolveprocessor.h
deleted file mode 100644
index d8f16b1e50..0000000000
--- a/xfa/fxfa/parser/xfa_script_resolveprocessor.h
+++ /dev/null
@@ -1,78 +0,0 @@
-// Copyright 2014 PDFium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
-
-#ifndef XFA_FXFA_PARSER_XFA_SCRIPT_RESOLVEPROCESSOR_H_
-#define XFA_FXFA_PARSER_XFA_SCRIPT_RESOLVEPROCESSOR_H_
-
-#include "xfa/fxfa/parser/xfa_object.h"
-#include "xfa/fxfa/parser/xfa_script.h"
-
-class CXFA_NodeHelper;
-class CXFA_ScriptContext;
-
-class CXFA_ResolveNodesData {
- public:
- CXFA_ResolveNodesData(CXFA_ScriptContext* pSC = nullptr);
- ~CXFA_ResolveNodesData();
-
- CXFA_ScriptContext* m_pSC;
- CXFA_Object* m_CurNode;
- CFX_WideString m_wsName;
- XFA_HashCode m_uHashName;
- CFX_WideString m_wsCondition;
- int32_t m_nLevel;
- CXFA_ObjArray m_Nodes;
- uint32_t m_dwStyles;
- const XFA_SCRIPTATTRIBUTEINFO* m_pScriptAttribute;
- XFA_RESOVENODE_RSTYPE m_dwFlag;
-};
-
-class CXFA_ResolveProcessor {
- public:
- CXFA_ResolveProcessor();
- ~CXFA_ResolveProcessor();
-
- int32_t Resolve(CXFA_ResolveNodesData& rnd);
- int32_t GetFilter(const CFX_WideStringC& wsExpression,
- int32_t nStart,
- CXFA_ResolveNodesData& rnd);
- int32_t SetResultCreateNode(XFA_RESOLVENODE_RS& resolveNodeRS,
- CFX_WideString& wsLastCondition);
- void SetIndexDataBind(CFX_WideString& wsNextCondition,
- int32_t& iIndex,
- int32_t iCount);
- void SetCurStart(int32_t start) { m_iCurStart = start; }
-
- CXFA_NodeHelper* GetNodeHelper() { return m_pNodeHelper; }
-
- private:
- int32_t ResolveForAttributeRs(CXFA_Object* curNode,
- CXFA_ResolveNodesData& rnd,
- const CFX_WideStringC& strAttr);
- int32_t ResolveAnyChild(CXFA_ResolveNodesData& rnd);
- int32_t ResolveDollar(CXFA_ResolveNodesData& rnd);
- int32_t ResolveExcalmatory(CXFA_ResolveNodesData& rnd);
- int32_t ResolveNumberSign(CXFA_ResolveNodesData& rnd);
- int32_t ResolveAsterisk(CXFA_ResolveNodesData& rnd);
- int32_t ResolveNormal(CXFA_ResolveNodesData& rnd);
- int32_t ResolvePopStack(CFX_Int32Array& stack);
- void SetStylesForChild(uint32_t dwParentStyles, CXFA_ResolveNodesData& rnd);
-
- void ConditionArray(int32_t iCurIndex,
- CFX_WideString wsCondition,
- int32_t iFoundCount,
- CXFA_ResolveNodesData& rnd);
- void DoPredicateFilter(int32_t iCurIndex,
- CFX_WideString wsCondition,
- int32_t iFoundCount,
- CXFA_ResolveNodesData& rnd);
- void FilterCondition(CXFA_ResolveNodesData& rnd, CFX_WideString wsCondition);
-
- int32_t m_iCurStart;
- CXFA_NodeHelper* m_pNodeHelper;
-};
-
-#endif // XFA_FXFA_PARSER_XFA_SCRIPT_RESOLVEPROCESSOR_H_