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

12

/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/v8/test/mjsunit/
H A Dgetters-on-elements.js41 var standalone = false; variable
42 if (standalone) {
H A Dsetters-on-elements.js34 var standalone = false; variable
35 if (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.c274 XML_Bool standalone; member in struct:__anon4869
1953 XML_L("document is not standalone"),
2332 if (!dtd->hasParamEntityRefs || dtd->standalone) {
3428 int standalone = -1; local
3440 &standalone)) {
3446 if (!isGeneralTextEntity && standalone == 1) {
3447 _dtd->standalone = XML_TRUE;
3472 xmlDeclHandler(handlerArg, storedversion, storedEncName, standalone);
3958 if (!dtd->standalone &&
4001 if (!dtd->standalone
[all...]
/external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/kdom/
H A DDocument.java35 Boolean standalone; field in class:Document
47 public void setStandalone(Boolean standalone) { argument
48 this.standalone = standalone;
52 return standalone;
87 standalone = (Boolean) parser
88 .getProperty("http://xmlpull.org/v1/doc/properties.html#xmldecl-standalone");
122 writer.startDocument(encoding, standalone);
/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/clang/test/Analysis/
H A Dcfg.cpp52 // CHECK-NEXT: 9: struct standalone myStandalone;
63 struct standalone { int x, y; }; struct
64 struct standalone myStandalone;
/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/libxml2/include/libxml/
H A Dtree.h563 int standalone; /* standalone document (no external refs) member in struct:_xmlDoc
564 1 if standalone="yes"
565 0 if standalone="no"
568 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
636 * Is this document tagged standalone?
/external/libxml2/
H A Dxmlwriter.c518 * @standalone: "yes" or "no" or NULL for default
526 const char *encoding, const char *standalone)
608 if (standalone != 0) {
609 count = xmlOutputBufferWriteString(writer->out, " standalone=");
617 count = xmlOutputBufferWriteString(writer->out, standalone);
4550 doc->standalone = ctxt->standalone;
525 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
480 errmsg = "external parsed entities cannot be standalone";
504 errmsg = "standalone accepts only 'yes' or 'no'";
2491 * with "standalone='yes'", ... ... The declaration of a parameter
2496 * with "standalone='no'", ... ... The declaration of a parameter entity
2591 * references, or a document with "standalone='yes'", ...
2595 if ((ctxt->standalone == 1) ||
2604 * parameter entities with "standalone='no'", ...
5804 "standalone: attribute notation value token %s duplicated\n",
5872 "standalone
10507 int standalone = -2; local
[all...]
H A Dtestapi.c44265 char * standalone; /* "yes" or "no" or NULL for default */ local
[all...]
/external/sfntly/cpp/src/test/tinyxml/
H A Dtinyxml.h1274 <?xml version="1.0" standalone="yes"?>
1279 version, encoding, and standalone.
1312 /// Is this a standalone document?
1313 const char *Standalone() const { return standalone.c_str (); }
1343 TIXML_STRING standalone; member in class:TiXmlDeclaration
/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/vogar/lib/
H A Dkxml-libcore-20110123.jar ... .kdom.Node { protected int rootIndex String encoding Boolean standalone public void " href="/6.0.0_r1/s? ...
/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 ...
/external/robolectric/lib/main/
H A Dxpp3-1.1.4c.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ META-INF/services/org. ...
/external/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...
/external/owasp/sanitizer/tools/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...

Completed in 7987 milliseconds

12