/external/chromium_org/components/policy/core/browser/ |
configuration_policy_pref_store.cc | 80 DCHECK_EQ(POLICY_DOMAIN_CHROME, ns.domain); 86 PolicyDomain domain) { 87 if (domain == POLICY_DOMAIN_CHROME) {
|
configuration_policy_pref_store.h | 52 virtual void OnPolicyServiceInitialized(PolicyDomain domain) OVERRIDE;
|
/external/chromium_org/components/policy/core/common/cloud/ |
cloud_policy_manager.cc | 54 bool CloudPolicyManager::IsInitializationComplete(PolicyDomain domain) const { 55 if (domain == POLICY_DOMAIN_CHROME) 57 if (ComponentCloudPolicyService::SupportsDomain(domain) &&
|
component_cloud_policy_service_stub.cc | 29 bool ComponentCloudPolicyService::SupportsDomain(PolicyDomain domain) {
|
/external/chromium_org/net/http/ |
http_auth_handler_ntlm.cc | 54 // The username may be in the form "DOMAIN\user". Parse it into the two 56 base::string16 domain; 64 domain = username.substr(0, backslash_idx); 67 domain_ = domain;
|
/external/chromium_org/components/url_fixer/ |
url_fixer.cc | 196 // Checks |domain| to see if a valid TLD is already present. If not, appends 197 // |desired_tld| to the domain, and prepends "www." unless it's already present. 198 void AddDesiredTLD(const std::string& desired_tld, std::string* domain) { 199 if (desired_tld.empty() || domain->empty()) 213 *domain, 219 // Add the suffix at the end of the domain. 220 const size_t domain_length(domain->length()); 223 if ((*domain)[domain_length - 1] != '.') 224 domain->push_back('.'); 225 domain->append(desired_tld) [all...] |
/external/chromium_org/chrome/browser/resources/history/ |
history.css | 247 .site-domain-row { 263 .site-domain-wrapper { 303 .entry .domain { 312 .site-results .domain { 336 html[dir='rtl'] .site-domain { 351 .site-domain-row input[type='checkbox'] { 359 .site-domain-wrapper:hover input[type='checkbox']:not(:focus), 360 .site-domain-wrapper input[type='checkbox']:not(:focus):checked, 423 .site-domain-row { 429 .active :-webkit-any(.entry-box, .site-domain-row) [all...] |
/art/disassembler/ |
disassembler_arm.h | 43 void DumpMemoryDomain(std::ostream& os, uint32_t domain);
|
/build/target/board/generic_mips/ |
BoardConfig.mk | 64 domain.te \
|
/device/generic/mips/ |
BoardConfig.mk | 43 domain.te \
|
/device/generic/x86/ |
BoardConfig.mk | 44 domain.te \
|
/external/chromium_org/chrome/browser/chromeos/attestation/ |
platform_verification_dialog.h | 37 const base::string16& domain,
|
/external/chromium_org/chrome/browser/chromeos/policy/ |
device_local_account.cc | 67 const std::string domain = gaia::ExtractDomainName(user_id); local 68 if (!EndsWith(domain, kDeviceLocalAccountDomainSuffix, true)) 71 const std::string domain_prefix = domain.substr( 72 0, domain.size() - arraysize(kDeviceLocalAccountDomainSuffix) + 1);
|
device_local_account_policy_provider.h | 47 virtual bool IsInitializationComplete(PolicyDomain domain) const OVERRIDE;
|
network_configuration_updater.h | 44 virtual void OnPolicyServiceInitialized(PolicyDomain domain) OVERRIDE;
|
/external/chromium_org/chrome/browser/extensions/ |
webstore_installer_test.h | 32 GURL GenerateTestServerUrl(const std::string& domain,
|
/external/chromium_org/chrome/browser/local_discovery/ |
service_discovery_client_utility.h | 35 const std::string& domain,
|
test_service_discovery_client.h | 29 const std::string& domain,
|
/external/chromium_org/chrome/browser/ui/webui/chromeos/login/ |
terms_of_service_screen_handler.h | 36 virtual void SetDomain(const std::string& domain) OVERRIDE; 54 // Update the domain name shown in the UI. 77 // The domain name whose Terms of Service are being shown.
|
/external/chromium_org/components/policy/core/common/ |
configuration_policy_provider.cc | 39 PolicyDomain domain) const {
|
policy_loader_mac.h | 48 // which belong to the domain |domain_name|, and stores them in the |bundle|. 50 PolicyDomain domain,
|
policy_provider_android.cc | 51 PolicyDomain domain) const {
|
schema_map.h | 24 // Contains a mapping of policy namespaces (domain + component ID) to its 34 const ComponentMap* GetComponents(PolicyDomain domain) const; 42 // Returns true if this map contains at least one component of a domain other
|
/external/chromium_org/net/base/ |
sdch_manager_unittest.cc | 66 static std::string NewSdchDictionary(const std::string& domain) { 68 if (!domain.empty()) { 69 dictionary.append("Domain: "); 70 dictionary.append(domain); 110 GURL gurl("http://mytest.DoMain.com"); 111 std::string domain(gurl.host()); 114 EXPECT_EQ(sdch_manager()->BlackListDomainCount(domain), 0); 115 EXPECT_EQ(sdch_manager()->BlacklistDomainExponential(domain), 0); 120 GURL gurl("http://mytest.DoMain.com"); 121 std::string domain(gurl.host()) [all...] |
/external/chromium_org/net/cookies/ |
cookie_util.h | 27 // Determine the actual cookie domain based on the domain string passed 30 // -host cookie domain (ex: "google.com") 31 // -domain cookie domain (ex: ".google.com") 36 // Returns true if a domain string represents a host-only cookie, 43 // Convenience for converting a cookie origin (domain and https pair) to a URL. 44 NET_EXPORT GURL CookieOriginToURL(const std::string& domain, bool is_https);
|