Home
last modified time | relevance | path

Searched refs:namespaces (Results 1 – 25 of 42) sorted by relevance

12

/external/libxml2/
Dschematron.c147 const xmlChar **namespaces; /* the array of namespaces */ member
196 const xmlChar **namespaces; /* the array of namespaces */ member
404 ctxt->namespaces); in xmlSchematronAddRule()
569 if (schema->namespaces != NULL) in xmlSchematronFree()
570 xmlFree((char **) schema->namespaces); in xmlSchematronFree()
716 if (ctxt->namespaces != NULL) in xmlSchematronFreeParserCtxt()
717 xmlFree((char **) ctxt->namespaces); in xmlSchematronFreeParserCtxt()
805 if (ctxt->namespaces == NULL) { in xmlSchematronAddNamespace()
807 ctxt->namespaces = (const xmlChar **) in xmlSchematronAddNamespace()
809 if (ctxt->namespaces == NULL) { in xmlSchematronAddNamespace()
[all …]
Dpattern.c182 const xmlChar **namespaces; /* the namespaces definitions */ member
290 const xmlChar **namespaces) { in xmlNewPatParserContext() argument
306 if (namespaces != NULL) { in xmlNewPatParserContext()
308 for (i = 0;namespaces[2 * i] != NULL;i++); in xmlNewPatParserContext()
313 cur->namespaces = namespaces; in xmlNewPatParserContext()
959 if (xmlStrEqual(ctxt->namespaces[2 * i + 1], prefix)) { in xmlCompileAttributeTest()
960 XML_PAT_COPY_NSNAME(ctxt, URL, ctxt->namespaces[2 * i]) in xmlCompileAttributeTest()
1080 if (xmlStrEqual(ctxt->namespaces[2 * i + 1], prefix)) { in xmlCompileStepPattern()
1081 XML_PAT_COPY_NSNAME(ctxt, URL, ctxt->namespaces[2 * i]) in xmlCompileStepPattern()
1147 if (xmlStrEqual(ctxt->namespaces[2 * i + 1], prefix)) { in xmlCompileStepPattern()
[all …]
Dxmllint.c1515 const xmlChar **namespaces, in startElementNsDebug() argument
1536 if (namespaces != NULL) { in startElementNsDebug()
1539 if (namespaces[i] != NULL) in startElementNsDebug()
1540 fprintf(stdout, ":%s", namespaces[i]); in startElementNsDebug()
1542 fprintf(stdout, "='%s'", namespaces[i]); in startElementNsDebug()
1973 const xmlChar *namespaces[22]; in walkDoc() local
1979 namespaces[i++] = ns->href; in walkDoc()
1980 namespaces[i++] = ns->prefix; in walkDoc()
1982 namespaces[i++] = NULL; in walkDoc()
1983 namespaces[i++] = NULL; in walkDoc()
[all …]
Dxpath.c5055 if (ctxt->namespaces != NULL) { in xmlXPathNsLookup()
5059 if ((ctxt->namespaces[i] != NULL) && in xmlXPathNsLookup()
5060 (xmlStrEqual(ctxt->namespaces[i]->prefix, prefix))) in xmlXPathNsLookup()
5061 return(ctxt->namespaces[i]->href); in xmlXPathNsLookup()
14470 const xmlChar **namespaces = NULL; in xmlXPathTryStreamCompile() local
14495 namespaces = xmlMalloc(2 * (ctxt->nsNr + 1) * sizeof(xmlChar*)); in xmlXPathTryStreamCompile()
14496 if (namespaces == NULL) { in xmlXPathTryStreamCompile()
14501 ns = ctxt->namespaces[j]; in xmlXPathTryStreamCompile()
14502 namespaces[i++] = ns->href; in xmlXPathTryStreamCompile()
14503 namespaces[i++] = ns->prefix; in xmlXPathTryStreamCompile()
[all …]
DSAX2.c2140 const xmlChar **namespaces, in xmlSAX2StartElementNs() argument
2216 pref = namespaces[i++]; in xmlSAX2StartElementNs()
2217 uri = namespaces[i++]; in xmlSAX2StartElementNs()
/external/webkit/WebCore/editing/
Dmarkup.cpp315 …dAddNamespaceAttr(const Attribute* attr, HashMap<AtomicStringImpl*, AtomicStringImpl*>& namespaces) in shouldAddNamespaceAttr() argument
321 namespaces.set(emptyAtom.impl(), attr->value().impl()); in shouldAddNamespaceAttr()
327 namespaces.set(attr->localName().impl(), attr->value().impl()); in shouldAddNamespaceAttr()
334 …cString& prefix, const AtomicString& ns, HashMap<AtomicStringImpl*, AtomicStringImpl*>& namespaces) in appendNamespace() argument
341 AtomicStringImpl* foundNS = namespaces.get(pre); in appendNamespace()
343 namespaces.set(pre, ns.impl()); in appendNamespace()
395 …locksToInlines = false, HashMap<AtomicStringImpl*, AtomicStringImpl*>* namespaces = 0, RangeFullyS… in appendStartMarkup() argument
449 if (!documentIsHTML && namespaces && shouldAddNamespaceElem(el)) in appendStartMarkup()
450 appendNamespace(result, el->prefix(), el->namespaceURI(), *namespaces); in appendStartMarkup()
474 if (!documentIsHTML && namespaces && shouldAddNamespaceAttr(attr, *namespaces)) in appendStartMarkup()
[all …]
/external/webkit/WebCore/dom/
DXMLTokenizerLibxml2.cpp83 … const xmlChar** namespaces, int nb_attributes, int nb_defaulted, const xmlChar** attributes) in appendStartElementNSCallback() argument
91 … callback->namespaces = static_cast<xmlChar**>(xmlMalloc(sizeof(xmlChar*) * nb_namespaces * 2)); in appendStartElementNSCallback()
93 callback->namespaces[i] = xmlStrdup(namespaces[i]); in appendStartElementNSCallback()
204 xmlFree(namespaces[i]); in ~PendingStartElementNSCallback()
205 xmlFree(namespaces); in ~PendingStartElementNSCallback()
215 nb_namespaces, const_cast<const xmlChar**>(namespaces), in call()
223 xmlChar** namespaces; member
673 xmlSAX2Namespace* namespaces = reinterpret_cast<xmlSAX2Namespace*>(libxmlNamespaces); in handleElementNamespaces() local
676 String namespaceURI = toString(namespaces[i].uri); in handleElementNamespaces()
677 if (namespaces[i].prefix) in handleElementNamespaces()
[all …]
DXMLTokenizerQt.cpp167 QXmlStreamNamespaceDeclarations namespaces; in XMLTokenizer() local
175namespaces.append(QXmlStreamNamespaceDeclaration(attr->localName(), attr->value())); in XMLTokenizer()
179 m_stream.addExtraNamespaceDeclarations(namespaces); in XMLTokenizer()
DXMLTokenizer.h222 …const xmlChar** namespaces, int nb_attributes, int nb_defaulted, const xmlChar** libxmlAttributes);
/external/webkit/WebKitTools/Scripts/
Dprepare-ChangeLog599 my @namespaces;
741 push @namespaces, $potential_namespace;
751 if (@namespaces && (length($name) < 2 || substr($name,1,1) ne "[")) {
752 $name = join ('::', @namespaces, $name);
765 if (!$in_braces && @namespaces) {
766 pop @namespaces;
/external/webkit/SunSpider/tests/parse-only/
Djquery-1.3.2.js2480 var namespaces = type.split(".");
2481 type = namespaces.shift();
2482 handler.type = namespaces.slice().sort().join(".");
2488 jQuery.event.specialAll[type].setup.call(elem, data, namespaces);
2497 ….event.special[type] || jQuery.event.special[type].setup.call(elem, data, namespaces) === false ) {
2544 var namespaces = type.split(".");
2545 type = namespaces.shift();
2546 var namespace = RegExp("(^|\\.)" + namespaces.slice().sort().join(".*\\.") + "(\\.|$)");
2561 jQuery.event.specialAll[type].teardown.call(elem, namespaces);
2566 …ery.event.special[type] || jQuery.event.special[type].teardown.call(elem, namespaces) === false ) {
[all …]
Dconcat-jquery-mootools-prototype.js2480 var namespaces = type.split(".");
2481 type = namespaces.shift();
2482 handler.type = namespaces.slice().sort().join(".");
2488 jQuery.event.specialAll[type].setup.call(elem, data, namespaces);
2497 ….event.special[type] || jQuery.event.special[type].setup.call(elem, data, namespaces) === false ) {
2544 var namespaces = type.split(".");
2545 type = namespaces.shift();
2546 var namespace = RegExp("(^|\\.)" + namespaces.slice().sort().join(".*\\.") + "(\\.|$)");
2561 jQuery.event.specialAll[type].teardown.call(elem, namespaces);
2566 …ery.event.special[type] || jQuery.event.special[type].teardown.call(elem, namespaces) === false ) {
[all …]
/external/libxml2/include/libxml/
Dpattern.h56 const xmlChar **namespaces);
DSAX2.h116 const xmlChar **namespaces,
Dxpath.h307 xmlNsPtr *namespaces; /* Array of namespaces */ member
Dxmlreader.h271 const xmlChar **namespaces);
Dparser.h685 const xmlChar **namespaces,
/external/tagsoup/src/org/ccil/cowan/tagsoup/
DParser.java58 private boolean namespaces = DEFAULT_NAMESPACES; field in Parser
334 if (name.equals(namespacesFeature)) namespaces = value; in setFeature()
735 if (!namespaces) namespace = localName = ""; in pop()
774 if (!namespaces) namespace = localName = ""; in push()
/external/bluetooth/glib/gio/
Dgfile.c2074 GFileAttributeInfoList *namespaces, in build_attribute_list_for_copy() argument
2101 if (namespaces) in build_attribute_list_for_copy()
2103 for (i = 0; i < namespaces->n_infos; i++) in build_attribute_list_for_copy()
2105 if (should_copy (&namespaces->infos[i], as_move, FALSE)) in build_attribute_list_for_copy()
2112 g_string_append (s, namespaces->infos[i].name); in build_attribute_list_for_copy()
2147 GFileAttributeInfoList *attributes, *namespaces; in g_file_copy_attributes() local
2161 namespaces = g_file_query_writable_namespaces (destination, cancellable, NULL); in g_file_copy_attributes()
2163 if (attributes == NULL && namespaces == NULL) in g_file_copy_attributes()
2166 attrs_to_read = build_attribute_list_for_copy (attributes, namespaces, as_move, skip_perms); in g_file_copy_attributes()
2190 g_file_attribute_info_list_unref (namespaces); in g_file_copy_attributes()
/external/expat/doc/
Dxmlwf.sgml158 This implies no namespaces (turns off <option>-n</option>) and
226 Turns on namespace processing. (describe namespaces)
227 <option>-c</option> disables namespaces.
/external/gtest/test/
Dgtest_output_test_golden_win.txt209 the two classes are from different namespaces or translation
219 the two classes are from different namespaces or translation
232 the two classes are from different namespaces or translation
Dgtest_output_test_golden_lin.txt221 the two classes are from different namespaces or translation
232 the two classes are from different namespaces or translation
246 the two classes are from different namespaces or translation
/external/webkit/WebCore/bindings/objc/
DDOMUtility.mm86 // headers are included and what namespaces we use to avoid naming conflicts.
/external/srec/doc/
Dsrec.doxygen209 # For instance, namespaces will be presented as packages, qualified scopes
277 # If this flag is set to YES, the members of anonymous namespaces will be extracted
285 # undocumented members of documented classes, files or namespaces.
360 # sorted by fully-qualified names, including namespaces. If set to
561 # (namespaces, classes, functions, etc.) that should be excluded from the output.
741 # files or namespaces will be aligned in HTML using tables. If set to
/external/dropbear/libtomcrypt/
DDoxyfile193 # For instance, namespaces will be presented as packages, qualified scopes
241 # undocumented members of documented classes, files or namespaces.
316 # sorted by fully-qualified names, including namespaces. If set to
611 # files or namespaces will be aligned in HTML using tables. If set to

12