/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/ |
D | ParseRDF.java | 161 private static void rdf_NodeElement(XMPMetaImpl xmp, XMPNode xmpParent, Node xmlNode, in rdf_NodeElement() argument 164 int nodeTerm = getRDFTermKind (xmlNode); in rdf_NodeElement() 176 rdf_NodeElementAttrs (xmp, xmpParent, xmlNode, isTopLevel); in rdf_NodeElement() 177 rdf_PropertyElementList (xmp, xmpParent, xmlNode, isTopLevel); in rdf_NodeElement() 204 private static void rdf_NodeElementAttrs(XMPMetaImpl xmp, XMPNode xmpParent, Node xmlNode, in rdf_NodeElementAttrs() argument 210 for (int i = 0; i < xmlNode.getAttributes().getLength(); i++) in rdf_NodeElementAttrs() 212 Node attribute = xmlNode.getAttributes().item(i); in rdf_NodeElementAttrs() 361 private static void rdf_PropertyElement(XMPMetaImpl xmp, XMPNode xmpParent, Node xmlNode, in rdf_PropertyElement() argument 364 int nodeTerm = getRDFTermKind (xmlNode); in rdf_PropertyElement() 371 NamedNodeMap attributes = xmlNode.getAttributes(); in rdf_PropertyElement() [all …]
|
/external/chromium_org/chrome/browser/component_updater/ |
D | update_response.cc | 49 static bool TagNameEquals(const xmlNode* node, const char* expected_name) { in TagNameEquals() 54 static std::vector<xmlNode*> GetChildren(xmlNode* root, const char* name) { in GetChildren() 55 std::vector<xmlNode*> result; in GetChildren() 56 for (xmlNode* child = root->children; child != NULL; child = child->next) { in GetChildren() 66 static std::string GetAttribute(xmlNode* node, const char* attribute_name) { in GetAttribute() 106 bool ParsePackageTag(xmlNode* package, in ParsePackageTag() 140 bool ParseManifestTag(xmlNode* manifest, in ParseManifestTag() 171 std::vector<xmlNode*> packages = GetChildren(manifest, "packages"); in ParseManifestTag() 178 std::vector<xmlNode*> package = GetChildren(packages[0], "package"); in ParseManifestTag() 188 bool ParseUrlsTag(xmlNode* urls, in ParseUrlsTag() [all …]
|
/external/chromium/chrome/common/extensions/ |
D | update_manifest.cc | 49 static bool TagNameEquals(const xmlNode* node, const char* expected_name, in TagNameEquals() 58 static std::vector<xmlNode*> GetChildren(xmlNode* root, xmlNs* xml_namespace, in GetChildren() 60 std::vector<xmlNode*> result; in GetChildren() 61 for (xmlNode* child = root->children; child != NULL; child = child->next) { in GetChildren() 71 static std::string GetAttribute(xmlNode* node, const char* attribute_name) { in GetAttribute() 112 static xmlNs* GetNamespace(xmlNode* node, const char* expected_href) { in GetNamespace() 126 static bool ParseSingleAppTag(xmlNode* app_node, xmlNs* xml_namespace, in ParseSingleAppTag() 137 std::vector<xmlNode*> updates = GetChildren(app_node, xml_namespace, in ParseSingleAppTag() 147 xmlNode *updatecheck = updates[0]; in ParseSingleAppTag() 218 xmlNode *root = xmlDocGetRootElement(document.get()); in Parse() [all …]
|
/external/chromium_org/chrome/common/extensions/ |
D | update_manifest.cc | 51 static bool TagNameEquals(const xmlNode* node, const char* expected_name, in TagNameEquals() 60 static std::vector<xmlNode*> GetChildren(xmlNode* root, xmlNs* xml_namespace, in GetChildren() 62 std::vector<xmlNode*> result; in GetChildren() 63 for (xmlNode* child = root->children; child != NULL; child = child->next) { in GetChildren() 73 static std::string GetAttribute(xmlNode* node, const char* attribute_name) { in GetAttribute() 114 static xmlNs* GetNamespace(xmlNode* node, const char* expected_href) { in GetNamespace() 128 static bool ParseSingleAppTag(xmlNode* app_node, xmlNs* xml_namespace, in ParseSingleAppTag() 139 std::vector<xmlNode*> updates = GetChildren(app_node, xml_namespace, in ParseSingleAppTag() 149 xmlNode *updatecheck = updates[0]; in ParseSingleAppTag() 236 xmlNode *root = xmlDocGetRootElement(document.get()); in Parse() [all …]
|
/external/chromium/chrome/browser/metrics/ |
D | metrics_service.h | 46 typedef struct _xmlNode xmlNode; typedef 47 typedef xmlNode* xmlNodePtr;
|
/external/libxml2/include/libxml/ |
D | valid.h | 418 xmlValidGetValidElements(xmlNode *prev, 419 xmlNode *next,
|
D | tree.h | 448 typedef struct _xmlNode xmlNode; typedef 449 typedef xmlNode *xmlNodePtr;
|
/external/chromium_org/third_party/libxml/src/include/libxml/ |
D | valid.h | 418 xmlValidGetValidElements(xmlNode *prev, 419 xmlNode *next,
|
D | tree.h | 449 typedef struct _xmlNode xmlNode; typedef 450 typedef xmlNode *xmlNodePtr;
|
/external/libxml2/ |
D | tree.c | 2132 cur = (xmlNodePtr) xmlMalloc(sizeof(xmlNode)); in xmlNewDocPI() 2137 memset(cur, 0, sizeof(xmlNode)); in xmlNewDocPI() 2194 cur = (xmlNodePtr) xmlMalloc(sizeof(xmlNode)); in xmlNewNode() 2199 memset(cur, 0, sizeof(xmlNode)); in xmlNewNode() 2236 cur = (xmlNodePtr) xmlMalloc(sizeof(xmlNode)); in xmlNewNodeEatName() 2242 memset(cur, 0, sizeof(xmlNode)); in xmlNewNodeEatName() 2370 cur = (xmlNodePtr) xmlMalloc(sizeof(xmlNode)); in xmlNewDocFragment() 2375 memset(cur, 0, sizeof(xmlNode)); in xmlNewDocFragment() 2400 cur = (xmlNodePtr) xmlMalloc(sizeof(xmlNode)); in xmlNewText() 2405 memset(cur, 0, sizeof(xmlNode)); in xmlNewText() [all …]
|
D | valid.c | 5384 tmp = (xmlNodePtr) xmlMalloc(sizeof(xmlNode)); in xmlValidateElementContent() 6945 xmlValidGetValidElements(xmlNode *prev, xmlNode *next, const xmlChar **names, in xmlValidGetValidElements() 6953 xmlNode *ref_node; in xmlValidGetValidElements() 6954 xmlNode *parent; in xmlValidGetValidElements() 6955 xmlNode *test_node; in xmlValidGetValidElements() 6957 xmlNode *prev_next; in xmlValidGetValidElements() 6958 xmlNode *next_prev; in xmlValidGetValidElements() 6959 xmlNode *parent_childs; in xmlValidGetValidElements() 6960 xmlNode *parent_last; in xmlValidGetValidElements()
|
D | SAX2.c | 1821 ret = (xmlNodePtr) xmlMalloc(sizeof(xmlNode)); in xmlSAX2TextNode() 1827 memset(ret, 0, sizeof(xmlNode)); in xmlSAX2TextNode() 2206 memset(ret, 0, sizeof(xmlNode)); in xmlSAX2StartElementNs()
|
D | relaxng.c | 3783 xmlNode node; in xmlRelaxNGCompareNameClasses()
|
/external/chromium_org/third_party/libxml/src/ |
D | tree.c | 2121 cur = (xmlNodePtr) xmlMalloc(sizeof(xmlNode)); in xmlNewDocPI() 2126 memset(cur, 0, sizeof(xmlNode)); in xmlNewDocPI() 2183 cur = (xmlNodePtr) xmlMalloc(sizeof(xmlNode)); in xmlNewNode() 2188 memset(cur, 0, sizeof(xmlNode)); in xmlNewNode() 2225 cur = (xmlNodePtr) xmlMalloc(sizeof(xmlNode)); in xmlNewNodeEatName() 2231 memset(cur, 0, sizeof(xmlNode)); in xmlNewNodeEatName() 2359 cur = (xmlNodePtr) xmlMalloc(sizeof(xmlNode)); in xmlNewDocFragment() 2364 memset(cur, 0, sizeof(xmlNode)); in xmlNewDocFragment() 2389 cur = (xmlNodePtr) xmlMalloc(sizeof(xmlNode)); in xmlNewText() 2394 memset(cur, 0, sizeof(xmlNode)); in xmlNewText() [all …]
|
D | valid.c | 5384 tmp = (xmlNodePtr) xmlMalloc(sizeof(xmlNode)); in xmlValidateElementContent() 6938 xmlValidGetValidElements(xmlNode *prev, xmlNode *next, const xmlChar **names, in xmlValidGetValidElements() 6946 xmlNode *ref_node; in xmlValidGetValidElements() 6947 xmlNode *parent; in xmlValidGetValidElements() 6948 xmlNode *test_node; in xmlValidGetValidElements() 6950 xmlNode *prev_next; in xmlValidGetValidElements() 6951 xmlNode *next_prev; in xmlValidGetValidElements() 6952 xmlNode *parent_childs; in xmlValidGetValidElements() 6953 xmlNode *parent_last; in xmlValidGetValidElements()
|
D | SAX2.c | 1821 ret = (xmlNodePtr) xmlMalloc(sizeof(xmlNode)); in xmlSAX2TextNode() 1827 memset(ret, 0, sizeof(xmlNode)); in xmlSAX2TextNode() 2191 memset(ret, 0, sizeof(xmlNode)); in xmlSAX2StartElementNs()
|
D | relaxng.c | 3783 xmlNode node; in xmlRelaxNGCompareNameClasses()
|
D | ChangeLog | 6450 classes (e.g. xmlDoc and xmlNode) to prevent a segfault (as 14434 added accessors needed for xmlNode, a bit more testing and 17786 like namespaces for good. Unified xmlNs and xmlNode somewhat. 19602 xmlDoc and xmlNode (for Corba export).
|
D | testapi.c | 25985 xmlNode * prev; /* an element to insert after */ in test_xmlValidGetValidElements() 25987 xmlNode * next; /* an element to insert next */ in test_xmlValidGetValidElements()
|
/external/chromium_org/third_party/libxml/ |
D | README.chromium | 32 if treated as a generic xmlNode object.
|
/external/libxslt/libxslt/ |
D | functions.c | 698 val /= sizeof(xmlNode); in xsltGenerateIdFunction()
|