Searched defs:subschema (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/components/policy/core/common/
H A Dgenerate_policy_source_unittest.cc62 Schema subschema = schema.GetAdditionalProperties(); local
63 EXPECT_FALSE(subschema.valid());
65 subschema = schema.GetProperty("no such policy exists");
66 EXPECT_FALSE(subschema.valid());
68 subschema = schema.GetProperty(key::kSearchSuggestEnabled);
69 ASSERT_TRUE(subschema.valid());
70 EXPECT_EQ(base::Value::TYPE_BOOLEAN, subschema.type());
72 subschema = schema.GetProperty(key::kDefaultCookiesSetting);
73 ASSERT_TRUE(subschema.valid());
74 EXPECT_EQ(base::Value::TYPE_INTEGER, subschema
[all...]
H A Dregistry_dict_win.cc302 Schema subschema = local
305 ConvertValue(*entry->second, subschema);
311 Schema subschema = local
314 entry->second->ConvertToJSON(subschema);
H A Dschema_unittest.cc188 std::string SchemaObjectWrapper(const std::string& subschema) { argument
192 " \"SomePropertyName\":" + subschema +
737 Schema subschema = schema.GetProperty("ObjectOfObject"); local
738 ASSERT_TRUE(subschema.valid());
743 TestSchemaValidation(subschema, root, SCHEMA_STRICT, false);
744 TestSchemaValidation(subschema, root, SCHEMA_ALLOW_UNKNOWN_TOPLEVEL, false);
745 TestSchemaValidation(subschema, root, SCHEMA_ALLOW_UNKNOWN, true);
746 TestSchemaValidation(subschema, root, SCHEMA_ALLOW_INVALID_TOPLEVEL, true);
747 TestSchemaValidation(subschema, root, SCHEMA_ALLOW_INVALID, true);
748 TestSchemaValidationWithPath(subschema, roo
764 Schema subschema = schema.GetProperty("ArrayOfObjects"); local
795 Schema subschema = schema.GetProperty("ObjectOfArray"); local
822 Schema subschema = schema.GetProperty("ArrayOfObjectOfArray"); local
851 Schema subschema = schema.GetProperty("StringWithPattern"); local
868 Schema subschema = schema.GetProperty("ObjectWithPatternProperties"); local
[all...]

Completed in 166 milliseconds