Home
last modified time | relevance | path

Searched refs:xmlNodePtr (Results 1 – 25 of 116) sorted by relevance

12345

/external/libxml2/include/libxml/
DdebugXML.h41 xmlNodePtr node,
45 xmlNodePtr node,
49 xmlNodePtr node,
81 xmlLsOneNode (FILE *output, xmlNodePtr node);
83 xmlLsCountNode (xmlNodePtr node);
116 xmlNodePtr node;
136 xmlNodePtr node,
137 xmlNodePtr node2);
147 xmlNodePtr node,
148 xmlNodePtr node2);
[all …]
Dtree.h488 typedef xmlNode *xmlNodePtr; typedef
604 xmlNodePtr node,
772 xmlNewNs (xmlNodePtr node,
790 xmlNewProp (xmlNodePtr node,
795 xmlNewNsProp (xmlNodePtr node,
800 xmlNewNsPropEatName (xmlNodePtr node,
809 xmlCopyProp (xmlNodePtr target,
812 xmlCopyPropList (xmlNodePtr target,
826 XMLPUBFUN xmlNodePtr XMLCALL
831 XMLPUBFUN xmlNodePtr XMLCALL
[all …]
Dxpointer.h54 xmlXPtrNewRange (xmlNodePtr start,
56 xmlNodePtr end,
62 xmlXPtrNewRangeNodePoint (xmlNodePtr start,
66 xmlNodePtr end);
68 xmlXPtrNewRangeNodes (xmlNodePtr start,
69 xmlNodePtr end);
71 xmlXPtrNewLocationSetNodes (xmlNodePtr start,
72 xmlNodePtr end);
76 xmlXPtrNewRangeNodeObject (xmlNodePtr start,
79 xmlXPtrNewCollapsedRange (xmlNodePtr start);
[all …]
DxpathInternals.h376 xmlNodePtr val);
395 xmlNodePtr node);
401 xmlNodePtr node);
408 xmlNodePtr node);
414 xmlNodePtr node);
500 xmlXPathNewNodeSet (xmlNodePtr val);
502 xmlXPathNewValueTree (xmlNodePtr val);
505 xmlNodePtr val);
508 xmlNodePtr val);
511 xmlNodePtr node,
[all …]
Dxpath.h84 xmlNodePtr *nodeTab; /* array of nodes in no particular order */
290 xmlNodePtr node; /* The current node */
319 xmlNodePtr here; /* for here() */
320 xmlNodePtr origin; /* for origin() */
346 xmlNodePtr debugNode; /* the source node XSLT */
384 xmlNodePtr ancestor; /* used for walking preceding axis */
443 xmlXPathNodeSetCreate (xmlNodePtr val);
451 xmlXPathCmpNodes (xmlNodePtr node1,
452 xmlNodePtr node2);
470 xmlXPathCastNodeToNumber (xmlNodePtr node);
[all …]
Dvalid.h88 xmlNodePtr node; /* Current parsed Node */
91 xmlNodePtr *nodeTab; /* array of nodes */
279 xmlNodePtr elem,
295 xmlNodePtr elem,
323 xmlNodePtr elem,
329 xmlNodePtr elem,
356 xmlNodePtr elem);
360 xmlNodePtr elem);
364 xmlNodePtr elem,
370 xmlNodePtr elem,
[all …]
Dxlink.h64 typedef void (*xlinkNodeDetectFunc) (void *ctx, xmlNodePtr node);
83 xmlNodePtr node,
108 xmlNodePtr node,
136 xmlNodePtr node,
181 xmlNodePtr node);
/external/wpa_supplicant_8/src/utils/
Dxml_libxml2.c57 xmlNodePtr n; in xml_validate()
70 n = xmlDocCopyNode((xmlNodePtr) node, doc, 1); in xml_validate()
119 xmlNodePtr n; in xml_validate_dtd()
131 n = xmlDocCopyNode((xmlNodePtr) node, doc, 1); in xml_validate_dtd()
169 xmlFreeNode((xmlNodePtr) node); in xml_node_free()
175 return (xml_node_t *) ((xmlNodePtr) node)->parent; in xml_node_get_parent()
182 xmlNodePtr node; in xml_node_from_buf()
198 return (const char *) ((xmlNodePtr) node)->name; in xml_node_get_localname()
207 xmlNodePtr n = (xmlNodePtr) node; in xml_node_to_str()
247 xmlUnlinkNode((xmlNodePtr) node); in xml_node_detach()
[all …]
/external/dynamic_depth/internal/xmpmeta/xml/
Dsearch.cc15 xmlNodePtr DepthFirstSearch(const xmlDocPtr parent, const char* name) { in DepthFirstSearch()
19 xmlNodePtr DepthFirstSearch(const xmlDocPtr parent, const char* prefix, in DepthFirstSearch()
25 xmlNodePtr result; in DepthFirstSearch()
26 for (xmlNodePtr node = parent->children; node != nullptr; node = node->next) { in DepthFirstSearch()
36 xmlNodePtr DepthFirstSearch(const xmlNodePtr parent, const char* name) { in DepthFirstSearch()
40 xmlNodePtr DepthFirstSearch(const xmlNodePtr parent, const char* prefix, in DepthFirstSearch()
46 std::stack<xmlNodePtr> node_stack; in DepthFirstSearch()
49 const xmlNodePtr current_node = node_stack.top(); in DepthFirstSearch()
60 std::stack<xmlNodePtr> stack_to_reverse; in DepthFirstSearch()
61 for (xmlNodePtr child = current_node->children; child != nullptr; in DepthFirstSearch()
Dutils.h25 xmlNodePtr GetFirstDescriptionElement(xmlDocPtr parent);
28 xmlNodePtr GetFirstSeqElement(xmlDocPtr parent);
32 xmlNodePtr GetFirstSeqElement(xmlNodePtr parent);
37 xmlNodePtr GetElementAt(xmlNodePtr node, int index);
46 const string GetLiNodeContent(xmlNodePtr node);
Dutils.cc12 xmlNodePtr GetFirstDescriptionElement(const xmlDocPtr parent) { in GetFirstDescriptionElement()
16 xmlNodePtr GetFirstSeqElement(xmlDocPtr parent) { in GetFirstSeqElement()
22 xmlNodePtr GetFirstSeqElement(xmlNodePtr parent) { in GetFirstSeqElement()
29 xmlNodePtr GetElementAt(xmlNodePtr node, int index) { in GetElementAt()
40 for (xmlNodePtr child = node->children; child != nullptr && i <= index; in GetElementAt()
55 const string GetLiNodeContent(xmlNodePtr node) { in GetLiNodeContent()
Ddeserializer_impl.cc38 xmlNodePtr FindSeqNode(const xmlNodePtr node, const string& prefix, in FindSeqNode()
40 xmlNodePtr parent_node = in FindSeqNode()
50 bool GetStringProperty(const xmlNodePtr node, const string& prefix, in GetStringProperty()
72 bool ReadNodeContent(const xmlNodePtr node, const string& prefix, in ReadNodeContent()
90 bool ReadStringProperty(const xmlNodePtr node, const string& prefix, in ReadStringProperty()
110 bool ReadBase64Property(const xmlNodePtr node, const string& prefix, in ReadBase64Property()
121 DeserializerImpl::DeserializerImpl(const xmlNodePtr node) in DeserializerImpl()
131 xmlNodePtr child_node = in CreateDeserializer()
156 const xmlNodePtr list_node = [&] { in CreateDeserializerFromListElementAt()
168 xmlNodePtr seq_node = GetFirstSeqElement(list_node); in CreateDeserializerFromListElementAt()
[all …]
Dsearch.h15 xmlNodePtr DepthFirstSearch(const xmlDocPtr parent, const char* name);
20 xmlNodePtr DepthFirstSearch(const xmlDocPtr parent, const char* prefix,
26 xmlNodePtr DepthFirstSearch(const xmlNodePtr parent, const char* name);
31 xmlNodePtr DepthFirstSearch(const xmlNodePtr parent, const char* prefix,
Dserializer_impl.cc17 const std::unordered_map<string, xmlNsPtr>& namespaces, xmlNodePtr node) in SerializerImpl()
45 const std::unordered_map<string, xmlNsPtr>& namespaces, xmlNodePtr node) { in FromDataAndSerializeNamespaces()
69 xmlNodePtr new_node = in CreateSerializer()
94 xmlNodePtr li_node = xmlNewNode(nullptr, ToXmlChar(XmlConst::RdfLi())); in CreateItemSerializer()
95 xmlNodePtr new_node = in CreateItemSerializer()
117 xmlNodePtr list_node = in CreateListSerializer()
121 xmlNodePtr seq_node = xmlNewNode(nullptr, ToXmlChar(XmlConst::RdfSeq())); in CreateListSerializer()
183 xmlNodePtr array_parent_node = in WriteIntArray()
189 xmlNodePtr seq_node = xmlNewNode(nullptr, ToXmlChar(XmlConst::RdfSeq())); in WriteIntArray()
193 xmlNodePtr li_node = xmlNewNode(nullptr, ToXmlChar(XmlConst::RdfLi())); in WriteIntArray()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/WindowsManifest/
DWindowsManifestMerger.cpp89 static xmlNodePtr getChildWithName(xmlNodePtr Parent, in getChildWithName()
91 for (xmlNodePtr Child = Parent->children; Child; Child = Child->next) { in getChildWithName()
99 static xmlAttrPtr getAttribute(xmlNodePtr Node, in getAttribute()
127 static xmlNsPtr search(const unsigned char *HRef, xmlNodePtr Node) { in search()
155 xmlNodePtr Node) { in searchOrDefine()
166 xmlNodePtr OriginalNode, in copyAttributeNamespace()
180 xmlNodePtr Node) { in getNamespaceWithPrefix()
194 static xmlNsPtr getClosestDefault(xmlNodePtr Node) { in getClosestDefault()
208 static Error mergeAttributes(xmlNodePtr OriginalNode, in mergeAttributes()
209 xmlNodePtr AdditionalNode) { in mergeAttributes()
[all …]
/external/libxml2/os400/libxmlrpg/
Dtree.rpgle270 d xmlNodePtr s * based(######typedef######)
286 d children like(xmlNodePtr) NULL
287 d last like(xmlNodePtr) NULL
289 d next like(xmlNodePtr) next sibling link
290 d prev like(xmlNodePtr) previous sibling lnk
382 d children like(xmlNodePtr) NULL
383 d last like(xmlNodePtr) NULL
385 d next like(xmlNodePtr) next sibling link
386 d prev like(xmlNodePtr) previous sibling lnk
434 d children like(xmlNodePtr) Property link value
[all …]
DdebugXML.rpgle42 d node value like(xmlNodePtr)
48 d node value like(xmlNodePtr)
54 d node value like(xmlNodePtr)
97 d node value like(xmlNodePtr)
101 d node value like(xmlNodePtr)
137 d node like(xmlNodePtr)
169 d node value like(xmlNodePtr)
170 d node2 value like(xmlNodePtr)
176 d node value like(xmlNodePtr)
177 d node2 value like(xmlNodePtr)
[all …]
Dxpointer.rpgle57 d start value like(xmlNodePtr)
59 d end value like(xmlNodePtr)
71 d start value like(xmlNodePtr)
78 d end value like(xmlNodePtr)
83 d start value like(xmlNodePtr)
84 d end value like(xmlNodePtr)
89 d start value like(xmlNodePtr)
90 d end value like(xmlNodePtr)
101 d start value like(xmlNodePtr)
107 d start value like(xmlNodePtr)
[all …]
DxpathInternals.rpgle105 d val value like(xmlNodePtr)
139 d node value like(xmlNodePtr)
151 d node value like(xmlNodePtr)
163 d node value like(xmlNodePtr)
175 d node value like(xmlNodePtr)
325 d val value like(xmlNodePtr)
330 d val value like(xmlNodePtr)
336 d val value like(xmlNodePtr)
342 d val value like(xmlNodePtr)
348 d node value like(xmlNodePtr)
[all …]
/external/libxml2/
Dtree.c62 xmlNewReconciliedNs(xmlDocPtr doc, xmlNodePtr tree, xmlNsPtr ns);
91 xmlTreeErr(int code, xmlNodePtr node, const char *extra) in xmlTreeErr()
131 xmlNodePtr ulccur = (n)->children; \
734 xmlNewNs(xmlNodePtr node, const xmlChar *href, const xmlChar *prefix) { in xmlNewNs()
807 xmlSetNs(xmlNodePtr node, xmlNsPtr ns) { in xmlSetNs()
912 xmlRegisterNodeDefaultValue((xmlNodePtr)cur); in xmlNewDtd()
926 xmlNodePtr cur; in xmlGetIntSubset()
1010 doc->children = (xmlNodePtr) cur; in xmlCreateIntSubset()
1011 doc->last = (xmlNodePtr) cur; in xmlCreateIntSubset()
1014 xmlNodePtr prev; in xmlCreateIntSubset()
[all …]
Dxpointer.c136 xmlNodePtr xmlXPtrAdvanceNode(xmlNodePtr cur, int *level);
144 xmlXPtrGetArity(xmlNodePtr cur) { in xmlXPtrGetArity()
167 xmlXPtrGetIndex(xmlNodePtr cur) { in xmlXPtrGetIndex()
188 static xmlNodePtr
189 xmlXPtrGetNthChild(xmlNodePtr cur, int no) { in xmlXPtrGetNthChild()
227 xmlXPtrCmpPoints(xmlNodePtr node1, int index1, xmlNodePtr node2, int index2) { in xmlXPtrCmpPoints()
253 xmlXPtrNewPoint(xmlNodePtr node, int indx) { in xmlXPtrNewPoint()
282 xmlNodePtr tmp2; in xmlXPtrRangeCheckOrder()
343 xmlXPtrNewRangeInternal(xmlNodePtr start, int startindex, in xmlXPtrNewRangeInternal()
344 xmlNodePtr end, int endindex) { in xmlXPtrNewRangeInternal()
[all …]
Dschematron.c88 xmlNodePtr node; /* the node in the tree */
104 xmlNodePtr node; /* the node in the tree */
202 xmlNodePtr *includes; /* the array of includes */
229 const char *extra, xmlNodePtr node) in xmlSchematronPErrMemory()
249 xmlSchematronPErr(xmlSchematronParserCtxtPtr ctxt, xmlNodePtr node, int error, in xmlSchematronPErr()
277 const char *extra, xmlNodePtr node) in xmlSchematronVErrMemory()
310 xmlNodePtr node, xmlChar *test, xmlChar *report) in xmlSchematronAddTest()
392 xmlSchematronPatternPtr pat, xmlNodePtr node, in xmlSchematronAddRule()
485 xmlSchematronPtr schema, xmlNodePtr node, xmlChar *name) in xmlSchematronAddPattern()
735 xmlDocPtr doc, xmlNodePtr cur)
[all …]
DdebugXML.c46 xmlNodePtr node; /* current node */
54 static void xmlCtxtDumpNodeList(xmlDebugCtxtPtr ctxt, xmlNodePtr node);
93 xmlNsCheckScope(xmlNodePtr node, xmlNsPtr ns) in xmlNsCheckScope()
197 xmlCtxtNsCheckScope(xmlDebugCtxtPtr ctxt, xmlNodePtr node, xmlNsPtr ns) in xmlCtxtNsCheckScope()
275 xmlCtxtGenericNodeCheck(xmlDebugCtxtPtr ctxt, xmlNodePtr node) { in xmlCtxtGenericNodeCheck()
313 (node != (xmlNodePtr) node->parent->properties)) in xmlCtxtGenericNodeCheck()
476 xmlCtxtGenericNodeCheck(ctxt, (xmlNodePtr) dtd); in xmlCtxtDumpDtdNode()
581 xmlCtxtGenericNodeCheck(ctxt, (xmlNodePtr) attr); in xmlCtxtDumpAttrDecl()
640 xmlCtxtGenericNodeCheck(ctxt, (xmlNodePtr) elem); in xmlCtxtDumpElemDecl()
713 xmlCtxtGenericNodeCheck(ctxt, (xmlNodePtr) ent); in xmlCtxtDumpEntityDecl()
[all …]
Dxinclude.c58 xmlNodePtr ref; /* the node making the reference in the source */
59 xmlNodePtr inc; /* the included copy */
75 xmlNodePtr *txtTab; /* array of unparsed text nodes */
92 xmlXIncludeDoProcess(xmlXIncludeCtxtPtr ctxt, xmlDocPtr doc, xmlNodePtr tree);
108 xmlXIncludeErrMemory(xmlXIncludeCtxtPtr ctxt, xmlNodePtr node, in xmlXIncludeErrMemory()
129 xmlXIncludeErr(xmlXIncludeCtxtPtr ctxt, xmlNodePtr node, int error, in xmlXIncludeErr()
151 xmlXIncludeWarn(xmlXIncludeCtxtPtr ctxt, xmlNodePtr node, int error,
172 xmlXIncludeGetProp(xmlXIncludeCtxtPtr ctxt, xmlNodePtr cur, in xmlXIncludeGetProp()
226 xmlNodePtr ref) { in xmlXIncludeNewRef()
291 xmlXIncludeErrMemory(NULL, (xmlNodePtr) doc, in xmlXIncludeNewContext()
[all …]
Dc14n.c50 xmlNodePtr *nodeTab; /* array of nodes in no particular order */
80 xmlNodePtr node);
93 xmlNodePtr node,
94 xmlNodePtr parent);
98 static int xmlC14NProcessNode(xmlC14NCtxPtr ctx, xmlNodePtr cur);
99 static int xmlC14NProcessNodeList(xmlC14NCtxPtr ctx, xmlNodePtr cur);
122 (xmlNodePtr)(node), (xmlNodePtr)(parent)) : 1)
236 xmlC14NErr(xmlC14NCtxPtr ctxt, xmlNodePtr node, int error, in xmlC14NErr()
255 xmlC14NIsNodeInNodeset(void *user_data, xmlNodePtr node, xmlNodePtr parent) { in xmlC14NIsNodeInNodeset()
276 return(xmlXPathNodeSetContains(nodes, (xmlNodePtr)&ns)); in xmlC14NIsNodeInNodeset()
[all …]

12345