HomeSort by relevance Sort by last modified time
    Searched refs:Schema (Results 1 - 25 of 35) sorted by null

1 2

  /libcore/luni/src/main/java/javax/xml/validation/
Schema.java 18 // $Id: Schema.java 446598 2006-09-15 12:55:40Z jeremias $
30 * A {@link Schema} object is thread safe and applications are
34 * A {@link Schema} object is immutable in the sense that it shouldn't
37 * {@link Schema}, it must always produce the same result.
40 * A {@link Schema} object is usually created from {@link SchemaFactory}.
43 * Two kinds of validators can be created from a {@link Schema} object.
52 * In other words, if you parse the same schema twice, you may
57 * @see <a href="http://www.w3.org/TR/xmlschema-1/">XML Schema Part 1: Structures</a>
62 public abstract class Schema {
70 protected Schema() {
    [all...]
SchemaFactory.java 33 * Factory that creates {@link Schema} objects&#x2E; Entry-point to
37 * {@link SchemaFactory} is a schema compiler. It reads external
53 * <h2><a name="schemaLanguage"></a>Schema Language</h2>
55 * This spec uses a namespace URI to designate a schema language.
59 * is only required to support W3C XML Schema 1.0. However,
60 * if it chooses to support other schema languages listed here,
64 * Schema languages not listed here are expected to
67 * implementations for other schema languages at run-time.
89 * <td><a href="http://www.w3.org/TR/xmlschema-1">W3C XML Schema 1.0</a></td>
118 * schema language and return it.</p
    [all...]
  /external/tagsoup/templates/org/ccil/cowan/tagsoup/
HTMLSchema.java 16 This class provides a Schema that has been preinitialized with HTML
24 public class HTMLSchema extends Schema implements HTMLModels {
32 // Start of Schema calls
34 // End of Schema calls
  /libcore/luni/src/main/java/javax/xml/parsers/
DocumentBuilderFactory.java 22 import javax.xml.validation.Schema;
127 * To use modern schema languages such as W3C XML Schema or
130 * method <tt>false</tt>, then use the {@link #setSchema(Schema)}
131 * method to associate a schema to a parser.
315 * Examples include entity expansion limits and XML Schema constructs that would consume large amounts of resources.
358 * Gets the {@link Schema} object specified through
359 * the {@link #setSchema(Schema schema)} method.
368 * the {@link Schema} object that was last set throug
    [all...]
SAXParserFactory.java 22 import javax.xml.validation.Schema;
141 * To use modern schema languages such as W3C XML Schema or
144 * method <tt>false</tt>, then use the {@link #setSchema(Schema)}
145 * method to associate a schema to a parser.
192 * Examples include entity expansion limits and XML Schema constructs that would consume large amounts of resources.
241 * Gets the {@link Schema} object specified through
242 * the {@link #setSchema(Schema schema)} method.
251 * the {@link Schema} object that was last set throug
    [all...]
DocumentBuilder.java 25 import javax.xml.validation.Schema;
264 /** <p>Get a reference to the the {@link Schema} being used by
267 * <p>If no schema is being used, <code>null</code> is returned.</p>
269 * @return {@link Schema} being used or <code>null</code>
279 public Schema getSchema() {
SAXParser.java 25 import javax.xml.validation.Schema;
92 * <p>The reset <code>SAXParser</code> is not guaranteed to have the same {@link Schema}
94 * <code>Schema</code>.</p>
473 /** <p>Get a reference to the the {@link Schema} being used by
476 * <p>If no schema is being used, <code>null</code> is returned.</p>
478 * @return {@link Schema} being used or <code>null</code>
488 public Schema getSchema() {
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
ElementType.java 17 This class represents an element type in the schema.
19 a flags vector, default attributes, and a schema to which it belongs.
20 @see Schema
33 private Schema theSchema; // schema to which this belongs
37 but it's better to use Schema.element() instead.
46 @param schema The schema with which this element type will be
50 public ElementType(String name, int model, int memberOf, int flags, Schema schema) {
164 public Schema schema() {return theSchema;} method in class:ElementType
    [all...]
Schema.java 22 Abstract class representing a TSSL schema.
26 public abstract class Schema {
48 Add or replace an element type for this schema.
62 Get the root element of this schema
70 Add or replace a default attribute for an element type in this schema.
89 Specify natural parent of an element in this schema.
107 Add to or replace a character entity in this schema.
140 Return the URI (namespace name) of this schema.
148 Return the prefix of this schema.
156 Change the URI (namespace name) of this schema
    [all...]
Parser.java 41 private Schema theSchema;
266 Specifies the Schema object this Parser uses.
269 "http://www.ccil.org/~cowan/tagsoup/properties/schema";
387 if (value instanceof Schema) {
388 theSchema = (Schema)value;
391 throw new SAXNotSupportedException("Your schema is not a Schema");
537 // Currently we don't rely on Schema to canonicalize
611 // deferring to the schema for named ones.
654 if (CDATAElements && (theStack.flags() & Schema.F_CDATA) != 0)
    [all...]
HTMLSchema.java 16 This class provides a Schema that has been preinitialized with HTML
24 public class HTMLSchema extends Schema implements HTMLModels {
32 // Start of Schema calls
    [all...]
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/xpath/
XMPPathParser.java 37 * root namespace prefix to the first property component. The schema URI is
76 * schema namespace
95 // Pull out the first component and do some special processing on it: add the schema
352 // add schema xpath step
359 // add schema xpath step and base step of alias
440 * the full schema URI and/or a qualified root property name. Returns true for normal
441 * processing. If allowUnknownSchemaNS is true and the schema namespace is not registered, false
442 * is returned. If allowUnknownSchemaNS is false and the schema namespace is not registered, an
447 * @param schemaNS schema namespace
461 "Schema namespace URI is required", XMPError.BADSCHEMA)
    [all...]
  /external/clang/tools/c-index-test/
c-index-test.c 271 const char *CommentsSchemaArg = "-comments-xml-schema=";
548 xmlRelaxNGPtr Schema;
561 Schema = xmlRelaxNGParse(RNGParser);
571 ValidationCtxt = xmlRelaxNGNewValidCtxt(Schema);
583 xmlRelaxNGFree(Schema);
    [all...]
  /external/sqlite/dist/orig/
sqlite3.c 629 #define SQLITE_SCHEMA 17 /* The database schema changed */
    [all...]
shell.c     [all...]
  /external/sqlite/dist/
sqlite3.c 629 #define SQLITE_SCHEMA 17 /* The database schema changed */
    [all...]
shell.c     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
adoint.h     [all...]
  /prebuilts/tools/common/m2/repository/xml-apis/xml-apis/1.3.04/
xml-apis-1.3.04.jar 
  /external/robolectric/lib/main/
h2-1.2.147.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.pde.core_3.6.1.v20100902_r361.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-nodeps.jar 
  /prebuilts/tools/common/m2/repository/xml-apis/xml-apis/1.4.01/
xml-apis-1.4.01.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/12/
android.jar 

Completed in 2353 milliseconds

1 2