HomeSort by relevance Sort by last modified time
    Searched refs:schema (Results 26 - 50 of 164) sorted by null

12 3 4 5 6 7

  /external/chromium/chrome/common/
json_schema_validator_unittest_base.h 32 Value* instance, DictionaryValue* schema,
36 Value* instance, DictionaryValue* schema,
  /external/chromium_org/chrome/common/json_schema/
json_schema_validator_unittest_base.h 35 base::DictionaryValue* schema,
40 base::DictionaryValue* schema,
json_schema_validator_unittest.cc 19 base::DictionaryValue* schema,
21 JSONSchemaValidator validator(schema, types);
34 base::Value* instance, base::DictionaryValue* schema,
38 JSONSchemaValidator validator(schema, types);
85 " \"items\": [ 123 ]," // "items" must contain a schema or schemas.
  /frameworks/base/test-runner/src/android/test/
DatabaseTestUtils.java 33 * Compares the schema of two databases and asserts that they are equal.
34 * @param expectedDb the db that is known to have the correct schema
35 * @param db the db whose schema should be checked
39 Set<String> schema = getSchemaSet(db); local
40 MoreAsserts.assertEquals(expectedSchema, schema);
  /external/stlport/stlport/
locale.h 23 # error STLport include schema violation
  /ndk/sources/cxx-stl/stlport/stlport/
locale.h 23 # error STLport include schema violation
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/
locale.h 23 # error STLport include schema violation
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/
locale.h 23 # error STLport include schema violation
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/
locale.h 23 # error STLport include schema violation
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/
locale.h 23 # error STLport include schema violation
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/
locale.h 23 # error STLport include schema violation
  /external/chromium_org/chrome/common/extensions/api/
extension_api.cc 47 const base::StringPiece& schema) {
51 schema,
63 CHECK(result.get()) << error_message << " for schema " << schema; local
64 CHECK(result->IsType(base::Value::TYPE_LIST)) << " for schema " << schema;
110 // with key |key| in |schema| will be updated to |schema_namespace| + "." +
111 // |schema[key]|.
113 base::DictionaryValue* schema,
115 if (!schema->HasKey(key)
205 base::DictionaryValue* schema = NULL; local
    [all...]
  /external/chromium_org/third_party/libxml/src/
check-xsddata-test-suite.py 56 def handle_valid(node, schema):
87 ctxt = schema.relaxNGNewValidCtxt()
109 def handle_invalid(node, schema):
140 ctxt = schema.relaxNGNewValidCtxt()
168 schema = ""
172 schema = schema + child.serialize()
176 rngp = libxml2.relaxNGNewMemParserCtxt(schema, len(schema))
181 log.write("\nFailed to compile correct schema:\n-----\n"
    [all...]
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,
1748 xmlSchematronPtr schema = NULL; local
    [all...]
  /external/chromium_org/chrome/common/policy/
policy_schema.cc 17 const char kJSONSchemaVersion[] = "http://json-schema.org/draft-03/schema#";
19 // Describes the properties of a TYPE_DICTIONARY policy schema.
22 static scoped_ptr<PolicySchema> Parse(const base::DictionaryValue& schema,
39 // Describes the items of a TYPE_LIST policy schema.
42 static scoped_ptr<PolicySchema> Parse(const base::DictionaryValue& schema,
81 scoped_ptr<PolicySchema> ParseSchema(const base::DictionaryValue& schema,
84 if (!schema.GetString(json_schema_constants::kType, &type_string)) {
85 *error = "The schema type must be declared.";
97 return DictionaryPolicySchema::Parse(schema, error)
    [all...]
policy_schema.h 25 // Parses |schema| as a JSON v3 schema, and additionally verifies that:
26 // - the version is JSON schema v3;
30 // - each "property" maps to a schema with one "type";
34 static scoped_ptr<PolicySchema> Parse(const std::string& schema,
48 // GetSchemaForAdditionalProperties() returns the schema that should be used
51 // the mapped schema if found in GetProperties(), otherwise returning
  /external/chromium_org/chrome/renderer/resources/extensions/
binding.js 85 CustomBindingsObject.prototype.setSchema = function(schema) {
86 // The functions in the schema are in list form, so we move them into a
90 $Array.forEach(schema.functions, function(f) {
147 function Binding(schema) {
148 this.schema_ = schema;
149 this.apiFunctions_ = new APIFunctions(schema.namespace);
163 // order to do the schema generation (registerCustomEvent and
173 // Registers a function |hook| to run after the schema for all APIs has been
192 schema: this.schema_,
201 var schema = this.schema_
    [all...]
content_setting.js 10 function extendSchema(schema) {
11 var extendedSchema = $Array.slice(schema);
41 var schema =
43 validate([callback], schema);
47 extendSchema(schema));
declarative_content_custom_bindings.js 15 // Returns the schema definition of type |typeId| defined in |namespace|.
17 return utils.lookup(api.schema.types,
26 // generated union dictionary against the schema for |typeId|.
34 var schema = getSchema(typeId);
35 validate([instance], [schema]);
storage_area.js 9 function extendSchema(schema) {
10 var extendedSchema = $Array.slice(schema);
15 function StorageArea(namespace, schema) {
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
XSLTElementDef.java 55 XSLTElementDef(XSLTSchema schema, String namespace, String name, String nameAlias,
66 schema.addAvailableElement(new QName(namespace, name));
68 schema.addAvailableElement(new QName(namespace, nameAlias));
84 XSLTElementDef(XSLTSchema schema, String namespace, String name, String nameAlias,
96 schema.addAvailableElement(new QName(namespace, name));
98 schema.addAvailableElement(new QName(namespace, nameAlias));
116 XSLTElementDef(XSLTSchema schema, String namespace, String name, String nameAlias,
121 this(schema, namespace, name, nameAlias,
142 XSLTElementDef(XSLTSchema schema, String namespace, String name, String nameAlias,
148 this(schema, namespace, name, nameAlias
    [all...]
  /external/chromium_org/chrome/browser/policy/
policy_domain_descriptor.h 34 // |schema|. This registration overrides any previously set schema for this
37 scoped_ptr<PolicySchema> schema);
  /external/chromium_org/tools/json_to_struct/
element_generator.py 95 def GenerateElement(type_name, schema, element_name, element):
100 for field_info in schema:
109 def GenerateElements(type_name, schema, description):
120 result.append(GenerateElement(type_name, schema, element_name, element))
element_generator_test.py 82 schema = [
141 result = GenerateElements('MyType', schema, description)
145 schema = [
157 lambda: GenerateElements('MyType', schema, description))
  /external/libxml2/
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,
1748 xmlSchematronPtr schema = NULL; local
    [all...]

Completed in 2371 milliseconds

12 3 4 5 6 7