HomeSort by relevance Sort by last modified time
    Searched refs:systemId (Results 126 - 150 of 202) sorted by null

1 2 3 4 56 7 8 9

  /external/apache-xml/src/main/java/org/apache/xalan/processor/
StylesheetHandler.java 284 * @return The systemID that was set with {@link #setSystemId}.
300 * @param systemId The system identifier provided in the XML
307 public InputSource resolveEntity(String publicId, String systemId)
310 return getCurrentProcessor().resolveEntity(this, publicId, systemId);
327 * @param systemId The notation system identifier.
330 public void notationDecl(String name, String publicId, String systemId)
332 getCurrentProcessor().notationDecl(this, name, publicId, systemId);
341 * @param systemId The entity system identifier.
346 String systemId, String notationName)
348 getCurrentProcessor().unparsedEntityDecl(this, name, publicId, systemId,
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaServiceStateTracker.java 344 int systemId = -1;
364 systemId = Integer.parseInt(states[8]);
375 baseStationLongitude, systemId, networkId);
612 int systemId = 0; //[8] systemId
645 systemId = Integer.parseInt(states[8]);
682 mNewSS.setSystemAndNetworkId(systemId, networkId);
690 baseStationLongitude, systemId, networkId);
    [all...]
  /external/chromium_org/third_party/libxml/src/
runtest.c 834 const xmlChar *ExternalID, const xmlChar *SystemID)
844 if (SystemID == NULL)
847 fprintf(SAXdebug, " %s)\n", SystemID);
858 const xmlChar *ExternalID, const xmlChar *SystemID)
868 if (SystemID == NULL)
871 fprintf(SAXdebug, " %s)\n", SystemID);
878 * @systemId: The system ID of the entity
889 resolveEntityDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *publicId, const xmlChar *systemId)
902 if (systemId != NULL)
903 fprintf(SAXdebug, ", %s)\n", (char *)systemId);
    [all...]
xmllint.c 945 const xmlChar *ExternalID, const xmlChar *SystemID)
955 if (SystemID == NULL)
958 fprintf(stdout, " %s)\n", SystemID);
969 const xmlChar *ExternalID, const xmlChar *SystemID)
979 if (SystemID == NULL)
982 fprintf(stdout, " %s)\n", SystemID);
989 * @systemId: The system ID of the entity
1000 resolveEntityDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *publicId, const xmlChar *systemId)
1013 if (systemId != NULL)
1014 fprintf(stdout, ", %s)\n", (char *)systemId);
    [all...]
  /external/libxml2/
xmllint.c 949 const xmlChar *ExternalID, const xmlChar *SystemID)
959 if (SystemID == NULL)
962 fprintf(stdout, " %s)\n", SystemID);
973 const xmlChar *ExternalID, const xmlChar *SystemID)
983 if (SystemID == NULL)
986 fprintf(stdout, " %s)\n", SystemID);
993 * @systemId: The system ID of the entity
1004 resolveEntityDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *publicId, const xmlChar *systemId)
1017 if (systemId != NULL)
1018 fprintf(stdout, ", %s)\n", (char *)systemId);
    [all...]
  /external/expat/tests/
runtests.c 110 const XML_Char *systemId,
119 const XML_Char *systemId,
775 const XML_Char *systemId,
855 const XML_Char *systemId,
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
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):
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_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):
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...]
  /libcore/luni/src/main/java/java/util/prefs/
XMLParser.java 115 public InputSource resolveEntity(String publicId, String systemId)
117 if (systemId.equals(PREFS_DTD_NAME)) {
123 throw new SAXException("Invalid DOCTYPE declaration " + systemId);
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
IncrementalSAXSource_Filter.java 388 java.lang.String systemId)
392 clientLexicalHandler. startDTD(name, publicId, systemId);
  /frameworks/base/telephony/java/android/telephony/
ServiceState.java 699 mSystemId = m.getInt("systemId");
723 m.putInt("systemId", mSystemId);
746 public void setSystemAndNetworkId(int systemId, int networkId) {
747 this.mSystemId = systemId;
  /libcore/luni/src/main/java/org/xml/sax/helpers/
ParserAdapter.java 368 * @param systemId The absolute URL of the document.
376 public void parse (String systemId)
379 parse(new InputSource(systemId));
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
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)
  /prebuilts/tools/common/m2/internal/dom4j/dom4j/1.6.1/
dom4j-1.6.1.jar 
  /external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
DOM3TreeWalker.java 502 String systemId = node.getSystemId();
525 if (null != systemId) {
531 dtd.append(systemId);
555 fLexicalHandler.startDTD(docTypeName, publicId, systemId);
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/utils/
DOMBuilder.java 704 * @param systemId The declared system identifier for the
709 public void startDTD(String name, String publicId, String systemId)
  /external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
FlexAntTasks.jar 
  /external/expat/lib/
xmlparse.c 196 const XML_Char *systemId;
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
ToHTMLStream.java     [all...]
ToStream.java 903 * @param systemId The declared system identifier of the entity.
911 String systemId)
926 m_writer.write(systemId);
    [all...]
  /prebuilts/tools/common/m2/internal/jdom/jdom/1.0/
jdom-1.0.jar 
  /hardware/ril/include/telephony/
ril.h     [all...]

Completed in 1265 milliseconds

1 2 3 4 56 7 8 9