domain 3913 Source/core/dom/Document.cpp return securityOrigin()->domain(); domain 3937 Source/core/dom/Document.cpp exceptionState.throwSecurityError("'" + newDomain + "' is not a suffix of '" + domain() + "'."); domain 754 Source/core/dom/Document.h String domain() const; domain 1733 Source/core/frame/DOMWindow.cpp return message + "The frame requesting access set \"document.domain\" to \"" + activeOrigin->domain() + "\", the frame being accessed set it to \"" + targetOrigin->domain() + "\". Both must set \"document.domain\" to the same value to allow access."; domain 1735 Source/core/frame/DOMWindow.cpp return message + "The frame requesting access set \"document.domain\" to \"" + activeOrigin->domain() + "\", but the frame being accessed did not. Both must set \"document.domain\" to the same value to allow access."; domain 1737 Source/core/frame/DOMWindow.cpp return message + "The frame being accessed set \"document.domain\" to \"" + targetOrigin->domain() + "\", but the frame requesting access did not. Both must set \"document.domain\" to the same value to allow access."; domain 114 Source/core/html/forms/EmailInputType.cpp static bool checkValidDotUsage(const String& domain) domain 116 Source/core/html/forms/EmailInputType.cpp if (domain.isEmpty()) domain 118 Source/core/html/forms/EmailInputType.cpp if (domain[0] == '.' || domain[domain.length() - 1] == '.') domain 120 Source/core/html/forms/EmailInputType.cpp return domain.find("..") == kNotFound; domain 204 Source/core/html/forms/EmailInputType.cpp String domain = invalidAddress.substring(atIndex + 1); domain 207 Source/core/html/forms/EmailInputType.cpp if (domain.isEmpty()) domain 214 Source/core/html/forms/EmailInputType.cpp invalidCharIndex = domain.find(isInvalidDomainCharacter); domain 216 Source/core/html/forms/EmailInputType.cpp unsigned charLength = U_IS_LEAD(domain[invalidCharIndex]) ? 2 : 1; domain 217 Source/core/html/forms/EmailInputType.cpp return locale().queryString(WebLocalizedString::ValidationTypeMismatchForEmailInvalidDomain, atSign, domain.substring(invalidCharIndex, charLength)); domain 219 Source/core/html/forms/EmailInputType.cpp if (!checkValidDotUsage(domain)) { domain 493 Source/core/inspector/InspectorPageAgent.cpp .setDomain(cookie.domain) domain 95 Source/core/loader/CookieJar.cpp cookies.append(Cookie(webCookie.name, webCookie.value, webCookie.domain, webCookie.path, domain 1159 Source/core/loader/FrameLoader.cpp if ((error.errorCode() != c.errorCode() || error.domain() != c.domain()) && m_frame->ownerElement()) domain 1219 Source/core/xml/XMLHttpRequest.cpp if (error.domain() == errorDomainBlinkInternal) domain 60 Source/modules/webdatabase/DatabaseClient.cpp void DatabaseClient::didOpenDatabase(PassRefPtrWillBeRawPtr<Database> database, const String& domain, const String& name, const String& version) domain 63 Source/modules/webdatabase/DatabaseClient.cpp m_inspectorAgent->didOpenDatabase(database, domain, name, version); domain 54 Source/modules/webdatabase/DatabaseClient.h void didOpenDatabase(PassRefPtrWillBeRawPtr<Database>, const String& domain, const String& name, const String& version); domain 194 Source/modules/webdatabase/InspectorDatabaseAgent.cpp void InspectorDatabaseAgent::didOpenDatabase(PassRefPtrWillBeRawPtr<Database> database, const String& domain, const String& name, const String& version) domain 201 Source/modules/webdatabase/InspectorDatabaseAgent.cpp RefPtrWillBeRawPtr<InspectorDatabaseResource> resource = InspectorDatabaseResource::create(database, domain, name, version); domain 70 Source/modules/webdatabase/InspectorDatabaseAgent.h void didOpenDatabase(PassRefPtrWillBeRawPtr<Database>, const String& domain, const String& name, const String& version); domain 41 Source/modules/webdatabase/InspectorDatabaseResource.cpp PassRefPtrWillBeRawPtr<InspectorDatabaseResource> InspectorDatabaseResource::create(PassRefPtrWillBeRawPtr<Database> database, const String& domain, const String& name, const String& version) domain 43 Source/modules/webdatabase/InspectorDatabaseResource.cpp return adoptRefWillBeNoop(new InspectorDatabaseResource(database, domain, name, version)); domain 46 Source/modules/webdatabase/InspectorDatabaseResource.cpp InspectorDatabaseResource::InspectorDatabaseResource(PassRefPtrWillBeRawPtr<Database> database, const String& domain, const String& name, const String& version) domain 49 Source/modules/webdatabase/InspectorDatabaseResource.cpp , m_domain(domain) domain 47 Source/modules/webdatabase/InspectorDatabaseResource.h static PassRefPtrWillBeRawPtr<InspectorDatabaseResource> create(PassRefPtrWillBeRawPtr<Database>, const String& domain, const String& name, const String& version); domain 56 Source/modules/webdatabase/InspectorDatabaseResource.h InspectorDatabaseResource(PassRefPtrWillBeRawPtr<Database>, const String& domain, const String& name, const String& version); domain 40 Source/platform/Cookie.h Cookie(const String& name, const String& value, const String& domain, domain 45 Source/platform/Cookie.h , domain(domain) domain 56 Source/platform/Cookie.h String domain; domain 67 Source/platform/Cookie.h return StringHash::hash(key.name) + StringHash::hash(key.domain) + StringHash::hash(key.path) + key.secure; domain 72 Source/platform/Cookie.h return a.name == b.name && a.domain == b.domain && a.path == b.path && a.secure == b.secure; domain 52 Source/platform/exported/WebURLError.cpp domain = error.domain(); domain 67 Source/platform/exported/WebURLError.cpp ResourceError resourceError = ResourceError(domain, reason, String::fromUTF8(spec.data(), spec.length()), localizedDescription); domain 66 Source/platform/network/ResourceError.cpp if (a.domain() != b.domain()) domain 50 Source/platform/network/ResourceError.h ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription) domain 51 Source/platform/network/ResourceError.h : m_domain(domain) domain 67 Source/platform/network/ResourceError.h const String& domain() const { return m_domain; } domain 82 Source/platform/weborigin/SecurityOrigin.h String domain() const { return m_domain; } domain 67 Source/platform/weborigin/SecurityOriginHash.h if (a->domainWasSetInDOM() && a->domain() != b->domain()) domain 116 Source/web/ContextFeaturesClientImpl.cpp String currentDomain = document->securityOrigin()->domain(); domain 118 Source/web/tests/MHTMLTest.cpp EXPECT_STRNE("localhost", origin->domain().ascii().data()); domain 98 Source/web/tests/PageSerializerTest.cpp error.domain = "PageSerializerTest"; domain 4103 Source/web/tests/WebFrameTest.cpp error.domain = "WebFrameTest"; domain 50 public/platform/WebCookie.h WebCookie(const WebString& name, const WebString& value, const WebString& domain, domain 54 public/platform/WebCookie.h , domain(domain) domain 65 public/platform/WebCookie.h WebString domain; domain 47 public/platform/WebURLError.h WebString domain;