Searched refs:newDomain (Results 1 - 13 of 13) sorted by relevance

/macosx-10.9.5/WebCore-7537.78.1/page/
H A DSecurityOrigin.h77 // Set the domain property of this security origin to newDomain. This
78 // function does not check whether newDomain is a suffix of the current
79 // domain. The caller is responsible for validating newDomain.
80 void setDomainFromDOM(const String& newDomain);
H A DSecurityOrigin.cpp213 void SecurityOrigin::setDomainFromDOM(const String& newDomain) argument
216 m_domain = newDomain.lower();
/macosx-10.9.5/WebCore-7537.78.1/platform/blackberry/
H A DCookieMap.cpp127 void CookieMap::addSubdomainMap(const String& subdomain, CookieMap* newDomain) argument
130 m_subdomains.add(subdomain, newDomain);
/macosx-10.9.5/CF-855.17/
H A DCFPreferences.c698 CFPreferencesDomainRef newDomain; local
700 newDomain = (CFPreferencesDomainRef)_CFRuntimeCreateInstance(alloc, __kCFPreferencesDomainTypeID, sizeof(struct __CFPreferencesDomain) - sizeof(CFRuntimeBase), NULL);
701 if (newDomain) {
702 newDomain->_callBacks = callBacks;
704 newDomain->_context = context;
705 newDomain->_domain = callBacks->createDomain(alloc, context);
707 return newDomain;
/macosx-10.9.5/Security-55471.14.18/include/security_keychain/
H A DStorageManager.h145 void domain(SecPreferencesDomain newDomain);
/macosx-10.9.5/Security-55471.14.18/libsecurity_keychain/Security/
H A DStorageManager.h145 void domain(SecPreferencesDomain newDomain);
/macosx-10.9.5/Security-55471.14.18/libsecurity_keychain/lib/
H A DStorageManager.h145 void domain(SecPreferencesDomain newDomain);
/macosx-10.9.5/ppp-727.90.1/Controller/
H A Dnetwork_detection.c539 CFStringRef newDomain = NULL; local
544 newDomain = CFStringCreateWithSubstring(kCFAllocatorDefault, domain, range);
545 if (newDomain) {
546 CFArraySetValueAtIndex(mutableDomains, domainIndex, newDomain);
547 CFRelease(newDomain);
/macosx-10.9.5/configd-596.15/scutil.tproj/
H A Dnet_protocol.c415 CFMutableStringRef newDomain; local
417 newDomain = CFStringCreateMutableCopy(NULL, 0, domain);
418 CFStringTrimWhitespace(newDomain);
419 CFStringTrim(newDomain, CFSTR("."));
420 if (CFStringGetLength(newDomain) == 0) {
421 CFRelease(newDomain);
422 newDomain = NULL;
425 return newDomain;
H A Dnet_interface.c1481 CFMutableStringRef newDomain; local
1483 newDomain = CFStringCreateMutableCopy(NULL, 0, domain);
1484 CFStringTrimWhitespace(newDomain);
1485 CFStringTrim(newDomain, CFSTR("."));
1486 if (CFStringGetLength(newDomain) == 0) {
1487 CFRelease(newDomain);
1488 newDomain = NULL;
1491 return newDomain;
/macosx-10.9.5/WebCore-7537.78.1/dom/
H A DDocument.cpp3783 void Document::setDomain(const String& newDomain, ExceptionCode& ec) argument
3801 if (equalIgnoringCase(domain(), newDomain)) {
3802 securityOrigin()->setDomainFromDOM(newDomain);
3807 int newLength = newDomain.length();
3808 // e.g. newDomain = webkit.org (10) and domain() = www.webkit.org (14)
3822 // and we check that it's the same thing as newDomain
3824 if (test != newDomain) {
3829 securityOrigin()->setDomainFromDOM(newDomain);
H A DDocument.h812 void setDomain(const String& newDomain, ExceptionCode&);
/macosx-10.9.5/vim-53/runtime/syntax/
H A Dmupad.vim111 syn keyword mupadFunction newDomain _next nextprime nops

Completed in 199 milliseconds