HomeSort by relevance Sort by last modified time
    Searched defs:xml (Results 376 - 400 of 580) sorted by null

<<11121314151617181920>>

  /external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
DOMConstants.java 22 package org.apache.xml.serializer.dom3;
35 public static final String XERCES_URL = "http://xml.apache.org/xerces-2j";
91 public static final String DOM_XMLDECL = "xml-declaration";
109 // The xsl:output 'omit-xml-declaration' property used in LSSerializer
110 public static final String S_XSL_OUTPUT_OMIT_XML_DECL = "omit-xml-declaration";
112 // The xerces serializer specific 'omit-xml-declaration' property used in LSSerializer
113 public static final String S_XML_VERSION = "xml-version";
116 public static final String S_XSL_VALUE_ENTITIES = "org/apache/xml/serializer/XMLEntities";
  /external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
XMLChar.java 19 package org.apache.xml.serializer.utils;
26 * This class defines the basic XML character properties. The data
28 * XML character or if the character is a space, name start, or name
77 * All other valid XML characters can be considered content.
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/utils/
NamespaceSupport2.java 21 package org.apache.xml.utils;
42 * @see org.xml.sax.helpers.NamespaceSupport
45 extends org.xml.sax.helpers.NamespaceSupport
60 * The XML Namespace as a constant.
63 * to the "xml" prefix.</p>
66 "http://www.w3.org/XML/1998/namespace";
100 currentContext.declarePrefix("xml", XMLNS);
108 * of each XML element: the new context will automatically inherit
113 * already in force: in this context, only the "xml" prefix is
142 * XML element. After popping the context, all Namespace prefi
    [all...]
