Searched refs:GetSchema (Results 1 - 25 of 31) sorted by relevance

12

/external/chromium_org/sql/
H A Drecovery_unittest.cc58 std::string GetSchema(sql::Connection* db) { function in namespace:__anon10691
98 ASSERT_EQ("CREATE TABLE x (t TEXT)", GetSchema(&db()));
109 ASSERT_EQ("", GetSchema(&db()));
114 ASSERT_EQ("CREATE TABLE x (t TEXT)", GetSchema(&db()));
127 ASSERT_EQ("", GetSchema(&db()));
132 ASSERT_EQ("CREATE TABLE x (t TEXT)", GetSchema(&db()));
152 ASSERT_EQ("CREATE TABLE x (t TEXT)", GetSchema(&db()));
196 ASSERT_EQ("CREATE TABLE x (t TEXT)", GetSchema(&db()));
424 const std::string orig_schema(GetSchema(&db()));
431 ASSERT_NE(orig_schema, GetSchema(
[all...]
H A Dconnection.h398 std::string GetSchema() const;
/external/chromium_org/extensions/renderer/
H A Dv8_schema_registry.cc27 RouteFunction("GetSchema",
28 base::Bind(&SchemaRegistryNativeHandler::GetSchema,
33 void GetSchema(const v8::FunctionCallbackInfo<v8::Value>& args) { function in class:extensions::__anon8292::SchemaRegistryNativeHandler
35 registry_->GetSchema(*v8::String::Utf8Value(args[0])));
73 v8_apis->Set(api_index++, GetSchema(*i));
78 v8::Handle<v8::Object> V8SchemaRegistry::GetSchema(const std::string& api) { function in class:extensions::V8SchemaRegistry
94 ExtensionAPI::GetSharedInstance()->GetSchema(api);
H A Dv8_schema_registry.h28 // Creates a NativeHandler wrapper |this|. Supports GetSchema.
35 v8::Handle<v8::Object> GetSchema(const std::string& api);
/external/chromium_org/chrome/common/extensions/api/storage/
H A Dstorage_schema_manifest_handler.h28 static policy::Schema GetSchema(const Extension* extension,
H A Dstorage_schema_manifest_handler.cc39 policy::Schema StorageSchemaManifestHandler::GetSchema( function in class:extensions::StorageSchemaManifestHandler
86 return GetSchema(extension, error).valid();
/external/chromium_org/components/policy/core/common/
H A Dschema_registry_unittest.cc72 EXPECT_FALSE(registry.schema_map()->GetSchema(
87 EXPECT_TRUE(registry.schema_map()->GetSchema(
95 EXPECT_FALSE(registry.schema_map()->GetSchema(
189 EXPECT_TRUE(combined.schema_map()->GetSchema(
191 EXPECT_TRUE(combined.schema_map()->GetSchema(
193 EXPECT_FALSE(combined.schema_map()->GetSchema(
201 EXPECT_TRUE(combined.schema_map()->GetSchema(
209 EXPECT_FALSE(combined.schema_map()->GetSchema(
217 EXPECT_TRUE(combined.schema_map()->GetSchema(
225 EXPECT_FALSE(combined.schema_map()->GetSchema(
[all...]
H A Dschema_map.cc31 const Schema* SchemaMap::GetSchema(const PolicyNamespace& ns) const { function in class:policy::SchemaMap
46 const Schema* schema = GetSchema(it->first);
121 if (!other->GetSchema(ns))
H A Dpolicy_provider_android.cc24 return schema_map()->GetSchema(ns);
H A Dschema_map.h36 const Schema* GetSchema(const PolicyNamespace& ns) const;
H A Dschema_map_unittest.cc74 EXPECT_FALSE(map->GetSchema(PolicyNamespace(POLICY_DOMAIN_CHROME, "")));
102 EXPECT_FALSE(map->GetSchema(
104 EXPECT_FALSE(map->GetSchema(
106 EXPECT_FALSE(map->GetSchema(
108 EXPECT_FALSE(map->GetSchema(
110 EXPECT_FALSE(map->GetSchema(
114 map->GetSchema(PolicyNamespace(POLICY_DOMAIN_EXTENSIONS, "extension-1"));
118 schema = map->GetSchema(
H A Dpolicy_loader_mac.cc59 schema_map()->GetSchema(PolicyNamespace(POLICY_DOMAIN_CHROME, ""));
H A Dpolicy_loader_win.cc589 schema_map()->GetSchema(PolicyNamespace(POLICY_DOMAIN_CHROME, ""));
628 const Schema* schema_from_map = schema_map()->GetSchema(policy_namespace);
H A Dconfiguration_policy_provider_test.cc179 Schema chrome_schema = *schema_registry_.schema_map()->GetSchema(chrome_ns);
/external/chromium_org/chrome/renderer/resources/extensions/
H A Dweb_view_request_custom_bindings.js10 requireNative('schema_registry').GetSchema('declarativeWebRequest');
H A Dchrome_web_view.js10 requireNative('schema_registry').GetSchema('declarativeWebRequest');
15 requireNative('schema_registry').GetSchema('webRequest');
H A Dchrome_web_view_experimental.js12 requireNative('schema_registry').GetSchema('contextMenus');
20 requireNative('schema_registry').GetSchema('chromeWebViewInternal');
/external/chromium_org/extensions/common/
H A Dextension_api_stub.cc50 const base::DictionaryValue* ExtensionAPI::GetSchema( function in class:extensions::ExtensionAPI
H A Dextension_api.h117 const base::DictionaryValue* GetSchema(const std::string& full_name);
/external/chromium_org/chrome/common/extensions/api/
H A Dextension_api_unittest.cc62 test_data[i].api->GetSchema("bookmarks.create") != NULL);
375 EXPECT_EQ(NULL, apis->GetSchema(std::string()));
376 EXPECT_EQ(NULL, apis->GetSchema(std::string()));
377 EXPECT_EQ(NULL, apis->GetSchema("experimental"));
378 EXPECT_EQ(NULL, apis->GetSchema("experimental"));
379 EXPECT_EQ(NULL, apis->GetSchema("foo"));
380 EXPECT_EQ(NULL, apis->GetSchema("foo"));
382 EXPECT_TRUE(apis->GetSchema("dns"));
383 EXPECT_TRUE(apis->GetSchema("dns"));
384 EXPECT_TRUE(apis->GetSchema("extensio
[all...]
/external/chromium_org/extensions/renderer/resources/
H A Dutils.js58 var types = schemaRegistry.GetSchema(schemaName).types;
H A Dbinding.js176 return new Binding(schemaRegistry.GetSchema(apiName));
/external/chromium_org/components/policy/core/common/cloud/
H A Dcomponent_cloud_policy_service.cc35 return schema_map->GetSchema(PolicyNamespace(domain, component_id)) == NULL;
403 current_schema_map_->GetSchema(ns)) {
/external/chromium_org/chrome/browser/extensions/api/storage/
H A Dsettings_apitest.cc438 EXPECT_FALSE(registry->schema_map()->GetSchema(policy::PolicyNamespace(
454 registry->schema_map()->GetSchema(policy::PolicyNamespace(
H A Dmanaged_value_store_cache.cc208 StorageSchemaManifestHandler::GetSchema(it->get(), &error);

Completed in 3314 milliseconds

12