/external/chromium/chrome/common/ |
H A D | json_schema_validator_unittest.cc | 18 Value* instance, DictionaryValue* schema, 20 JSONSchemaValidator validator(schema, types); 32 Value* instance, DictionaryValue* schema, 36 JSONSchemaValidator validator(schema, types); 17 ExpectValid(const std::string& test_source, Value* instance, DictionaryValue* schema, ListValue* types) argument 31 ExpectNotValid(const std::string& test_source, Value* instance, DictionaryValue* schema, ListValue* types, const std::string& expected_error_path, const std::string& expected_error_message) argument
|
H A D | json_schema_validator.cc | 62 "Unknown schema reference: *."; 140 JSONSchemaValidator::JSONSchemaValidator(DictionaryValue* schema) argument 141 : schema_root_(schema), default_allow_additional_properties_(false) { 144 JSONSchemaValidator::JSONSchemaValidator(DictionaryValue* schema, argument 146 : schema_root_(schema), default_allow_additional_properties_(false) { 171 DictionaryValue* schema, 173 // If this schema defines itself as reference type, save it in this.types. 175 if (schema->GetString("id", &id)) { 178 types_[id] = schema; 180 CHECK(iter->second == schema); 170 Validate(Value* instance, DictionaryValue* schema, const std::string& path) argument 224 ValidateArray(static_cast<ListValue*>(instance), schema, path); local 226 ValidateString(static_cast<StringValue*>(instance), schema, path); local 288 ValidateObject(DictionaryValue* instance, DictionaryValue* schema, const std::string& path) argument 336 ValidateArray(ListValue* instance, DictionaryValue* schema, const std::string& path) argument 378 ValidateTuple(ListValue* instance, DictionaryValue* schema, const std::string& path) argument 426 ValidateString(StringValue* instance, DictionaryValue* schema, const std::string& path) argument 453 ValidateNumber(Value* instance, DictionaryValue* schema, const std::string& path) argument 490 SchemaAllowsAnyAdditionalItems( DictionaryValue* schema, DictionaryValue** additional_properties_schema) argument [all...] |
/external/chromium/chrome/browser/extensions/ |
H A D | extension_proxy_api_helpers_unittest.cc | 34 DictionaryValue* CreateTestProxyServerDict(const std::string& schema, argument 38 dict->SetString(keys::kProxyConfigRuleScheme, schema); 237 // Test simplest case, no schema nor port specified --> defaults are used.
|
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/ |
H A D | XMPMetaFactory.java | 31 private static XMPSchemaRegistry schema = new XMPSchemaRegistryImpl(); field in class:XMPMetaFactory 49 return schema; 241 * Resets the schema registry to its original state (creates a new one). 247 schema = new XMPSchemaRegistryImpl();
|
/external/chromium/chrome/common/extensions/docs/js/ |
H A D | api_page_generator.js | 40 // The full extension api schema 41 var schema; variable 116 // Now the page is composed with the authored content, we fetch the schema 127 schema = []; 130 schema = schema.concat(JSON.parse(content)); 206 schema.forEach(function(mod) { 335 return schema.filter(function(module) { 343 return schema.filter(function(module) { 351 return schema [all...] |
/external/tagsoup/src/org/ccil/cowan/tagsoup/ |
H A D | 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. 33 private Schema theSchema; // schema to which this belongs 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) { argument 56 theSchema = schema; 64 name if there is no prefix, or use the schema default instead. 160 Returns the schema which this element type is associated with. 161 @return The schema 164 public Schema schema() {return theSchema;} method in class:ElementType [all...] |
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/ |
H A D | Utils.java | 154 * @param schema 155 * a schema namespace 161 static boolean isInternalProperty(String schema, String prop) argument 165 if (NS_DC.equals(schema)) 172 else if (NS_XMP.equals(schema)) 181 else if (NS_PDF.equals(schema)) 190 else if (NS_TIFF.equals(schema)) 199 else if (NS_EXIF.equals(schema)) 207 else if (NS_EXIF_AUX.equals(schema)) 211 else if (NS_PHOTOSHOP.equals(schema)) [all...] |
/external/apache-xml/src/main/java/org/apache/xalan/processor/ |
H A D | XSLTElementDef.java | 55 XSLTElementDef(XSLTSchema schema, String namespace, String name, String nameAlias, argument 66 schema.addAvailableElement(new QName(namespace, name)); 68 schema.addAvailableElement(new QName(namespace, nameAlias)); 84 XSLTElementDef(XSLTSchema schema, String namespace, String name, String nameAlias, argument 96 schema.addAvailableElement(new QName(namespace, name)); 98 schema.addAvailableElement(new QName(namespace, nameAlias)); 116 XSLTElementDef(XSLTSchema schema, String namespace, String name, String nameAlias, argument 121 this(schema, namespace, name, nameAlias, 142 XSLTElementDef(XSLTSchema schema, String namespace, String name, String nameAlias, argument 148 this(schema, namespac 171 XSLTElementDef(XSLTSchema schema, String namespace, String name, String nameAlias, XSLTElementDef[] elements, XSLTAttributeDef[] attributes, XSLTElementProcessor contentHandler, Class classObject, boolean has_required, boolean required, boolean has_order, int order, boolean multiAllowed) argument 199 XSLTElementDef(XSLTSchema schema, String namespace, String name, String nameAlias, XSLTElementDef[] elements, XSLTAttributeDef[] attributes, XSLTElementProcessor contentHandler, Class classObject, boolean has_order, int order, boolean multiAllowed) argument 224 XSLTElementDef(XSLTSchema schema, String namespace, String name, String nameAlias, XSLTElementDef[] elements, XSLTAttributeDef[] attributes, XSLTElementProcessor contentHandler, Class classObject, int order, boolean multiAllowed) argument [all...] |
/external/apache-xml/src/main/java/org/apache/xalan/templates/ |
H A D | StylesheetRoot.java | 102 * The schema used when creating this StylesheetRoot 108 * Creates a StylesheetRoot and retains a pointer to the schema used to create this 109 * StylesheetRoot. The schema may be needed later for an element-available() function call. 111 * @param schema The schema used to create this stylesheet 114 public StylesheetRoot(XSLTSchema schema, ErrorListener listener) throws TransformerConfigurationException argument 118 m_availElems = schema.getElemsAvailable();
|
/external/libxml2/ |
H A D | schematron.c | 2 * schematron.c : implementation of the Schematron schema validity checking 130 const xmlChar *name; /* schema name */ 163 xmlSchematronPtr schema; member in struct:_xmlSchematronValidCtxt 192 xmlSchematronPtr schema; member in struct:_xmlSchematronParserCtxt 293 * @ctxt: the schema parsing context 331 xmlSchematronPErrMemory(ctxt, "allocating schema test", node); 378 * @ctxt: the schema parsing context 379 * @schema: a schema structure 389 xmlSchematronAddRule(xmlSchematronParserCtxtPtr ctxt, xmlSchematronPtr schema, argument 482 xmlSchematronAddPattern(xmlSchematronParserCtxtPtr ctxt, xmlSchematronPtr schema, xmlNodePtr node, xmlChar *name) argument 561 xmlSchematronFree(xmlSchematronPtr schema) argument 1503 xmlSchematronNewValidCtxt(xmlSchematronPtr schema, int options) argument 1748 xmlSchematronPtr schema = NULL; local [all...] |
H A D | xmllint.c | 117 XMLLINT_ERR_SCHEMAPAT = 7, /* Error in schema pattern */ 152 static char * schema = NULL; variable 1884 "Relax-NG schema %s failed to compile\n", relaxng); 1892 if (schema != NULL) { 1896 ret = xmlTextReaderSchemaValidate(reader, schema); 1899 "XSD schema %s failed to compile\n", schema); 1901 schema = NULL; 1949 if ((relaxng != NULL) || (schema != NULL)) { 3065 printf("\t--relaxng schema [all...] |
H A D | xmlreader.c | 3623 * defined in the DTD or schema. 4077 * @schema: a precompiled RelaxNG schema 4081 * if @schema is NULL, then RelaxNG validation is desactivated. 4082 @ The @schema should not be freed until the reader is deallocated 4089 xmlTextReaderRelaxNGSetSchema(xmlTextReaderPtr reader, xmlRelaxNGPtr schema) { argument 4092 if (schema == NULL) { 4113 reader->rngValidCtxt = xmlRelaxNGNewValidCtxt(schema); 4136 * @schema: a precompiled Schema schema 4148 xmlTextReaderSetSchema(xmlTextReaderPtr reader, xmlSchemaPtr schema) argument [all...] |
H A D | relaxng.c | 211 xmlRelaxNGPtr schema; /* The schema in use */ member in struct:_xmlRelaxNGParserCtxt 356 xmlRelaxNGPtr schema; /* The schema in use */ member in struct:_xmlRelaxNGValidCtxt 404 xmlRelaxNGPtr schema; /* the schema */ member in struct:_xmlRelaxNGInclude 417 xmlRelaxNGPtr schema; /* the schema */ member in struct:_xmlRelaxNGDocument 664 static void xmlRelaxNGFreeInnerSchema(xmlRelaxNGPtr schema); 688 if (docu->schema ! 780 xmlRelaxNGFreeInnerSchema(xmlRelaxNGPtr schema) argument 805 xmlRelaxNGFree(xmlRelaxNGPtr schema) argument 6642 xmlRelaxNGPtr schema = NULL; local 7854 xmlRelaxNGDump(FILE * output, xmlRelaxNGPtr schema) argument 7885 xmlRelaxNGDumpTree(FILE * output, xmlRelaxNGPtr schema) argument 8290 xmlRelaxNGPtr schema; local 10709 xmlRelaxNGPtr schema; local 10859 xmlRelaxNGNewValidCtxt(xmlRelaxNGPtr schema) argument [all...] |
H A D | xmlschemas.c | 3 * schema validity checking 15 * - if we don't intend to use the schema for schemas, we 16 * need to validate all schema attributes (ref, type, name) 21 * - For xsi-driven schema acquisition, augment the IDCs after every 29 * - http://lists.w3.org/Archives/Public/www-xml-schema-comments/2005JulSep/0337.html 45 * is schema construction via an API is implemented. 205 * Macros for schema buckets. 299 #define WXS_SCHEMA(ctx) (ctx)->schema 340 * Some flags used for various schema constraints. 379 * Used to create a graph of schema relationship 440 xmlSchemaPtr schema; member in struct:_xmlSchemaImport 602 xmlSchemaPtr schema; /* The main schema in use */ member in struct:_xmlSchemaParserCtxt 971 xmlSchemaPtr schema; /* The schema in use */ member in struct:_xmlSchemaValidCtxt 4091 xmlSchemaFree(xmlSchemaPtr schema) argument 4483 xmlSchemaDump(FILE * output, xmlSchemaPtr schema) argument 4728 xmlSchemaGetElem(xmlSchemaPtr schema, const xmlChar * name, const xmlChar * nsName) argument 4762 xmlSchemaGetType(xmlSchemaPtr schema, const xmlChar * name, const xmlChar * nsName) argument 4809 xmlSchemaGetAttributeDecl(xmlSchemaPtr schema, const xmlChar * name, const xmlChar * nsName) argument 4843 xmlSchemaGetAttributeGroup(xmlSchemaPtr schema, const xmlChar * name, const xmlChar * nsName) argument 4883 xmlSchemaGetGroup(xmlSchemaPtr schema, const xmlChar * name, const xmlChar * nsName) argument 4908 xmlSchemaGetNotation(xmlSchemaPtr schema, const xmlChar *name, const xmlChar *nsName) argument 4924 xmlSchemaGetIDC(xmlSchemaPtr schema, const xmlChar *name, const xmlChar *nsName) argument 4950 xmlSchemaGetNamedComponent(xmlSchemaPtr schema, xmlSchemaTypeType itemType, const xmlChar *name, const xmlChar *targetNs) argument 5106 xmlSchemaAddNotation(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, const xmlChar *name, const xmlChar *nsName, xmlNodePtr node ATTRIBUTE_UNUSED) argument 5143 xmlSchemaAddAttribute(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, const xmlChar * name, const xmlChar * nsName, xmlNodePtr node, int topLevel) argument 5347 xmlSchemaAddType(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, xmlSchemaTypeType type, const xmlChar * name, const xmlChar * nsName, xmlNodePtr node, int topLevel) argument 5444 xmlSchemaAddModelGroup(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, xmlSchemaTypeType type, xmlNodePtr node) argument 5532 xmlSchemaAddModelGroupDefinition(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, const xmlChar *name, const xmlChar *nsName, xmlNodePtr node) argument 5594 xmlSchemaAddIDC(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, const xmlChar *name, const xmlChar *nsName, int category, xmlNodePtr node) argument 5636 xmlSchemaAddWildcard(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, xmlSchemaTypeType type, xmlNodePtr node) argument 5769 xmlSchemaPValAttrNodeQNameValue(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, xmlSchemaBasicItemPtr ownerItem, xmlAttrPtr attr, const xmlChar *value, const xmlChar **uri, const xmlChar **local) argument 5850 xmlSchemaPValAttrNodeQName(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, xmlSchemaBasicItemPtr ownerItem, xmlAttrPtr attr, const xmlChar **uri, const xmlChar **local) argument 5881 xmlSchemaPValAttrQName(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, xmlSchemaBasicItemPtr ownerItem, xmlNodePtr ownerElem, const char *name, const xmlChar **uri, const xmlChar **local) argument 6448 xmlSchemaParseLocalAttributes(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, xmlNodePtr *child, xmlSchemaItemListPtr *list, int parentType, int *hasRefs) argument 6611 xmlSchemaParseFacet(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, xmlNodePtr node) argument 6871 xmlSchemaParseAny(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, xmlNodePtr node) argument 6963 xmlSchemaParseNotation(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, xmlNodePtr node) argument 7011 xmlSchemaParseAnyAttribute(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, xmlNodePtr node) argument 7081 xmlSchemaParseLocalAttribute(xmlSchemaParserCtxtPtr pctxt, xmlSchemaPtr schema, xmlNodePtr node, xmlSchemaItemListPtr uses, int parentType) argument 7473 xmlSchemaParseGlobalAttribute(xmlSchemaParserCtxtPtr pctxt, xmlSchemaPtr schema, xmlNodePtr node) argument 7626 xmlSchemaParseAttributeGroupRef(xmlSchemaParserCtxtPtr pctxt, xmlSchemaPtr schema, xmlNodePtr node) argument 7757 xmlSchemaParseAttributeGroupDefinition(xmlSchemaParserCtxtPtr pctxt, xmlSchemaPtr schema, xmlNodePtr node) argument 8285 xmlSchemaParseIDC(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, xmlNodePtr node, xmlSchemaTypeType idcCategory, const xmlChar *targetNamespace) argument 8435 xmlSchemaParseElement(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, xmlNodePtr node, int *isElemRef, int topLevel) argument 8833 xmlSchemaParseUnion(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, xmlNodePtr node) argument 9002 xmlSchemaParseList(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, xmlNodePtr node) argument 9113 xmlSchemaParseSimpleType(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, xmlNodePtr node, int topLevel) argument 9327 xmlSchemaParseModelGroupDefRef(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, xmlNodePtr node) argument 9429 xmlSchemaParseModelGroupDefinition(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, xmlNodePtr node) argument 9584 xmlSchemaClearSchemaDefaults(xmlSchemaPtr schema) argument 9610 xmlSchemaParseSchemaElement(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, xmlNodePtr node) argument 9727 xmlSchemaParseSchemaTopLevel(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, xmlNodePtr nodes) argument 10076 xmlSchemaParseNewDocWithContext(xmlSchemaParserCtxtPtr pctxt, xmlSchemaPtr schema, xmlSchemaBucketPtr bucket) argument 10145 xmlSchemaParseNewDoc(xmlSchemaParserCtxtPtr pctxt, xmlSchemaPtr schema, xmlSchemaBucketPtr bucket) argument 10687 xmlSchemaParseImport(xmlSchemaParserCtxtPtr pctxt, xmlSchemaPtr schema, xmlNodePtr node) argument 10834 xmlSchemaParseIncludeOrRedefineAttrs(xmlSchemaParserCtxtPtr pctxt, xmlSchemaPtr schema, xmlNodePtr node, xmlChar **schemaLocation, int type) argument 10930 xmlSchemaParseIncludeOrRedefine(xmlSchemaParserCtxtPtr pctxt, xmlSchemaPtr schema, xmlNodePtr node, int type) argument 11138 xmlSchemaParseRedefine(xmlSchemaParserCtxtPtr pctxt, xmlSchemaPtr schema, xmlNodePtr node) argument 11154 xmlSchemaParseInclude(xmlSchemaParserCtxtPtr pctxt, xmlSchemaPtr schema, xmlNodePtr node) argument 11192 xmlSchemaParseModelGroup(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, xmlNodePtr node, xmlSchemaTypeType type, int withParticle) argument 11458 xmlSchemaParseRestriction(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, xmlNodePtr node, xmlSchemaTypeType parentType) argument 11762 xmlSchemaParseExtension(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, xmlNodePtr node, xmlSchemaTypeType parentType) argument 11897 xmlSchemaParseSimpleContent(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, xmlNodePtr node, int *hasRestrictionOrExtension) argument 11987 xmlSchemaParseComplexContent(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, xmlNodePtr node, int *hasRestrictionOrExtension) argument 12082 xmlSchemaParseComplexType(xmlSchemaParserCtxtPtr ctxt, xmlSchemaPtr schema, xmlNodePtr node, int topLevel) argument 21563 xmlSchemaAssembleByLocation(xmlSchemaValidCtxtPtr vctxt, xmlSchemaPtr schema, xmlNodePtr node, const xmlChar *nsName, const xmlChar *location) argument 21843 xmlSchemaValidateNotation(xmlSchemaValidCtxtPtr vctxt, xmlSchemaPtr schema, xmlNodePtr node, const xmlChar *value, xmlSchemaValPtr *val, int valNeeded) argument 27435 xmlSchemaNewValidCtxt(xmlSchemaPtr schema) argument [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/34/1/.cp/ant_tasks/ |
H A D | pde-ant.jar | ... org.eclipse.pde.internal.core.schema.Schema schema
org.eclipse.pde.internal ... |
/external/javasqlite/src/main/java/SQLite/JDBC2z/ |
H A D | JDBCDatabaseMetaData.java | 600 throw new SQLException("schema reload failed"); 684 public ResultSet getColumnPrivileges(String catalog, String schema, argument 725 public ResultSet getBestRowIdentifier(String catalog, String schema, argument 737 throw new SQLException("schema reload failed"); 840 public ResultSet getVersionColumns(String catalog, String schema, argument 859 public ResultSet getPrimaryKeys(String catalog, String schema, argument 867 throw new SQLException("schema reload failed"); 1022 public ResultSet getImportedKeys(String catalog, String schema, argument 1030 throw new SQLException("schema reload failed"); 1064 public ResultSet getExportedKeys(String catalog, String schema, argument 1272 getIndexInfo(String catalog, String schema, String table, boolean unique, boolean approximate) argument 1650 getSchemas(String cat, String schema) argument 1669 getFunctions(String cat, String schema, String func) argument 1674 getFunctionColumns(String cat, String schema, String func, String colpat) argument [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
H A D | org.eclipse.pde.core_3.6.1.v20100902_r361.jar | ... plist macosx/Info.plist.32 plugin.properties schema.css targets/ targets/rcp.target targets/rcpWithSource. ... |
H A D | org.eclipse.core.runtime.compatibility_3.2.100.v20100505.jar | META-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ... |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/ |
H A D | ant-nodeps.jar | META-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ... |