HomeSort by relevance Sort by last modified time
    Searched full:systemid (Results 176 - 200 of 377) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/icu/icu4c/source/i18n/
zonemeta.cpp 369 ZoneMeta::getCanonicalCLDRID(const UnicodeString &tzid, UnicodeString &systemID, UErrorCode& status) {
372 systemID.setToBogus();
373 return systemID;
375 systemID.setTo(TRUE, canonicalID, -1);
376 return systemID;
ucal.cpp 578 UBool systemID = FALSE;
579 TimeZone::getCanonicalID(UnicodeString(id, len), canonical, systemID, *status);
582 *isSystemID = systemID;
  /external/libxml2/include/libxml/
tree.h 197 const xmlChar *SystemID; /* System identifier, if any */
423 const xmlChar *SystemID; /* URI for a SYSTEM or PUBLIC DTD */
755 const xmlChar *SystemID);
760 const xmlChar *SystemID);
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
TreeWalker.java 88 public TreeWalker(ContentHandler contentHandler, String systemId)
100 if (systemId != null)
101 m_locator.setSystemId(systemId);
  /external/chromium-trace/catapult/third_party/html5lib-python/html5lib/treebuilders/
_base.py 254 systemId = token["systemId"]
256 doctype = self.doctypeClass(name, publicId, systemId)
  /external/icu/android_icu4j/src/main/java/android/icu/util/
LocaleData.java 325 private int systemID;
327 systemID = id;
331 return systemID == id;
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
LocaleData.java 346 private int systemID;
348 systemID = id;
352 return systemID == id;
  /libcore/luni/src/main/java/org/xml/sax/
XMLReader.java 390 * parse(new InputSource(systemId));
396 * @param systemId The system identifier (URI).
404 public void parse (String systemId)
  /libcore/luni/src/main/java/org/xml/sax/helpers/
XMLReaderAdapter.java 190 * @param systemId The absolute URL of the document.
198 public void parse (String systemId)
201 parse(new InputSource(systemId));
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_minidom.py 666 and clone.systemId == doctype.systemId
680 and ce.systemId == se.systemId
691 and cn.systemId == sn.systemId)
705 and clone.systemId == doctype.systemId
    [all...]
test_sax.py 497 def notationDecl(self, name, publicId, systemId):
498 self._notations.append((name, publicId, systemId))
500 def unparsedEntityDecl(self, name, publicId, systemId, ndata):
501 self._entities.append((name, publicId, systemId, ndata))
523 def resolveEntity(self, publicId, systemId):
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_minidom.py 666 and clone.systemId == doctype.systemId
680 and ce.systemId == se.systemId
691 and cn.systemId == sn.systemId)
705 and clone.systemId == doctype.systemId
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_minidom.py 666 and clone.systemId == doctype.systemId
680 and ce.systemId == se.systemId
691 and cn.systemId == sn.systemId)
705 and clone.systemId == doctype.systemId
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_minidom.py 666 and clone.systemId == doctype.systemId
680 and ce.systemId == se.systemId
691 and cn.systemId == sn.systemId)
705 and clone.systemId == doctype.systemId
    [all...]
  /external/libxml2/doc/
xmlcatalog_man.html 68 </dd><dt><span class="term"><tt class="option">system</tt> <i class="replaceable"><tt>'SystemID'</tt></i></span></dt><dd>
71 <i class="replaceable"><tt>'SystemID'</tt></i>. The corresponding entry will be
  /external/libxml2/os400/libxmlrpg/
parser.rpgle 348 * @systemId: The system ID of the entity
367 * @SystemID: the SYSTEM ID (e.g. filename or URL)
379 * @SystemID: the SYSTEM ID (e.g. filename or URL)
416 * @systemId: The system ID of the entity
429 * @systemId: The system ID of the entity
468 * @systemId: The system ID of the entity
    [all...]
  /libcore/luni/src/main/java/org/xml/sax/ext/
EntityResolver2.java 175 * @param systemId The system identifier of the external entity
194 String systemId
  /libcore/luni/src/main/native/
org_apache_harmony_xml_ExpatParser.cpp 780 const char* systemId, const char* publicId, int /*hasInternalSubset*/) {
793 jstring javaSystemId = internString(env, parsingContext, systemId);
870 const char*, const char* systemId, const char* publicId) {
881 ScopedLocalRef<jstring> javaSystemId(env, env->NewStringUTF(systemId));
914 static void unparsedEntityDecl(void* data, const char* name, const char* /*base*/, const char* systemId, const char* publicId, const char* notationName) {
926 ScopedLocalRef<jstring> javaSystemId(env, env->NewStringUTF(systemId));
937 static void notationDecl(void* data, const char* name, const char* /*base*/, const char* systemId, const char* publicId) {
949 ScopedLocalRef<jstring> javaSystemId(env, env->NewStringUTF(systemId));
    [all...]
  /external/chromium-trace/catapult/third_party/html5lib-python/html5lib/
tokenizer.py     [all...]
  /external/chromium-trace/catapult/third_party/vinn/third_party/parse5/test/fixtures/
tokenizer_test.js 59 nextToken.systemId,
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/cldr/
TestCLDRVsICU.java 626 public void notationDecl(String name, String publicId, String systemId) throws SAXException {
627 logln("notationDecl: " + name + ", " + publicId + ", " + systemId);
638 public void unparsedEntityDecl(String name, String publicId, String systemId, String notationName)
640 logln("unparsedEntityDecl: " + name + ", " + publicId + ", " + systemId + ", " + notationName);
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/cldr/
TestCLDRVsICU.java 622 public void notationDecl(String name, String publicId, String systemId) throws SAXException {
623 logln("notationDecl: " + name + ", " + publicId + ", " + systemId);
634 public void unparsedEntityDecl(String name, String publicId, String systemId, String notationName)
636 logln("unparsedEntityDecl: " + name + ", " + publicId + ", " + systemId + ", " + notationName);
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
HTMLScanner.java 366 Reset document locator, supplying systemid and publicid.
367 @param systemid System id
371 public void resetDocumentLocator(String publicid, String systemid) {
373 theSystemid = systemid;
PYXWriter.java 204 public void startDTD(String name, String publicId, String systemId) throws SAXException { }
  /libcore/luni/src/test/java/libcore/xml/
SimpleParserTest.java 212 public InputSource resolveEntity(String publicId, String systemId)

Completed in 351 milliseconds

1 2 3 4 5 6 78 91011>>