Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(265)

Side by Side Diff: xfa/fxfa/parser/xfa_script_nodehelper.h

Issue 1835703002: Remove FX_DWORD from XFA, part 2 (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « xfa/fxfa/parser/xfa_script_imp.h ('k') | xfa/fxfa/parser/xfa_script_resolveprocessor.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 PDFium Authors. All rights reserved. 1 // Copyright 2014 PDFium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6 6
7 #ifndef XFA_FXFA_PARSER_XFA_SCRIPT_NODEHELPER_H_ 7 #ifndef XFA_FXFA_PARSER_XFA_SCRIPT_NODEHELPER_H_
8 #define XFA_FXFA_PARSER_XFA_SCRIPT_NODEHELPER_H_ 8 #define XFA_FXFA_PARSER_XFA_SCRIPT_NODEHELPER_H_
9 9
10 #include "xfa/fxfa/parser/xfa_object.h" 10 #include "xfa/fxfa/parser/xfa_object.h"
(...skipping 11 matching lines...) Expand all
22 CXFA_NodeHelper(void); 22 CXFA_NodeHelper(void);
23 ~CXFA_NodeHelper(void); 23 ~CXFA_NodeHelper(void);
24 CXFA_Node* XFA_ResolveNodes_GetOneChild(CXFA_Node* parent, 24 CXFA_Node* XFA_ResolveNodes_GetOneChild(CXFA_Node* parent,
25 const FX_WCHAR* pwsName, 25 const FX_WCHAR* pwsName,
26 FX_BOOL bIsClassName = FALSE); 26 FX_BOOL bIsClassName = FALSE);
27 CXFA_Node* XFA_ResolveNodes_GetParent( 27 CXFA_Node* XFA_ResolveNodes_GetParent(
28 CXFA_Node* pNode, 28 CXFA_Node* pNode,
29 XFA_LOGIC_TYPE eLogicType = XFA_LOGIC_NoTransparent); 29 XFA_LOGIC_TYPE eLogicType = XFA_LOGIC_NoTransparent);
30 30
31 int32_t XFA_NodeAcc_TraverseSiblings(CXFA_Node* parent, 31 int32_t XFA_NodeAcc_TraverseSiblings(CXFA_Node* parent,
32 FX_DWORD dNameHash, 32 uint32_t dNameHash,
33 CXFA_NodeArray* pSiblings, 33 CXFA_NodeArray* pSiblings,
34 XFA_LOGIC_TYPE eLogicType, 34 XFA_LOGIC_TYPE eLogicType,
35 FX_BOOL bIsClassName = FALSE, 35 FX_BOOL bIsClassName = FALSE,
36 FX_BOOL bIsFindProperty = TRUE); 36 FX_BOOL bIsFindProperty = TRUE);
37 int32_t XFA_NodeAcc_TraverseAnySiblings(CXFA_Node* parent, 37 int32_t XFA_NodeAcc_TraverseAnySiblings(CXFA_Node* parent,
38 FX_DWORD dNameHash, 38 uint32_t dNameHash,
39 CXFA_NodeArray* pSiblings, 39 CXFA_NodeArray* pSiblings,
40 FX_BOOL bIsClassName = FALSE); 40 FX_BOOL bIsClassName = FALSE);
41 int32_t XFA_CountSiblings(CXFA_Node* pNode, 41 int32_t XFA_CountSiblings(CXFA_Node* pNode,
42 XFA_LOGIC_TYPE eLogicType, 42 XFA_LOGIC_TYPE eLogicType,
43 CXFA_NodeArray* pSiblings, 43 CXFA_NodeArray* pSiblings,
44 FX_BOOL bIsClassName = FALSE); 44 FX_BOOL bIsClassName = FALSE);
45 int32_t XFA_GetIndex(CXFA_Node* pNode, 45 int32_t XFA_GetIndex(CXFA_Node* pNode,
46 XFA_LOGIC_TYPE eLogicType = XFA_LOGIC_NoTransparent, 46 XFA_LOGIC_TYPE eLogicType = XFA_LOGIC_NoTransparent,
47 FX_BOOL bIsProperty = FALSE, 47 FX_BOOL bIsProperty = FALSE,
48 FX_BOOL bIsClassIndex = FALSE); 48 FX_BOOL bIsClassIndex = FALSE);
(...skipping 14 matching lines...) Expand all
63 public: 63 public:
64 XFA_ELEMENT m_eLastCreateType; 64 XFA_ELEMENT m_eLastCreateType;
65 CXFA_Node* m_pCreateParent; 65 CXFA_Node* m_pCreateParent;
66 int32_t m_iCreateCount; 66 int32_t m_iCreateCount;
67 XFA_RESOVENODE_RSTYPE m_iCreateFlag; 67 XFA_RESOVENODE_RSTYPE m_iCreateFlag;
68 int32_t m_iCurAllStart; 68 int32_t m_iCurAllStart;
69 CXFA_Node* m_pAllStartParent; 69 CXFA_Node* m_pAllStartParent;
70 }; 70 };
71 71
72 #endif // XFA_FXFA_PARSER_XFA_SCRIPT_NODEHELPER_H_ 72 #endif // XFA_FXFA_PARSER_XFA_SCRIPT_NODEHELPER_H_
OLDNEW
« no previous file with comments | « xfa/fxfa/parser/xfa_script_imp.h ('k') | xfa/fxfa/parser/xfa_script_resolveprocessor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698