Home
last modified time | relevance | path

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

1234

/external/webkit/Source/WebCore/editing/
DMarkupAccumulator.cpp96 …hNamespaces(Node* node, Node* nodeToSkip, EChildrenOnly childrenOnly, const Namespaces* namespaces) in serializeNodesWithNamespaces() argument
102 if (namespaces) in serializeNodesWithNamespaces()
103 namespaceHash = *namespaces; in serializeNodesWithNamespaces()
122 void MarkupAccumulator::appendStartTag(Node* node, Namespaces* namespaces) in appendStartTag() argument
125 appendStartMarkup(markup, node, namespaces); in appendStartTag()
213 … MarkupAccumulator::shouldAddNamespaceAttribute(const Attribute& attribute, Namespaces& namespaces) in shouldAddNamespaceAttribute() argument
215 namespaces.checkConsistency(); in shouldAddNamespaceAttribute()
219 namespaces.set(emptyAtom.impl(), attribute.value().impl()); in shouldAddNamespaceAttribute()
225 namespaces.set(attribute.localName().impl(), attribute.value().impl()); in shouldAddNamespaceAttribute()
232 …har>& result, const AtomicString& prefix, const AtomicString& namespaceURI, Namespaces& namespaces) in appendNamespace() argument
[all …]
/external/markdown/markdown/
Dhtml4.py128 def _serialize_html(write, elem, encoding, qnames, namespaces): argument
145 if items or namespaces:
156 if namespaces:
157 items = namespaces.items()
190 qnames, namespaces = _namespaces(
194 write, root, encoding, qnames, namespaces
207 namespaces = {}
209 namespaces[default_namespace] = ""
219 prefix = namespaces.get(uri)
223 prefix = "ns%d" % len(namespaces)
[all …]
/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.c1524 const xmlChar **namespaces, in startElementNsDebug() argument
1545 if (namespaces != NULL) { in startElementNsDebug()
1548 if (namespaces[i] != NULL) in startElementNsDebug()
1549 fprintf(stdout, ":%s", namespaces[i]); in startElementNsDebug()
1551 fprintf(stdout, "='%s'", namespaces[i]); in startElementNsDebug()
1991 const xmlChar *namespaces[22]; in walkDoc() local
1997 namespaces[i++] = ns->href; in walkDoc()
1998 namespaces[i++] = ns->prefix; in walkDoc()
2000 namespaces[i++] = NULL; in walkDoc()
2001 namespaces[i] = NULL; in walkDoc()
[all …]
/external/clang/test/Modules/Inputs/
Dmodule.map70 header "namespaces-top.h"
74 header "namespaces-left.h"
78 header "namespaces-right.h"
/external/apache-xml/src/main/java/org/apache/xml/utils/
DQName.java232 public QName(String qname, Stack namespaces) in QName() argument
234 this(qname, namespaces, false); in QName()
247 public QName(String qname, Stack namespaces, boolean validate) in QName() argument
269 int depth = namespaces.size(); in QName()
273 NameSpace ns = (NameSpace) namespaces.elementAt(i); in QName()
/external/webkit/Source/WebCore/dom/
DXMLDocumentParserLibxml2.cpp89 … const xmlChar** namespaces, int nb_attributes, int nb_defaulted, const xmlChar** attributes) in appendStartElementNSCallback() argument
97 … callback->namespaces = static_cast<xmlChar**>(xmlMalloc(sizeof(xmlChar*) * nb_namespaces * 2)); in appendStartElementNSCallback()
99 callback->namespaces[i] = xmlStrdup(namespaces[i]); in appendStartElementNSCallback()
209 xmlFree(namespaces[i]); in ~PendingStartElementNSCallback()
210 xmlFree(namespaces); in ~PendingStartElementNSCallback()
220 nb_namespaces, const_cast<const xmlChar**>(namespaces), in call()
228 xmlChar** namespaces; member
708 xmlSAX2Namespace* namespaces = reinterpret_cast<xmlSAX2Namespace*>(libxmlNamespaces); in handleElementNamespaces() local
711 AtomicString namespaceURI = toAtomicString(namespaces[i].uri); in handleElementNamespaces()
712 if (namespaces[i].prefix) in handleElementNamespaces()
[all …]
DXMLDocumentParserQt.cpp155 QXmlStreamNamespaceDeclarations namespaces; in XMLDocumentParser() local
163namespaces.append(QXmlStreamNamespaceDeclaration(attr->localName(), attr->value())); in XMLDocumentParser()
167 m_stream.addExtraNamespaceDeclarations(namespaces); in XMLDocumentParser()
/external/libxslt/libxslt/
Dvariables.c843 oldXPNamespaces = xpctxt->namespaces; in xsltEvalVariable()
873 xpctxt->namespaces = comp->inScopeNs->list; in xsltEvalVariable()
876 xpctxt->namespaces = NULL; in xsltEvalVariable()
880 xpctxt->namespaces = comp->nsList; in xsltEvalVariable()
884 xpctxt->namespaces = NULL; in xsltEvalVariable()
910 xpctxt->namespaces = oldXPNamespaces; in xsltEvalVariable()
1094 oldXPNamespaces = xpctxt->namespaces; in xsltEvalGlobalVariable()
1106 xpctxt->namespaces = comp->inScopeNs->list; in xsltEvalGlobalVariable()
1109 xpctxt->namespaces = NULL; in xsltEvalGlobalVariable()
1113 xpctxt->namespaces = comp->nsList; in xsltEvalGlobalVariable()
[all …]
Dtemplates.c68 oldNamespaces = ctxt->xpathCtxt->namespaces; in xsltEvalXPathPredicate()
72 ctxt->xpathCtxt->namespaces = nsList; in xsltEvalXPathPredicate()
94 ctxt->xpathCtxt->namespaces = oldNamespaces; in xsltEvalXPathPredicate()
131 oldNamespaces = ctxt->xpathCtxt->namespaces; in xsltEvalXPathStringNs()
135 ctxt->xpathCtxt->namespaces = nsList; in xsltEvalXPathStringNs()
161 ctxt->xpathCtxt->namespaces = oldNamespaces; in xsltEvalXPathStringNs()
Dtransform.c4229 oldXPNamespaces = xpctxt->namespaces; in xsltCopyOf()
4236 xpctxt->namespaces = comp->inScopeNs->list; in xsltCopyOf()
4239 xpctxt->namespaces = NULL; in xsltCopyOf()
4243 xpctxt->namespaces = comp->nsList; in xsltCopyOf()
4247 xpctxt->namespaces = NULL; in xsltCopyOf()
4258 xpctxt->namespaces = oldXPNamespaces; in xsltCopyOf()
4396 oldXPNamespaces = xpctxt->namespaces; in xsltValueOf()
4403 xpctxt->namespaces = comp->inScopeNs->list; in xsltValueOf()
4406 xpctxt->namespaces = NULL; in xsltValueOf()
4410 xpctxt->namespaces = comp->nsList; in xsltValueOf()
[all …]
Dkeys.c652 oldXPNamespaces = xpctxt->namespaces; in xsltInitCtxtKey()
664 xpctxt->namespaces = keyDef->nsList; in xsltInitCtxtKey()
847 xpctxt->namespaces = oldXPNamespaces; in xsltInitCtxtKey()
Dxsltutils.c1004 oldNamespaces = ctxt->xpathCtxt->namespaces; in xsltComputeSortResult()
1013 ctxt->xpathCtxt->namespaces = comp->inScopeNs->list; in xsltComputeSortResult()
1016 ctxt->xpathCtxt->namespaces = NULL; in xsltComputeSortResult()
1020 ctxt->xpathCtxt->namespaces = comp->nsList; in xsltComputeSortResult()
1067 ctxt->xpathCtxt->namespaces = oldNamespaces; in xsltComputeSortResult()
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.core.runtime/.manager/
D.fileTable.96 .namespaces=2
D.fileTable.106 .namespaces=3
/external/webkit/Tools/Scripts/
Dprepare-ChangeLog572 my @namespaces;
714 push @namespaces, $potential_namespace;
724 if (@namespaces && $name && (length($name) < 2 || substr($name,1,1) ne "[")) {
725 $name = join ('::', @namespaces, $name);
738 if (!$in_braces && @namespaces) {
739 pop @namespaces;
/external/webkit/PerformanceTests/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 …]
/external/libxslt/
DAndroid.mk8 libxslt/namespaces.c \
/external/libxml2/include/libxml/
Dpattern.h56 const xmlChar **namespaces);
DSAX2.h116 const xmlChar **namespaces,
/external/stlport/doc/
Dstlport_namespaces.txt112 5. What are the other STLport namespaces ?
115 default STLport namespace is: stlp_std. Here is the list of the customized 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.

1234