Home
last modified time | relevance | path

Searched refs:CFX_XMLInstruction (Results 1 – 7 of 7) sorted by relevance

/external/pdfium/core/fxcrt/xml/
Dcfx_xmlinstruction.cpp15 CFX_XMLInstruction::CFX_XMLInstruction(const WideString& wsTarget) in CFX_XMLInstruction() function in CFX_XMLInstruction
18 CFX_XMLInstruction::~CFX_XMLInstruction() = default;
20 CFX_XMLNode::Type CFX_XMLInstruction::GetType() const { in GetType()
24 CFX_XMLNode* CFX_XMLInstruction::Clone(CFX_XMLDocument* doc) { in Clone()
25 auto* node = doc->CreateNode<CFX_XMLInstruction>(name_); in Clone()
30 void CFX_XMLInstruction::AppendData(const WideString& wsData) { in AppendData()
34 bool CFX_XMLInstruction::IsOriginalXFAVersion() const { in IsOriginalXFAVersion()
38 bool CFX_XMLInstruction::IsAcrobat() const { in IsAcrobat()
42 void CFX_XMLInstruction::Save( in Save()
Dcfx_xmlinstruction_unittest.cpp17 CFX_XMLInstruction node(L"acrobat"); in TEST()
22 CFX_XMLInstruction node(L"acrobat"); in TEST()
28 CFX_XMLInstruction node(L"originalXFAVersion"); in TEST()
34 CFX_XMLInstruction node(L"acrobat"); in TEST()
49 CFX_XMLInstruction node(L"acrobat"); in TEST()
57 CFX_XMLInstruction* inst = ToXMLInstruction(clone); in TEST()
68 CFX_XMLInstruction node(L"xml"); in TEST()
75 CFX_XMLInstruction node(L"acrobat"); in TEST()
101 CFX_XMLInstruction* node = ToXMLInstruction(root->GetFirstChild()); in TEST()
137 CFX_XMLInstruction* instruction = nullptr; in TEST()
Dcfx_xmlinstruction.h17 class CFX_XMLInstruction final : public CFX_XMLNode {
19 explicit CFX_XMLInstruction(const WideString& wsTarget);
20 ~CFX_XMLInstruction() override;
38 inline CFX_XMLInstruction* ToXMLInstruction(CFX_XMLNode* pNode) { in ToXMLInstruction()
40 ? static_cast<CFX_XMLInstruction*>(pNode) in ToXMLInstruction()
Dcfx_xmlparser.cpp172 auto* node = doc->CreateNode<CFX_XMLInstruction>(target_name); in DoSyntaxParse()
531 CFX_XMLInstruction* instruction = ToXMLInstruction(current_node_); in ProcessTargetData()
Dcfx_xmlparser_unittest.cpp326 CFX_XMLInstruction* instruction = ToXMLInstruction(root->GetFirstChild()); in TEST_F()
/external/pdfium/xfa/fxfa/parser/
Dcxfa_document_parser.h21 class CFX_XMLInstruction; variable
72 CFX_XMLInstruction* pXMLInstruction,
Dcxfa_document_parser.cpp263 doc->GetRoot()->InsertChildNode(doc->CreateNode<CFX_XMLInstruction>(L"xml"), in LoadXML()
1022 CFX_XMLInstruction* pXMLInstruction, in ParseInstruction()