NodeVector.java 21 package org.apache.xml.utils;
25 import org.apache.xml.dtm.DTM;
ObjectFactory.java 22 package org.apache.xml.utils;
44 * This class was moved from the <code>javax.xml.parsers.ObjectFactory</code>
SuballocatedIntVector.java 21 package org.apache.xml.utils;
TreeWalker.java 21 package org.apache.xml.utils;
33 import org.xml.sax.ContentHandler;
34 import org.xml.sax.Locator;
35 import org.xml.sax.ext.LexicalHandler;
36 import org.xml.sax.helpers.LocatorImpl;
152 public void traverse(Node pos) throws org.xml.sax.SAXException
171 public void traverseFragment(Node pos) throws org.xml.sax.SAXException
223 public void traverse(Node pos, Node top) throws org.xml.sax.SAXException
268 throws org.xml.sax.SAXException
270 if(m_contentHandler instanceof org.apache.xml.dtm.ref.dom2dtm.DOM2DTM.CharacterNodeHandler
    [all...]
XMLChar.java 22 package org.apache.xml.utils;
25 * This class defines the basic XML character properties. The data
27 * XML character or if the character is a space, name start, or name
75 * All other valid XML characters can be considered content.
447 * as defined by production [3] in the XML 1.0 specification.
457 * character as defined by production [5] in the XML 1.0
468 * character as defined by production [4] in the XML 1.0
479 * character as defined by production [4] in Namespaces in XML
490 * character as defined by production [5] in Namespaces in XML
501 * character as defined by production [13] in the XML 1.
    [all...]
  /external/chromium_org/chrome/browser/media_galleries/fileapi/
iphoto_data_provider_browsertest.cc 98 return library_dir_.path().AppendASCII("library.xml");
142 std::string xml = GetLibraryString(); local
143 ASSERT_EQ(static_cast<int>(xml.size()),
144 file_util::WriteFile(XmlFile(), xml.c_str(), xml.size()));
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XSLTProcessorLibxslt.cpp 24 #include "core/xml/XSLTProcessor.h"
39 #include "core/xml/XSLStyleSheet.h"
40 #include "core/xml/XSLTExtensions.h"
41 #include "core/xml/XSLTUnicodeSort.h"
42 #include "core/xml/parser/XMLDocumentParser.h"
105 FetchRequest request(ResourceRequest(url), FetchInitiatorTypeNames::xml, fetchOptions); member in class:WebCore::FetchInitiatorTypeNames
259 // HTML (create an HTML document), XML (create an XML document),
260 // and text (wrap in a <pre> and create an XML document).
272 return "application/xml";
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/tests/
WebPageNewSerializerTest.cpp 109 , m_xhtmlMimeType(WebString::fromUTF8("application/xhtml+xml"))
112 , m_svgMimeType(WebString::fromUTF8("image/svg+xml"))
314 // We expect only one resource, the XML.
316 std::string xml = std::string(resources[0].data.data()); local
318 // We should have one and only one instance of the XML declaration.
319 size_t pos = xml.find("<?xml version=");
322 pos = xml.find("<?xml version=", pos + 1);
  /external/chromium_org/third_party/mesa/src/src/gallium/tools/trace/
parse.py 31 import xml.parsers.expat namespace
64 """Expat based XML tokenizer."""
76 self.parser = xml.parsers.expat.ParserCreate()
116 except xml.parsers.expat.ExpatError, e:
117 #if e.code == xml.parsers.expat.errors.XML_ERROR_NO_ELEMENTS:
146 """Base XML document parser."""
  /external/chromium_org/tools/grit/grit/tool/
android2grd.py 12 from xml.dom import Node
13 import xml.dom.minidom namespace
27 # The name of a string in strings.xml
30 # A string's character limit in strings.xml
44 """Tool for converting Android string.xml files into chrome Grd files.
48 The Android2Grd tool will convert an Android strings.xml file (whose path is
52 Because grd documents are much richer than strings.xml documents we supplement
80 --xml-dir XML_DIR Specify where to place localized strings.xml files
82 language xx a values-xx/strings.xml file will b
    [all...]
  /external/jmonkeyengine/engine/src/xml/com/jme3/export/xml/
DOMOutputCapsule.java 33 package com.jme3.export.xml;
53 * Part of the jME XML IO system as introduced in the google code jmexml project.
  /external/mesa3d/src/gallium/tools/trace/
parse.py 31 import xml.parsers.expat namespace
64 """Expat based XML tokenizer."""
76 self.parser = xml.parsers.expat.ParserCreate()
116 except xml.parsers.expat.ExpatError, e:
117 #if e.code == xml.parsers.expat.errors.XML_ERROR_NO_ELEMENTS:
146 """Base XML document parser."""
  /external/valgrind/main/drd/
drd_error.c 156 const Bool xml = VG_(clo_xml); local
157 const char* const what_prefix = xml ? " <what>" : "";
158 const char* const what_suffix = xml ? "</what>" : "";
159 const char* const auxwhat_prefix = xml ? " <auxwhat>" : "";
160 const char* const auxwhat_suffix = xml ? "</auxwhat>" : "";
161 const char* const indent = xml ? " " : "";
216 xml ? "\n" : "");
217 if (xml)
222 if (xml)
303 const Bool xml = VG_(clo_xml) local
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/content/res/
BridgeResources.java 249 File xml = new File(value.getValue()); local
250 if (xml.isFile()) {
251 // we need to create a pull parser around the layout XML file, and then
253 parser = ParserFactory.create(xml);
286 File xml = new File(value.getValue()); local
287 if (xml.isFile()) {
288 // we need to create a pull parser around the layout XML file, and then
290 parser = ParserFactory.create(xml);
581 // even though we know the XML file to load directly, we still need to resolve the
  /libcore/luni/src/main/java/javax/xml/datatype/
DatatypeConstants.java 20 package javax.xml.datatype;
22 import javax.xml.XMLConstants;
23 import javax.xml.namespace.QName;
204 * <p>Fully qualified name for W3C XML Schema 1.0 datatype <code>dateTime</code>.</p>
209 * <p>Fully qualified name for W3C XML Schema 1.0 datatype <code>time</code>.</p>
214 * <p>Fully qualified name for W3C XML Schema 1.0 datatype <code>date</code>.</p>
219 * <p>Fully qualified name for W3C XML Schema 1.0 datatype <code>gYearMonth</code>.</p>
224 * <p>Fully qualified name for W3C XML Schema 1.0 datatype <code>gMonthDay</code>.</p>
229 * <p>Fully qualified name for W3C XML Schema 1.0 datatype <code>gYear</code>.</p>
234 * <p>Fully qualified name for W3C XML Schema 1.0 datatype <code>gMonth</code>.</p
    [all...]
Duration.java 20 package javax.xml.datatype;
27 import javax.xml.namespace.QName;
31 * the W3C XML Schema 1.0 specification.</p>
43 * to use for the duration datatype of XML Schema 1.0 with
96 * <p>Return the name of the XML Schema date/time type that this instance
104 * Required fields for XML Schema 1.0 Date/Time Datatypes.<br/>
154 * @throws IllegalStateException If the combination of set fields does not match one of the XML Schema date/time datatypes.
197 "javax.xml.datatype.Duration#getXMLSchemaType():"
198 + " this Duration does not match one of the XML Schema date/time datatypes:"
736 * <a href="http://www.w3.org/TR/xmlschema-2/#duration-order">W3C XML Schema 1.0 Part 2, Section 3.2.7.6.2
    [all...]
FactoryFinder.java 20 package javax.xml.datatype;
45 private static final String CLASS_NAME = "javax.xml.datatype.FactoryFinder";
XMLGregorianCalendar.java 20 package javax.xml.datatype;
26 import javax.xml.namespace.QName;
29 * <p>Representation for W3C XML Schema 1.0 date/time datatypes.
38 * <a href="#GDAY"><code>gDay</code></a> defined in the XML Namespace
41 * <a href="http://www.w3.org/TR/xmlschema-2/#dateTime">W3C XML Schema 1.0 Part 2, Section 3.2.7-14</a>.</p>
43 * <p>The table below defines the mapping between XML Schema 1.0
46 * <a href="http://www.w3.org/TR/xmlschema-2/#isoformats">W3C XML Schema 1.0 Part 2, Appendix D,
54 * Date/Time Datatype Field Mapping Between XML Schema 1.0 and Java Representation
60 * <th>XML Schema 1.0<br/>
77 * Given that <a href="http://www.w3.org/2001/05/xmlschema-errata#e2-63">XML Schema 1.0 errata</a> states that the year zer
    [all...]
  /libcore/luni/src/main/java/javax/xml/validation/
SchemaFactoryFinder.java 19 package javax.xml.validation;
32 import javax.xml.XMLConstants;
44 /** XML Schema language identifiers. */
45 private static final String W3C_XML_SCHEMA10_NS_URI = "http://www.w3.org/XML/XMLSchema/v1.0";
46 private static final String W3C_XML_SCHEMA11_NS_URI = "http://www.w3.org/XML/XMLSchema/v1.1";
239 if (debug) debugPrintln("attempting to use the platform default XML Schema 1.0 validator");
243 if (debug) debugPrintln("attempting to use the platform default XML Schema 1.1 validator");
  /libcore/luni/src/main/java/javax/xml/xpath/
XPathFactoryFinder.java 19 package javax.xml.xpath;
32 import javax.xml.validation.SchemaFactory;
  /libcore/luni/src/main/java/org/apache/harmony/xml/
ExpatReader.java 17 package org.apache.harmony.xml;
23 import org.xml.sax.ContentHandler;
24 import org.xml.sax.DTDHandler;
25 import org.xml.sax.EntityResolver;
26 import org.xml.sax.ErrorHandler;
27 import org.xml.sax.InputSource;
28 import org.xml.sax.SAXException;
29 import org.xml.sax.SAXNotRecognizedException;
30 import org.xml.sax.SAXNotSupportedException;
31 import org.xml.sax.XMLReader
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
ElementImpl.java 17 package org.apache.harmony.xml.dom;
389 // TODO: populate this when we support XML Schema

Completed in 692 milliseconds

<<11121314151617181920>>