/external/libxml2/ |
D | schematron.c | 147 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 …]
|
D | pattern.c | 182 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 …]
|
D | xmllint.c | 1515 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 …]
|
D | xpath.c | 5055 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 …]
|
D | SAX2.c | 2140 const xmlChar **namespaces, in xmlSAX2StartElementNs() argument 2216 pref = namespaces[i++]; in xmlSAX2StartElementNs() 2217 uri = namespaces[i++]; in xmlSAX2StartElementNs()
|
/external/webkit/WebCore/editing/ |
D | markup.cpp | 315 …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/ |
D | XMLTokenizerLibxml2.cpp | 83 … 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 …]
|
D | XMLTokenizerQt.cpp | 167 QXmlStreamNamespaceDeclarations namespaces; in XMLTokenizer() local 175 … namespaces.append(QXmlStreamNamespaceDeclaration(attr->localName(), attr->value())); in XMLTokenizer() 179 m_stream.addExtraNamespaceDeclarations(namespaces); in XMLTokenizer()
|
D | XMLTokenizer.h | 222 …const xmlChar** namespaces, int nb_attributes, int nb_defaulted, const xmlChar** libxmlAttributes);
|
/external/webkit/WebKitTools/Scripts/ |
D | prepare-ChangeLog | 599 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/ |
D | jquery-1.3.2.js | 2480 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 …]
|
D | concat-jquery-mootools-prototype.js | 2480 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/ |
D | pattern.h | 56 const xmlChar **namespaces);
|
D | SAX2.h | 116 const xmlChar **namespaces,
|
D | xpath.h | 307 xmlNsPtr *namespaces; /* Array of namespaces */ member
|
D | xmlreader.h | 271 const xmlChar **namespaces);
|
D | parser.h | 685 const xmlChar **namespaces,
|
/external/tagsoup/src/org/ccil/cowan/tagsoup/ |
D | Parser.java | 58 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/ |
D | gfile.c | 2074 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/ |
D | xmlwf.sgml | 158 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/ |
D | gtest_output_test_golden_win.txt | 209 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
|
D | gtest_output_test_golden_lin.txt | 221 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/ |
D | DOMUtility.mm | 86 // headers are included and what namespaces we use to avoid naming conflicts.
|
/external/srec/doc/ |
D | srec.doxygen | 209 # 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/ |
D | Doxyfile | 193 # 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
|