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

<<11121314151617181920>>

  /external/apache-xml/src/main/java/org/apache/xml/serializer/
ToHTMLStream.java 21 package org.apache.xml.serializer;
26 import javax.xml.transform.Result;
28 import org.apache.xml.serializer.utils.MsgKey;
29 import org.apache.xml.serializer.utils.Utils;
30 import org.xml.sax.Attributes;
31 import org.xml.sax.SAXException;
54 * Map that tells which XML characters should have special treatment, and it
679 * @throws org.xml.sax.SAXException Any SAX exception, possibly
682 * @throws org.xml.sax.SAXException
684 protected void startDocumentInternal() throws org.xml.sax.SAXExceptio
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/utils/
UnImplNode.java 21 package org.apache.xml.utils;
23 import org.apache.xml.res.XMLErrorResources;
24 import org.apache.xml.res.XMLMessages;
1137 * An attribute specifying, as part of the XML declaration, the encoding
1156 * An attribute specifying, as part of the XML declaration, the encoding
    [all...]
  /external/chromium_org/chrome/browser/component_updater/
component_updater_service.cc 292 void ParseResponse(const std::string& xml);
776 // contains the sequence of <app> xml elements of the update check.
786 // Called when we got a response from the update server. It consists of an xml
792 std::string xml; local
793 source->GetResponseAsString(&xml);
795 ParseResponse(xml);
803 void CrxUpdateService::ParseResponse(const std::string& xml) {
806 if (update_response.Parse(xml))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
ResourceType.js 132 "xml": "application/xml",
133 "xsl": "application/xml",
  /external/chromium_org/third_party/libxml/src/
xinclude.c 58 int xml; /* xml or txt */ member in struct:_xmlXIncludeRef
83 int parseFlags; /* the flags used for parsing XML documents */
84 xmlChar * base; /* the current xml:base */
244 ret->xml = 0;
272 * @doc: an XML Document
496 int xml = 1, i; /* default Issue 64 */ local
522 xml = 1;
524 xml = 0;
616 * If local and xml then we need a fragmen
2004 int xml = 1; \/* default Issue 64 *\/ local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_bugzilla/org/eclipse/releng/services/bugzilla/
UpdateBugStateTask.java 67 private static final String CTYPE_XML = "&ctype=xml"; //$NON-NLS-1$
450 /* slurp xml for bugID */
458 String xml = slurpStream(xmlconn); local
462 System.err.println(xml);
466 /* parse xml, build post string */
468 Hashtable pxml = parseXML(xml);
669 private Hashtable parseXML(String xml)
677 Matcher m = p.matcher(xml);
  /external/jmonkeyengine/engine/src/xml/com/jme3/export/xml/
DOMInputCapsule.java 33 package com.jme3.export.xml;
50 * Part of the jME XML IO system as introduced in the google code jmexml project.
    [all...]
  /external/libxml2/
xinclude.c 58 int xml; /* xml or txt */ member in struct:_xmlXIncludeRef
83 int parseFlags; /* the flags used for parsing XML documents */
84 xmlChar * base; /* the current xml:base */
244 ret->xml = 0;
272 * @doc: an XML Document
496 int xml = 1, i; /* default Issue 64 */ local
522 xml = 1;
524 xml = 0;
616 * If local and xml then we need a fragmen
2004 int xml = 1; \/* default Issue 64 *\/ local
    [all...]
  /external/qemu/
gdbstub.c 262 const char *xml; member in struct:GDBRegisterState
626 /* Old gdb always expects FP registers. Newer (xml-aware) gdb only
633 #define GDB_CORE_XML "power64-core.xml"
635 #define GDB_CORE_XML "power-core.xml"
858 /* Old gdb always expect FPA registers. Newer (xml-aware) gdb only expect
864 #define GDB_CORE_XML "arm-core.xml"
934 #define GDB_CORE_XML "cf-core.xml"
951 ColdFire and m68k. Use XML bits for these. */
1078 /* FIXME: We should use XML for this. */
1352 if (strncmp(p, "target.xml", len) == 0)
1898 const char *xml; local
    [all...]
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/
R.java 139 public static final class xml { class in class:R
  /external/valgrind/main/helgrind/
hg_errors.c 739 /* Do a printf-style operation on either the XML or normal output
927 const Bool xml = VG_(clo_xml); /* a shorthand, that's all */ local
929 if (!xml) {
938 if (xml)
    [all...]
  /external/wpa_supplicant_8/src/eap_peer/
tncc.c 31 "<?xml version=\"1.0\"?>\n" \
36 "IF_TNCCS# https://www.trustedcomputinggroup.org/XML/SCHEMA/TNCCS_1.0.xsd\">\n"
836 * <XML><TNCCS-Foo type="foo"></TNCCS-Foo></XML>
844 char *xml, *xmlend, *endpos; local
865 /* Base64 OR XML */
867 xml = NULL;
869 pos = os_strstr(start, "<XML>");
872 pos2 = os_strstr(pos, "</XML>");
879 xml = pos
    [all...]
  /external/wpa_supplicant_8/src/eap_server/
tncs.c 24 "<?xml version=\"1.0\"?>\n" \
29 "IF_TNCCS# https://www.trustedcomputinggroup.org/XML/SCHEMA/TNCCS_1.0.xsd\">\n"
819 "<XML><TNCCS-Recommendation type=\"%s\">"
820 "</TNCCS-Recommendation></XML>"
946 * <XML><TNCCS-Foo type="foo"></TNCCS-Foo></XML>
954 char *xml, *xmlend, *endpos; local
975 /* Base64 OR XML */
977 xml = NULL;
979 pos = os_strstr(start, "<XML>");
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xml/
ExpatParser.java 17 package org.apache.harmony.xml;
26 import org.xml.sax.Attributes;
27 import org.xml.sax.ContentHandler;
28 import org.xml.sax.DTDHandler;
29 import org.xml.sax.EntityResolver;
30 import org.xml.sax.InputSource;
31 import org.xml.sax.Locator;
32 import org.xml.sax.SAXException;
33 import org.xml.sax.SAXParseException;
34 import org.xml.sax.ext.LexicalHandler
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
NodeImpl.java 17 package org.apache.harmony.xml.dom;
211 || "xml".equals(prefix) && !"http://www.w3.org/XML/1998/namespace".equals(namespaceURI)
316 "http://www.w3.org/XML/1998/namespace", "base"); // or "xml:base"
495 // the XML specs define some prefixes (like "xml" and "xmlns") but this
  /libcore/luni/src/test/java/libcore/xml/
XsltXPathConformanceTestSuite.java 17 package libcore.xml;
33 import javax.xml.parsers.DocumentBuilder;
34 import javax.xml.parsers.DocumentBuilderFactory;
35 import javax.xml.parsers.ParserConfigurationException;
36 import javax.xml.transform.ErrorListener;
37 import javax.xml.transform.Result;
38 import javax.xml.transform.Source;
39 import javax.xml.transform.Transformer;
40 import javax.xml.transform.TransformerConfigurationException;
41 import javax.xml.transform.TransformerException
    [all...]
  /packages/apps/Email/src/com/android/email/service/
EmailServiceUtils.java 497 * Parse services.xml file to find our available email services
521 final XmlResourceParser xml = res.getXml(R.xml.services); local
523 // walk through senders.xml file.
524 while ((xmlEventType = xml.next()) != XmlResourceParser.END_DOCUMENT) {
526 "emailservice".equals(xml.getName())) {
529 res.obtainAttributes(xml, R.styleable.EmailServiceInfo);
  /prebuilts/devtools/adt/lib/
sdktestutils.jar 
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_minidom.py 1 # test for xml.dom.minidom
8 import xml.dom namespace
9 import xml.dom.minidom namespace
10 import xml.parsers.expat namespace
12 from xml.dom.minidom import parse, Node, Document, parseString
13 from xml.dom.minidom import getDOMImplementation
16 tstfile = findfile("test.xml", subdir="xmltestdata")
29 notation = xml.dom.minidom.Notation("my-notation", None,
30 "http://xml.python.org/notations/my")
32 entity = xml.dom.minidom.Entity("my-entity", None
    [all...]
test_sax.py 4 from xml.sax import make_parser, ContentHandler, \
10 raise ImportError("no XML parsers available")
11 from xml.sax.saxutils import XMLGenerator, escape, unescape, quoteattr, \
13 from xml.sax.expatreader import create_parser
14 from xml.sax.handler import feature_namespaces
15 from xml.sax.xmlreader import InputSource, AttributesImpl, AttributesNSImpl
24 TEST_XMLFILE = findfile("test.xml", subdir="xmltestdata")
25 TEST_XMLFILE_OUT = findfile("test.xml.out", subdir="xmltestdata")
39 ns_uri = "http://www.python.org/xml-ns/saxtest/"
98 from xml.sax import make_parse
862 import xml.sax.expatreader namespace
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
xmlrpclib.py 2 # XML-RPC CLIENT LIBRARY
5 # an XML-RPC client interface for Python.
8 # implement XML-RPC servers.
60 # The XML-RPC client interface is
94 An XML-RPC client interface for Python.
97 implement XML-RPC servers.
104 Fault Indicates an XML-RPC fault package
108 ServerProxy Represents a logical connection to an XML-RPC server
111 Boolean boolean wrapper to generate a "boolean" XML-RPC value
114 XML-RPC valu
802 def xml(self, encoding, standalone): member in class:Unmarshaller
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_minidom.py 1 # test for xml.dom.minidom
8 import xml.dom namespace
9 import xml.dom.minidom namespace
10 import xml.parsers.expat namespace
12 from xml.dom.minidom import parse, Node, Document, parseString
13 from xml.dom.minidom import getDOMImplementation
16 tstfile = findfile("test.xml", subdir="xmltestdata")
29 notation = xml.dom.minidom.Notation("my-notation", None,
30 "http://xml.python.org/notations/my")
32 entity = xml.dom.minidom.Entity("my-entity", None
    [all...]
test_sax.py 4 from xml.sax import make_parser, ContentHandler, \
10 raise ImportError("no XML parsers available")
11 from xml.sax.saxutils import XMLGenerator, escape, unescape, quoteattr, \
13 from xml.sax.expatreader import create_parser
14 from xml.sax.handler import feature_namespaces
15 from xml.sax.xmlreader import InputSource, AttributesImpl, AttributesNSImpl
24 TEST_XMLFILE = findfile("test.xml", subdir="xmltestdata")
25 TEST_XMLFILE_OUT = findfile("test.xml.out", subdir="xmltestdata")
39 ns_uri = "http://www.python.org/xml-ns/saxtest/"
98 from xml.sax import make_parse
862 import xml.sax.expatreader namespace
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
xmlrpclib.py 2 # XML-RPC CLIENT LIBRARY
5 # an XML-RPC client interface for Python.
8 # implement XML-RPC servers.
60 # The XML-RPC client interface is
94 An XML-RPC client interface for Python.
97 implement XML-RPC servers.
104 Fault Indicates an XML-RPC fault package
108 ServerProxy Represents a logical connection to an XML-RPC server
111 Boolean boolean wrapper to generate a "boolean" XML-RPC value
114 XML-RPC valu
802 def xml(self, encoding, standalone): member in class:Unmarshaller
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
IncludeFinder.java 60 import org.eclipse.wst.xml.core.internal.provisional.document.IDOMModel;
77 * The include finder finds other XML files that are including a given XML file, and does
80 @SuppressWarnings("restriction") // XML model
416 * Scan the whole project for XML layout resources that are performing includes.
438 * have to be only layout XML files; this method will filter the type)
453 // See if we have an existing XML model for this file; if so, we can
472 // If no XML model we have to read the XML contents and (possibly) parse it.
476 String xml = AdtPlugin.readFile(file) local
482 String xml = AdtPlugin.readFile(resourceFile); local
    [all...]

Completed in 421 milliseconds

<<11121314151617181920>>