Searched defs:domain (Results 26 - 50 of 151) sorted by relevance

1234567

/external/webkit/Source/WebCore/platform/
H A DCookie.h38 Cookie(const String& name, const String& value, const String& domain, argument
43 , domain(domain)
54 String domain; member in struct:WebCore::Cookie
65 return StringHash::hash(key.name) + StringHash::hash(key.domain) + StringHash::hash(key.path) + key.secure;
70 return a.name == b.name && a.domain == b.domain && a.path == b.path && a.secure == b.secure;
/external/webkit/Source/WebKit2/Shared/win/
H A DWebCoreArgumentCodersWin.cpp124 encoder->encode(CoreIPC::In(resourceError.domain(), resourceError.errorCode(), resourceError.failingURL(), resourceError.localizedDescription()));
133 String domain; local
137 if (!decoder->decode(CoreIPC::Out(domain, errorCode, failingURL, localizedDescription)))
148 resourceError = WebCore::ResourceError(domain, errorCode, failingURL, localizedDescription, WebCore::copyCertificateToData(certificateChain.first()).get());
153 resourceError = WebCore::ResourceError(domain, errorCode, failingURL, localizedDescription);
/external/chromium/chrome/browser/chromeos/login/
H A Daccount_creation_view.cc52 std::string domain; local
58 domain = UTF16ToASCII(form.fields[i].value);
65 delegate_->OnUserCreated(user_name + "@" + domain, "");
/external/chromium/chrome/browser/extensions/
H A Dextension_cookies_unittest.cc22 const char* domain; member in struct:__anon1957::DomainMatchCase
180 std::string domain; local
201 net::CookieMonster::CanonicalCookie cookie(GURL(), "", "", tests[i].domain,
/external/chromium/net/base/
H A Dtransport_security_state.h31 // A DomainState is the information that we persist about a given domain.
47 // None means there is no HSTS for this domain.
69 std::string domain; // the domain which matched member in struct:net::TransportSecurityState::DomainState
135 // are SHA256(DNSForm(domain)) where DNSForm converts from dotted form
/external/chromium/third_party/libjingle/source/talk/xmpp/
H A Djid.h37 //! A Jid consists of three parts. The node, the domain and the resource.
39 //! node@domain/resource
42 //! a domain. A bare jid is defined to not have a resource and a full jid
76 const std::string & domain() const { return !data_ ? STR_EMPTY : data_->domain_name_; } function in class:buzz::Jid
126 Data(const std::string & node, const std::string &domain, const std::string & resource) : argument
128 domain_name_(domain),
/external/guava/guava/src/com/google/common/collect/
H A DContiguousSet.java35 final DiscreteDomain<C> domain; field in class:ContiguousSet
37 ContiguousSet(DiscreteDomain<C> domain) { argument
39 this.domain = domain;
104 * is requested for a domain minimum or maximum. For example, if {@code set} was created from the
H A DCut.java49 abstract Cut<C> withLowerBoundType(BoundType boundType, DiscreteDomain<C> domain); argument
50 abstract Cut<C> withUpperBoundType(BoundType boundType, DiscreteDomain<C> domain); argument
55 abstract C leastValueAbove(DiscreteDomain<C> domain); argument
56 abstract C greatestValueBelow(DiscreteDomain<C> domain); argument
62 Cut<C> canonical(DiscreteDomain<C> domain) { argument
132 DiscreteDomain<Comparable<?>> domain) {
136 DiscreteDomain<Comparable<?>> domain) {
146 DiscreteDomain<Comparable<?>> domain) {
147 return domain.minValue();
150 DiscreteDomain<Comparable<?>> domain) {
131 withLowerBoundType(BoundType boundType, DiscreteDomain<Comparable<?>> domain) argument
135 withUpperBoundType(BoundType boundType, DiscreteDomain<Comparable<?>> domain) argument
145 leastValueAbove( DiscreteDomain<Comparable<?>> domain) argument
149 greatestValueBelow( DiscreteDomain<Comparable<?>> domain) argument
153 canonical( DiscreteDomain<Comparable<?>> domain) argument
197 withLowerBoundType(BoundType boundType, DiscreteDomain<Comparable<?>> domain) argument
201 withUpperBoundType(BoundType boundType, DiscreteDomain<Comparable<?>> domain) argument
211 leastValueAbove( DiscreteDomain<Comparable<?>> domain) argument
215 greatestValueBelow( DiscreteDomain<Comparable<?>> domain) argument
246 withLowerBoundType(BoundType boundType, DiscreteDomain<C> domain) argument
257 withUpperBoundType(BoundType boundType, DiscreteDomain<C> domain) argument
274 leastValueAbove(DiscreteDomain<C> domain) argument
277 greatestValueBelow(DiscreteDomain<C> domain) argument
304 withLowerBoundType(BoundType boundType, DiscreteDomain<C> domain) argument
315 withUpperBoundType(BoundType boundType, DiscreteDomain<C> domain) argument
332 leastValueAbove(DiscreteDomain<C> domain) argument
335 greatestValueBelow(DiscreteDomain<C> domain) argument
338 canonical(DiscreteDomain<C> domain) argument
[all...]
H A DEmptyContiguousSet.java33 EmptyContiguousSet(DiscreteDomain<C> domain) { argument
34 super(domain);
113 private final DiscreteDomain<C> domain; field in class:EmptyContiguousSet.SerializedForm
115 private SerializedForm(DiscreteDomain<C> domain) { argument
116 this.domain = domain;
120 return new EmptyContiguousSet<C>(domain);
129 return new SerializedForm<C>(domain);
H A DRange.java37 * (informally, "contiguous" or "unbroken") portion of a particular domain.
377 * given domain {@linkplain Range#contains contained} by this range.
392 * @throws IllegalArgumentException if neither this range nor the domain has a
397 public ContiguousSet<C> asSet(DiscreteDomain<C> domain) { argument
398 checkNotNull(domain);
403 Ranges.atLeast(domain.minValue()));
407 Ranges.atMost(domain.maxValue()));
416 lowerBound.leastValueAbove(domain),
417 upperBound.greatestValueBelow(domain)) > 0;
420 ? new EmptyContiguousSet<C>(domain)
449 canonical(DiscreteDomain<C> domain) argument
[all...]
/external/javassist/src/main/javassist/util/proxy/
H A DFactoryHelper.java128 * This method uses a default protection domain for the class
142 * @param domain if it is null, a default domain is used.
145 public static Class toClass(ClassFile cf, ClassLoader loader, ProtectionDomain domain) argument
152 if (domain == null) {
160 new Integer(b.length), domain };
/external/webkit/Source/WebCore/platform/network/
H A DResourceErrorBase.h44 const String& domain() const { lazyInit(); return m_domain; } function in class:WebCore::ResourceErrorBase
62 ResourceErrorBase(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription) argument
63 : m_domain(domain)
/external/webkit/Source/WebCore/platform/network/cf/
H A DResourceErrorCF.cpp49 ResourceError::ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription, CFDataRef certificate) argument
50 : ResourceErrorBase(domain, errorCode, failingURL, localizedDescription)
76 CFStringRef domain = CFErrorGetDomain(m_platformError.get());
77 if (domain == kCFErrorDomainMach || domain == kCFErrorDomainCocoa)
79 else if (domain == kCFErrorDomainCFNetwork)
81 else if (domain == kCFErrorDomainPOSIX)
83 else if (domain == kCFErrorDomainOSStatus)
85 else if (domain == kCFErrorDomainWinSock)
173 switch(error.domain) {
[all...]
H A DCookieJarCFNet.cpp200 String domain = cookieDomain(cookie).get(); local
209 rawCookies.uncheckedAppend(Cookie(name, value, domain, path, expires, httpOnly, secure, session));
249 RetainPtr<CFStringRef> domain = cookieDomain(cookie); local
250 hostnames.add(domain.get());
267 RetainPtr<CFStringRef> domain = cookieDomain(cookie); local
268 if (String(domain.get()) == hostname)
/external/chromium/net/tools/tld_cleanup/
H A Dtld_cleanup.cc22 // * Canonicalizes each rule's domain by converting it to a GURL and back.
52 // Writes the list of domain rules contained in the 'rules' set to the
103 NormalizeResult NormalizeRule(std::string* domain, Rule* rule) { argument
107 if (domain->at(0) == '.')
108 domain->erase(0, 1);
109 if (domain->empty()) {
113 if (domain->at(domain->size() - 1) == '.')
114 domain->erase(domain
174 std::string domain; local
[all...]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DEmptyContiguousSet.java31 EmptyContiguousSet(DiscreteDomain<C> domain) { argument
32 super(domain);
H A DRegularContiguousSet.java37 RegularContiguousSet(Range<C> range, DiscreteDomain<C> domain) { argument
38 super(domain);
45 .asSet(domain);
50 return contains(target) ? (int) domain.distance(first(), (C) target) : -1;
57 toElement, BoundType.forBoolean(toInclusive))).asSet(domain);
63 .asSet(domain);
72 return equalsOrThrow(previous, last) ? null : domain.next(previous);
86 return range.lowerBound.leastValueAbove(domain);
90 return range.upperBound.greatestValueBelow(domain);
94 long distance = domain
[all...]
/external/guava/guava-tests/test/com/google/common/net/
H A DInternetDomainNameTest.java50 * A domain part which is valid under lenient validation, but invalid under
216 final InternetDomainName domain = InternetDomainName.from(name);
217 assertTrue(name, domain.isPublicSuffix());
218 assertTrue(name, domain.hasPublicSuffix());
219 assertFalse(name, domain.isUnderPublicSuffix());
220 assertFalse(name, domain.isTopPrivateDomain());
221 assertEquals(domain, domain.publicSuffix());
225 final InternetDomainName domain = InternetDomainName.from(name);
226 assertFalse(name, domain
391 idn(String domain) argument
[all...]
/external/javassist/src/main/javassist/
H A DLoader.java140 private ProtectionDomain domain; field in class:Loader
188 domain = null;
208 * Sets the protection domain for the classes handled by this class
209 * loader. Without registering an appropriate protection domain,
214 domain = d;
378 if (domain == null)
381 return defineClass(name, classfile, 0, classfile.length, domain);
/external/javassist/src/main/javassist/scopedpool/
H A DScopedClassPool.java291 public Class toClass(CtClass ct, ClassLoader loader, ProtectionDomain domain) argument
306 return super.toClass(ct, getClassLoader0(), domain);
/external/libvorbis/doc/
H A D04-codec.tex102 codebook configurations, time-domain transform configurations
120 \paragraph{Time domain transforms}
570 domain PCM audio via an inverse Modified Discrete Cosine Transform
/external/mdnsresponder/mDNSPosix/
H A DClient.c46 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, gServiceDomai
[all...]
/external/mdnsresponder/mDNSShared/
H A DPlatformCommon.c106 mDNSexport void ReadDDNSSettingsFromConfFile(mDNS *const m, const char *const filename, domainname *const hostname, domainname *const domain, mDNSBool *DomainDiscoveryDisabled) argument
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, bu
[all...]
/external/qemu/
H A Dosdep.c149 int qemu_socket(int domain, int type, int protocol) argument
154 ret = socket(domain, type | SOCK_CLOEXEC, protocol);
159 ret = socket(domain, type, protocol);
/external/webkit/Source/WebCore/page/
H A DSecurityOrigin.h53 // Set the domain property of this security origin to newDomain. This
55 // domain. The caller is responsible for validating newDomain.
64 String domain() const { return m_domain; } function in class:WebCore::SecurityOrigin
151 // Marks a file:// origin as being in a domain defined by its path.
157 // the value of the SecurityOrigin's domain property.
177 // This method checks for equality, ignoring the value of document.domain

Completed in 767 milliseconds

1234567