HomeSort by relevance Sort by last modified time
    Searched full:pubid (Results 1 - 25 of 31) sorted by null

1 2

  /external/chromium_org/third_party/libxml/src/include/libxml/
catalog.h 87 const xmlChar *pubID,
94 const xmlChar *pubID);
124 xmlCatalogResolve (const xmlChar *pubID,
129 xmlCatalogResolvePublic (const xmlChar *pubID);
154 const xmlChar *pubID,
176 xmlCatalogGetPublic (const xmlChar *pubID);
xmlwriter.h 305 const xmlChar * pubid,
315 const xmlChar * pubid,
322 const xmlChar * pubid,
329 const xmlChar * pubid,
434 const xmlChar * pubid,
440 const xmlChar * pubid,
448 pubid,
462 const xmlChar * pubid,
  /external/libxml2/include/libxml/
catalog.h 87 const xmlChar *pubID,
94 const xmlChar *pubID);
124 xmlCatalogResolve (const xmlChar *pubID,
129 xmlCatalogResolvePublic (const xmlChar *pubID);
154 const xmlChar *pubID,
176 xmlCatalogGetPublic (const xmlChar *pubID);
xmlwriter.h 305 const xmlChar * pubid,
315 const xmlChar * pubid,
322 const xmlChar * pubid,
329 const xmlChar * pubid,
434 const xmlChar * pubid,
440 const xmlChar * pubid,
448 pubid,
462 const xmlChar * pubid,
  /external/chromium_org/third_party/libxml/src/
catalog.c 90 static xmlChar *xmlCatalogNormalizePublic(const xmlChar *pubID);
1019 * @pubID: the public ID string
1030 xmlCatalogNormalizePublic(const xmlChar *pubID)
1038 if (pubID == NULL)
1042 for (p = pubID;*p != 0 && ok;p++) {
1053 ret = xmlStrdup(pubID);
1056 for (p = pubID;*p != 0;p++) {
1084 xmlCatalogListXMLResolve(xmlCatalogEntryPtr catal, const xmlChar *pubID,
    [all...]
xmlwriter.c     [all...]
testapi.c 43695 xmlChar * pubid; \/* the public identifier, which is an alternative to the system identifier *\/ local
44374 xmlChar * pubid; \/* the public identifier, which is an alternative to the system identifier *\/ local
44534 xmlChar * pubid; \/* the public identifier, which is an alternative to the system identifier *\/ local
44610 xmlChar * pubid; \/* the public identifier, which is an alternative to the system identifier *\/ local
44675 xmlChar * pubid; \/* the public identifier, which is an alternative to the system identifier *\/ local
44787 xmlChar * pubid; \/* the public identifier, which is an alternative to the system identifier *\/ local
    [all...]
  /external/libxml2/
catalog.c 90 static xmlChar *xmlCatalogNormalizePublic(const xmlChar *pubID);
1016 * @pubID: the public ID string
1027 xmlCatalogNormalizePublic(const xmlChar *pubID)
1035 if (pubID == NULL)
1039 for (p = pubID;*p != 0 && ok;p++) {
1050 ret = xmlStrdup(pubID);
1053 for (p = pubID;*p != 0;p++) {
1081 xmlCatalogListXMLResolve(xmlCatalogEntryPtr catal, const xmlChar *pubID,
    [all...]
xmlwriter.c     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/sax/
expatreader.py 368 def start_doctype_decl(self, name, sysid, pubid, has_internal_subset):
369 self._lex_handler_prop.startDTD(name, pubid, sysid)
371 def unparsed_entity_decl(self, name, base, sysid, pubid, notation_name):
372 self._dtd_handler.unparsedEntityDecl(name, pubid, sysid, notation_name)
374 def notation_decl(self, name, base, sysid, pubid):
375 self._dtd_handler.notationDecl(name, pubid, sysid)
377 def external_entity_ref(self, context, base, sysid, pubid):
381 source = self._ent_handler.resolveEntity(pubid, sysid)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/sax/
expatreader.py 368 def start_doctype_decl(self, name, sysid, pubid, has_internal_subset):
369 self._lex_handler_prop.startDTD(name, pubid, sysid)
371 def unparsed_entity_decl(self, name, base, sysid, pubid, notation_name):
372 self._dtd_handler.unparsedEntityDecl(name, pubid, sysid, notation_name)
374 def notation_decl(self, name, base, sysid, pubid):
375 self._dtd_handler.notationDecl(name, pubid, sysid)
377 def external_entity_ref(self, context, base, sysid, pubid):
381 source = self._ent_handler.resolveEntity(pubid, sysid)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
xmllib.py 56 'PUBLIC'+_S+_PublicLiteral%'pubid'+ \
450 pubid, syslit = res.group('pubid', 'syslit')
451 if pubid is not None:
452 pubid = pubid[1:-1] # remove quotes
453 pubid = ' '.join(pubid.split()) # normalize
474 self.handle_doctype(name, pubid, syslit, rawdata[j+1:k])
488 self.handle_doctype(name, pubid, syslit, None
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
xmllib.py 56 'PUBLIC'+_S+_PublicLiteral%'pubid'+ \
450 pubid, syslit = res.group('pubid', 'syslit')
451 if pubid is not None:
452 pubid = pubid[1:-1] # remove quotes
453 pubid = ' '.join(pubid.split()) # normalize
474 self.handle_doctype(name, pubid, syslit, rawdata[j+1:k])
488 self.handle_doctype(name, pubid, syslit, None
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/etree/
ElementTree.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/etree/
ElementTree.py     [all...]
  /external/apache-xml/src/main/java/org/apache/xml/utils/
XMLChar.java 68 /** Pubid character mask. */
328 // set Pubid characters
500 * Returns true if the specified character is a valid Pubid
  /external/chromium_org/third_party/expat/files/
Changes 163 sysid, pubid, has_internal_subset
  /external/expat/
Changes 199 sysid, pubid, has_internal_subset
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_pyexpat.py 99 name, base, sysid, pubid = args
111 context, base, sysId, pubId = args
test_sax.py 781 return "pubid"
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_pyexpat.py 99 name, base, sysid, pubid = args
111 context, base, sysId, pubId = args
test_sax.py 781 return "pubid"
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
ToStream.java     [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
XMLChar.java 70 /** Pubid character mask. */
    [all...]
  /external/expat/lib/
expat.h 302 const XML_Char *pubid,
    [all...]

Completed in 1156 milliseconds

1 2