/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/ |
Database.js | 33 * @param {string} domain 37 WebInspector.Database = function(model, id, domain, name, version) 41 this._domain = domain; 76 get domain() 81 set domain(x) 206 payload.domain,
|
/external/chromium_org/content/browser/devtools/ |
devtools_browser_target.cc | 29 const std::string& domain, 34 DCHECK(handlers_.find(domain) == handlers_.end()); 35 handlers_[domain] = handler; 37 handle_on_ui_thread_.insert(domain); 59 DomainHandlerMap::iterator it = handlers_.find(command->domain()); 65 std::string domain = command->domain(); local 66 DomainMap::iterator jt = used_domains.find(domain); 68 used_domains[domain] = this; 72 domain.c_str()) [all...] |
/external/chromium_org/chrome/browser/predictors/ |
logged_in_predictor_table.cc | 41 string LoggedInPredictorTable::GetKeyFromDomain(const std::string& domain) { 44 domain, 47 effective_domain = domain; 61 base::StringPrintf("INSERT OR IGNORE INTO %s (domain, time) VALUES (?,?)", 76 base::StringPrintf("DELETE FROM %s WHERE domain=?", kTableName).c_str())); 83 void LoggedInPredictorTable::DeleteDomain(const std::string& domain) { 84 DeleteDomainFromURL(GURL("http://" + domain)); 95 base::StringPrintf("SELECT count(*) FROM %s WHERE domain=?", 134 string domain = statement.ColumnString(0); local 136 (*state_map)[domain] = value [all...] |
/external/chromium_org/net/cert/ |
x509_util_openssl_unittest.cc | 43 // Verify the attributes of a domain-bound certificate. 44 // |domain| is the bound domain name. 46 void VerifyChannelID(const std::string& domain, 67 // Which means <tag> <length> <domain>, with: 69 // <length> is the domain length, a single byte for short forms. 70 // <domain> are the domain characters. 77 // Check that the domain size is small enough for short form. 78 ASSERT_LE(domain.size(), 127U) << "Domain is too long!" 117 std::string domain = "weborigin.com"; local [all...] |
x509_util_nss_unittest.cc | 79 void VerifyChannelID(const std::string& domain, 87 (unsigned char*)domain.data(), 88 static_cast<unsigned int>(domain.size()) 144 // This test creates a domain-bound cert and an EC private key and 148 std::string domain = "weborigin.com"; local 154 domain, 1, 160 VerifyChannelID(domain, der_cert);
|
/external/chromium_org/net/base/ |
sdch_manager.cc | 69 const std::string& domain, 76 domain_(domain), 88 terms "domain-match" and "pathmatch" are defined in RFC 2965 [6]. A 91 1. The server's effective host name domain-matches the Domain attribute of 120 bool SdchManager::Dictionary::CanSet(const std::string& domain, 127 1. The dictionary has no Domain attribute. 129 not domain-match the Domain attribute. 130 3. The Domain attribute is a top level domain 518 std::string domain, path; local [all...] |
/external/chromium_org/content/public/browser/ |
devtools_protocol_constants_generator.py | 167 for domain in domains: 169 domain_namespace_name = Capitalize(domain["domain"]) 170 if "commands" in domain: 171 for command in domain["commands"]: 173 domain_value[command["name"]] = CreateNamespace(domain["domain"], 177 if "events" in domain: 178 for event in domain["events"]: 180 domain_value[event["name"]] = CreateNamespace(domain["domain"] [all...] |
/external/dhcpcd/dhcpcd-hooks/ |
20-resolv.conf | 27 domain=$(cd "$resolv_conf_dir"; \ 28 key_get_value "domain " ${interfaces}) 31 set -- ${domain} 32 unset domain 36 domain="domain $1\n" 58 printf "$domain$search$servers" >> "$cf" 84 conf="${conf}domain $new_domain_name\n" 85 # Support RFC violating search in domain
|
/external/mdnsresponder/mDNSShared/ |
PlatformCommon.c | 106 mDNSexport void ReadDDNSSettingsFromConfFile(mDNS *const m, const char *const filename, domainname *const hostname, domainname *const domain, mDNSBool *DomainDiscoveryDisabled) 113 if (domain) domain->c[0] = 0; 120 if (domain && GetConfigOption(buf, "zone", f) && !MakeDomainNameFromDNSNameString(domain, buf)) goto badf; 132 if (domain && domain->c[0] && buf[0]) 135 // for now we assume keyname = service reg domain and we use same key for service and hostname registration 136 err = mDNS_SetSecretForDomain(m, info, domain, domain, buf, NULL, 0, NULL) [all...] |
/external/chromium_org/google_apis/gaia/ |
gaia_auth_util_unittest.cc | 63 const char domain[] = "example.com"; local 64 EXPECT_EQ(domain, CanonicalizeDomain("example.com")); 65 EXPECT_EQ(domain, CanonicalizeDomain("EXAMPLE.cOm")); 69 const char domain[] = "example.com"; local 70 EXPECT_EQ(domain, ExtractDomainName("who@example.com")); 71 EXPECT_EQ(domain, ExtractDomainName("who@EXAMPLE.cOm"));
|
gaia_auth_util.h | 20 // Returns the canonical form of the given domain. 21 std::string CanonicalizeDomain(const std::string& domain); 23 // Sanitize emails. Currently, it only ensures all emails have a domain by 24 // adding gmail.com if no domain is present. 31 // Extract the domain part from the canonical form of the given email.
|
/external/mdnsresponder/mDNSPosix/ |
Client.c | 46 domainname domain; local 57 DeconstructServiceName(&answer->rdata->u.name, &name, &type, &domain); 61 ConvertDomainNameToCString(&domain, domainC); 69 fprintf(stderr, "*** %s name = '%s', type = '%s', domain = '%s'\n", state, nameC, typeC, domainC); 105 "Usage: %s [-v level] [-t type] [-d domain]\n", 112 fprintf(stderr, " -d uses 'domain' as the domain to browse (default is '%s')\n", kDefaultDomain); 176 // mDNS query, looking for all AFP servers in the local domain. 182 domainname domain; local 197 MakeDomainNameFromDNSNameString(&domain, gServiceDomain) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/html/forms/ |
EmailInputType.cpp | 49 "[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?" // domain part 52 // RFC5321 says the maximum total length of a domain name is 255 octets. 125 static bool checkValidDotUsage(const String& domain) 127 if (domain.isEmpty()) 129 if (domain[0] == '.' || domain[domain.length() - 1] == '.') 131 return domain.find("..") == kNotFound; 215 String domain = invalidAddress.substring(atIndex + 1); local 218 if (domain.isEmpty() [all...] |
/cts/apps/CameraITS/tests/scene1/ |
test_param_color_correction.py | 85 domain = range(len(transforms)) 86 pylab.plot(domain, r_means, 'r') 87 pylab.plot(domain, g_means, 'g') 88 pylab.plot(domain, b_means, 'b')
|
/external/chromium_org/chrome/browser/chromeos/policy/ |
login_profile_policy_provider.h | 35 virtual void OnPolicyServiceInitialized(PolicyDomain domain) OVERRIDE;
|
/external/chromium_org/components/domain_reliability/ |
beacon.h | 19 // The per-request data that is uploaded to the Domain Reliability collector. 31 // The domain that the beacon is reporting on, if included. 32 std::string domain; member in struct:domain_reliability::DomainReliabilityBeacon
|
/external/chromium_org/components/policy/core/common/ |
configuration_policy_provider.h | 44 // the |schema_registry| whose domain is supported by this provider. 58 // policy |domain|. This is used to detect whether initialization is done in 60 virtual bool IsInitializationComplete(PolicyDomain domain) const;
|
forwarding_policy_provider.h | 47 virtual bool IsInitializationComplete(PolicyDomain domain) const OVERRIDE;
|
mock_policy_service.h | 33 MOCK_CONST_METHOD1(IsInitializationComplete, bool(PolicyDomain domain));
|
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/ |
DatabaseClient.h | 53 void didOpenDatabase(PassRefPtrWillBeRawPtr<Database>, const String& domain, const String& name, const String& version);
|
/external/chromium_org/third_party/libxml/src/ |
libxml.h | 65 void __xmlIOErr(int domain, int code, const char *extra);
|
/external/guava/guava/src/com/google/common/collect/ |
ContiguousSet.java | 35 final DiscreteDomain<C> domain; field in class:ContiguousSet 37 ContiguousSet(DiscreteDomain<C> domain) { 39 this.domain = domain; 104 * is requested for a domain minimum or maximum. For example, if {@code set} was created from the
|
/external/libexif/libexif/ |
exif-log.c | 135 exif_log (ExifLog *log, ExifLogCode code, const char *domain, 141 exif_logv (log, code, domain, format, args); 146 exif_logv (ExifLog *log, ExifLogCode code, const char *domain, 151 log->func (log, code, domain, format, args, log->data);
|
/external/chromium_org/third_party/skia/src/gpu/effects/ |
GrBicubicEffect.cpp | 39 const GrTextureDomain& domain = effect.cast<GrBicubicEffect>().domain(); local 40 b->add32(GrTextureDomain::GLDomain::DomainKey(domain)); 64 const GrTextureDomain& domain = effect.cast<GrBicubicEffect>().domain(); local 109 fDomain.sampleTexture(fsBuilder, domain, sampleVar.c_str(), coord, samplers[0]); 127 fDomain.setData(pdman, bicubicEffect.domain(), texture.origin()); 151 const SkRect& domain) 154 , fDomain(domain, GrTextureDomain::kClamp_Mode) {
|
/external/bison/lib/ |
gettext.h | 27 /* You can set the DEFAULT_TEXT_DOMAIN macro to specify the domain used by 148 pgettext_aux (const char *domain, 152 const char *translation = dcgettext (domain, msg_ctxt_id, category); 167 npgettext_aux (const char *domain, 173 dcngettext (domain, msg_ctxt_id, msgid_plural, n, category); 210 dcpgettext_expr (const char *domain, 231 translation = dcgettext (domain, msg_ctxt_id, category); 255 dcnpgettext_expr (const char *domain, 277 translation = dcngettext (domain, msg_ctxt_id, msgid_plural, n, category);
|