HomeSort by relevance Sort by last modified time
    Searched refs:namespaces (Results 1 - 25 of 54) sorted by null

1 2 3

  /external/webkit/Source/WebCore/editing/
MarkupAccumulator.cpp 96 void MarkupAccumulator::serializeNodesWithNamespaces(Node* node, Node* nodeToSkip, EChildrenOnly childrenOnly, const Namespaces* namespaces)
101 Namespaces namespaceHash;
102 if (namespaces)
103 namespaceHash = *namespaces;
122 void MarkupAccumulator::appendStartTag(Node* node, Namespaces* namespaces)
125 appendStartMarkup(markup, node, namespaces);
213 bool MarkupAccumulator::shouldAddNamespaceAttribute(const Attribute& attribute, Namespaces& namespaces)
    [all...]
  /external/markdown/markdown/
html4.py 128 def _serialize_html(write, elem, encoding, qnames, namespaces):
145 if items or namespaces:
156 if namespaces:
157 items = namespaces.items()
190 qnames, namespaces = _namespaces(
194 write, root, encoding, qnames, namespaces
201 # identify namespaces used in this tree
207 namespaces = {}
209 namespaces[default_namespace] = ""
219 prefix = namespaces.get(uri
    [all...]
  /libcore/luni/src/main/java/org/xml/sax/helpers/
ParserAdapter.java 157 private static final String NAMESPACES = FEATURES + "namespaces";
165 * <p>The only features recognized are namespaces and
179 if (name.equals(NAMESPACES)) {
181 namespaces = value;
182 if (!namespaces && !prefixes) {
188 if (!prefixes && !namespaces) {
189 namespaces = true;
203 * <p>The only features recognized are namespaces and
217 if (name.equals(NAMESPACES)) {
824 private boolean namespaces = true; field in class:ParserAdapter
    [all...]
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
domconfignamespaces2.js 77 * Document.getParameter("namespaces") should be true regardles if the
80 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#parameter-namespaces
97 state = domConfig.getParameter("namespaces");
documentnormalizedocument05.js 86 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/namespaces-algorithms#normalizeDocumentAlgo
87 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#parameter-namespaces
129 domConfig.setParameter("namespaces", true);
documentnormalizedocument13.js 86 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/namespaces-algorithms#normalizeDocumentAlgo
87 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#parameter-namespaces
129 domConfig.setParameter("namespaces", true);
domconfignamespaces1.js 71 * Checks behavior of "namespaces" configuration parameter.
73 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#parameter-namespaces
86 var parameter = "nAmEspaces";
domconfigparameternames01.js 89 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#parameter-namespaces
131 (("canonical-form".toUpperCase() == parameterName.toUpperCase()) || ("cdata-sections".toUpperCase() == parameterName.toUpperCase()) || ("check-character-normalization".toUpperCase() == parameterName.toUpperCase()) || ("comments".toUpperCase() == parameterName.toUpperCase()) || ("datatype-normalization".toUpperCase() == parameterName.toUpperCase()) || ("entities".toUpperCase() == parameterName.toUpperCase()) || ("error-handler".toUpperCase() == parameterName.toUpperCase()) || ("infoset".toUpperCase() == parameterName.toUpperCase()) || ("namespaces".toUpperCase() == parameterName.toUpperCase()) || ("namespace-declarations".toUpperCase() == parameterName.toUpperCase()) || ("normalize-characters".toUpperCase() == parameterName.toUpperCase()) || ("split-cdata-sections".toUpperCase() == parameterName.toUpperCase()) || ("validate".toUpperCase() == parameterName.toUpperCase()) || ("validate-if-schema".toUpperCase() == parameterName.toUpperCase()) || ("well-formed".toUpperCase() == parameterName.toUpperCase()) || ("element-content-whitespace".toUpperCase() == parameterName.toUpperCase()))
nodeisdefaultnamespace16.js 79 and no prefix and verify if the value returned is false since default namespaces
  /external/libxml2/
schematron.c 140 int nbNs; /* the number of namespaces */
145 int nbNamespaces; /* number of namespaces in the array */
147 const xmlChar **namespaces; /* the array of namespaces */ member in struct:_xmlSchematron
194 int nbNamespaces; /* number of namespaces in the array */
196 const xmlChar **namespaces; /* the array of namespaces */ member in struct:_xmlSchematronParserCtxt
404 ctxt->namespaces);
569 if (schema->namespaces != NULL)
570 xmlFree((char **) schema->namespaces);
    [all...]
pattern.c 182 const xmlChar **namespaces; /* the namespaces definitions */ member in struct:_xmlPatParserContext
183 int nb_namespaces; /* the number of namespaces */
281 * @namespaces: the prefix definitions, array of [URI, prefix] terminated
290 const xmlChar **namespaces) {
306 if (namespaces != NULL) {
308 for (i = 0;namespaces[2 * i] != NULL;i++);
313 cur->namespaces = namespaces;
959 if (xmlStrEqual(ctxt->namespaces[2 * i + 1], prefix))
    [all...]
  /external/libxml2/include/libxml/
pattern.h 56 const xmlChar **namespaces);
SAX2.h 116 const xmlChar **namespaces,
  /external/apache-xml/src/main/java/org/apache/xml/utils/
QName.java 230 * @param namespaces Namespace stack to use to resolve namespace
232 public QName(String qname, Stack namespaces)
234 this(qname, namespaces, false);
243 * @param namespaces Namespace stack to use to resolve namespace
247 public QName(String qname, Stack namespaces, boolean validate)
269 int depth = namespaces.size();
273 NameSpace ns = (NameSpace) namespaces.elementAt(i);
  /external/libxslt/
Android.mk 8 libxslt/namespaces.c \
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
DOMConfigurationImpl.java 47 * namespaces = true
147 * namespaces = true.
161 && config.namespaces;
173 config.namespaces = true;
181 PARAMETERS.put("namespaces", new BooleanParameter() {
183 return config.namespaces;
186 config.namespaces = (Boolean) value;
195 * Has no effect if namespaces is false.
292 private boolean namespaces = true; field in class:DOMConfigurationImpl
380 * TODO: normalize namespaces
    [all...]
  /external/webkit/Source/WebCore/dom/
XMLDocumentParserLibxml2.cpp 89 const xmlChar** namespaces, int nb_attributes, int nb_defaulted, const xmlChar** attributes)
97 callback->namespaces = static_cast<xmlChar**>(xmlMalloc(sizeof(xmlChar*) * nb_namespaces * 2));
99 callback->namespaces[i] = xmlStrdup(namespaces[i]);
209 xmlFree(namespaces[i]);
210 xmlFree(namespaces);
220 nb_namespaces, const_cast<const xmlChar**>(namespaces),
228 xmlChar** namespaces; member in struct:WebCore::PendingCallbacks::PendingStartElementNSCallback
599 // Add namespaces based on the parent node
708 xmlSAX2Namespace* namespaces = reinterpret_cast<xmlSAX2Namespace*>(libxmlNamespaces) local
    [all...]
  /external/libxslt/libxslt/
templates.c 30 #include "namespaces.h"
47 * @nsList: the namespaces in scope
48 * @nsNr: the number of namespaces in scope
68 oldNamespaces = ctxt->xpathCtxt->namespaces;
72 ctxt->xpathCtxt->namespaces = nsList;
94 ctxt->xpathCtxt->namespaces = oldNamespaces;
106 * @nsNr: the number of namespaces in the list
107 * @nsList: the list of in-scope namespaces to use
131 oldNamespaces = ctxt->xpathCtxt->namespaces;
134 /* TODO: do we need to propagate the namespaces here ? *
    [all...]
variables.c 843 oldXPNamespaces = xpctxt->namespaces;
873 xpctxt->namespaces = comp->inScopeNs->list;
876 xpctxt->namespaces = NULL;
880 xpctxt->namespaces = comp->nsList;
884 xpctxt->namespaces = NULL;
910 xpctxt->namespaces = oldXPNamespaces;
1094 oldXPNamespaces = xpctxt->namespaces;
1106 xpctxt->namespaces = comp->inScopeNs->list;
1109 xpctxt->namespaces = NULL;
1113 xpctxt->namespaces = comp->nsList
    [all...]
transform.c 44 #include "namespaces.h"
1092 * reconciliate namespaces.
1176 * Add namespaces as they are needed
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/i686-linux/bits/
c++config.h 115 Outline of libstdc++ namespaces.
151 http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/namespaces.html
164 // Defined if inline namespaces are used for versioning.
208 // Inline namespaces for special modes: debug, parallel, profile.
226 // Inline namespaces for parallel mode.
231 // Inline namespaces for profile mode
239 # error illegal use of multiple inlined namespaces
242 # error illegal use of multiple inlined namespaces
245 # error illegal use of multiple inlined namespaces
260 // Macros for opening/closing conditional namespaces
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/x86_64-linux/bits/
c++config.h 115 Outline of libstdc++ namespaces.
151 http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/namespaces.html
164 // Defined if inline namespaces are used for versioning.
208 // Inline namespaces for special modes: debug, parallel, profile.
226 // Inline namespaces for parallel mode.
231 // Inline namespaces for profile mode
239 # error illegal use of multiple inlined namespaces
242 # error illegal use of multiple inlined namespaces
245 # error illegal use of multiple inlined namespaces
260 // Macros for opening/closing conditional namespaces
    [all...]
  /libcore/luni/src/test/java/libcore/xml/
SaxTest.java 203 private void parse(boolean prefixes, boolean namespaces, String xml,
208 reader.setFeature("http://xml.org/sax/features/namespaces", namespaces);
  /frameworks/base/tools/aapt/
XMLNode.cpp 396 static String8 build_namespace(const Vector<namespace_entry>& namespaces,
402 const size_t N = namespaces.size();
404 const namespace_entry& ne = namespaces.itemAt(i);
419 Vector<namespace_entry> namespaces; local
429 String8 elemNs = build_namespace(namespaces, ns16);
443 String8 ns = build_namespace(namespaces, ns16);
485 namespaces.push(ns);
491 const namespace_entry& ns = namespaces.top();
511 namespaces.pop();
    [all...]
  /external/webkit/Tools/Scripts/
prepare-ChangeLog 572 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;
    [all...]

Completed in 510 milliseconds

1 2 3