Searched defs:standalone (Results 1 - 25 of 25) sorted by relevance

/external/emma/core/java12/com/vladium/emma/rt/
H A DRTSettings.java29 public static synchronized void setStandaloneMode (final boolean standalone) argument
31 s_not_standalone = ! standalone;
/external/expat/lib/
H A Dxmltok_ns.c100 int *standalone)
112 standalone);
91 XmlParseXmlDecl(int isGeneralTextEntity, const ENCODING *enc, const char *ptr, const char *end, const char **badPtr, const char **versionPtr, const char **versionEndPtr, const char **encodingName, const ENCODING **encoding, int *standalone) argument
H A Dxmlparse.c272 XML_Bool standalone; member in struct:__anon4846
1873 XML_L("document is not standalone"),
2249 if (!dtd->hasParamEntityRefs || dtd->standalone) {
3324 int standalone = -1; local
3336 &standalone)) {
3342 if (!isGeneralTextEntity && standalone == 1) {
3343 _dtd->standalone = XML_TRUE;
3368 xmlDeclHandler(handlerArg, storedversion, storedEncName, standalone);
3847 if (!dtd->standalone &&
3890 if (!dtd->standalone
[all...]
/external/stlport/test/unit/
H A Dmvctor_test.cpp806 Standalone standalone; local
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DXSLOutputAttributes.java38 * standalone
97 * @return a value of "yes" if the <code>standalone</code> delaration is to
170 * Sets the value coming from the xsl:output standalone stylesheet attribute.
171 * @param standalone a value of "yes" indicates that the
172 * <code>standalone</code> delaration is to be included in the output
175 public void setStandalone(String standalone); argument
H A DSerializerBase.java168 * The standalone value for the doctype.
173 * True if standalone was specified.
650 * Sets the value coming from the xsl:output standalone stylesheet attribute.
651 * @param standalone a value of "yes" indicates that the
652 * <code>standalone</code> delaration is to be included in the output
656 public void setStandalone(String standalone) argument
658 setOutputProperty(OutputKeys.STANDALONE, standalone);
661 * Sets the XSL standalone attribute, but does not remember if this is a
663 * @param standalone "yes" | "no"
665 protected void setStandaloneInternal(String standalone) argument
[all...]
H A DToUnknownStream.java705 public void setStandalone(String standalone) argument
707 m_handler.setStandalone(standalone);
/external/bison/lib/
H A Dtimevar.c153 /* Non-zero if this timing variable is running as a standalone
155 unsigned standalone : 1; member in struct:timevar_def
281 TIMEVAR cannot be running as a standalone timer. */
297 /* Can't push a standalone timer. */
298 if (tv->standalone)
386 if (tv->standalone)
388 tv->standalone = 1;
407 if (!tv->standalone)
427 /* Is TIMEVAR currently running as a standalone timer? */
428 if (tv->standalone)
[all...]
/external/chromium/third_party/libjingle/source/talk/xmllite/
H A Dxmlparser.cc148 XmlParser::ExpatXmlDecl(const char * ver, const char * enc, int standalone) { argument
157 if (standalone == 0) {
/external/tagsoup/src/org/ccil/cowan/tagsoup/
H A DXMLWriter.java81 * &lt;?xml version="1.0" standalone="yes"?>
144 * &lt;?xml version="1.0" standalone="yes"?>
176 * &lt;?xml version="1.0" standalone="yes"?>
193 * &lt;?xml version="1.0" standalone="yes"?>
204 * &lt;xml version="1.0" standalone="yes"?>
231 * &lt;xml version="1.0" standalone="yes"?>
522 if (standalone == null) {
523 write(" standalone=\"yes\"?>\n");
525 write(" standalone=\"");
526 write(standalone);
1430 private String standalone = null; field in class:XMLWriter
[all...]
/external/libxslt/libxslt/
H A Dxsltutils.c1533 int standalone; local
1536 XSLT_GET_IMPORT_INT(standalone, style, standalone);
1556 switch (standalone) {
1558 xmlOutputBufferWriteString(buf, " standalone=\"no\"");
1561 xmlOutputBufferWriteString(buf, " standalone=\"yes\"");
H A DxsltInternals.h1565 int standalone; /* standalone = "yes" | "no" */ member in struct:_xsltStylesheet
/external/libxml2/include/libxml/
H A Dtree.h525 int standalone; /* standalone document (no external refs) member in struct:_xmlDoc
526 1 if standalone="yes"
527 0 if standalone="no"
530 standalone attribute was specified */
H A Dparser.h75 int standalone; /* Was that entity marked standalone */ member in struct:_xmlParserInput
192 int standalone; /* standalone document */ member in struct:_xmlParserCtxt
633 * Is this document tagged standalone?
/external/libxml2/
H A Dxmlwriter.c510 * @standalone: "yes" or "no" or NULL for default
518 const char *encoding, const char *standalone)
600 if (standalone != 0) {
601 count = xmlOutputBufferWriteString(writer->out, " standalone=");
609 count = xmlOutputBufferWriteString(writer->out, standalone);
4540 doc->standalone = ctxt->standalone;
517 xmlTextWriterStartDocument(xmlTextWriterPtr writer, const char *version, const char *encoding, const char *standalone) argument
H A Dparser.c25 * from the SAX callbacks or as standalone functions using a preparsed
422 errmsg = "external parsed entities cannot be standalone\n";
446 errmsg = "standalone accepts only 'yes' or 'no'\n";
2408 * with "standalone='yes'", ... ... The declaration of a parameter
2413 * with "standalone='no'", ... ... The declaration of a parameter entity
2506 * references, or a document with "standalone='yes'", ...
2510 if ((ctxt->standalone == 1) ||
2519 * parameter entities with "standalone='no'", ...
5492 "standalone: attribute notation value token %s duplicated\n",
5560 "standalone
10031 int standalone = -2; local
[all...]
/external/tinyxml/
H A Dtinyxml.h1117 <?xml version="1.0" standalone="yes"?>
1122 version, encoding, and standalone.
1155 /// Is this a standalone document?
1156 const char *Standalone() const { return standalone.c_str (); }
1177 TIXML_STRING standalone; member in class:TiXmlDeclaration
/external/webkit/Source/WebCore/dom/
H A DXMLDocumentParserLibxml2.cpp886 // Don't load external scripts for standalone documents (for now).
1032 void XMLDocumentParser::startDocument(const xmlChar* version, const xmlChar* encoding, int standalone) argument
1038 document()->setXMLStandalone(standalone == 1, ec); // possible values are 0, 1, and -1
1253 getParser(closure)->startDocument(ctxt->version, ctxt->encoding, ctxt->standalone);
H A DDocument.cpp1070 void Document::setXMLStandalone(bool standalone, ExceptionCode& ec) argument
1077 m_xmlStandalone = standalone;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.help.base_3.5.2.v201011171123.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.ds_1.2.1.R36x_v20100803.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.ui.workbench_3.6.1.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.apache.jasper_5.5.17.v201004212143.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...
/external/jdiff/
H A Dxerces.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ org/ org/apache/ org/apache/html/ ...

Completed in 1784 milliseconds