HomeSort by relevance Sort by last modified time
    Searched refs:domain (Results 101 - 125 of 531) sorted by null

1 2 3 45 6 7 8 91011>>

  /frameworks/ex/common/java/com/android/common/
Rfc822Validator.java 30 * and has the specified domain name added. It is meant for use with
45 * that constraint by accepting any kind of top level domain, not just
55 * Constructs a new validator that uses the specified domain name as
58 public Rfc822Validator(String domain) {
59 mDomain = domain;
87 * or the domain name part of the email address have been removed.
135 // append the domain of the account if it exists
147 String domain = removeIllegalCharacters(text.substring(index + 1)); local
148 boolean emptyDomain = domain.length() == 0;
150 tokens[i].setAddress(fix + "@" + (!emptyDomain ? domain : mDomain))
    [all...]
  /external/webkit/Source/WebKit/mac/Misc/
WebKitErrors.m 72 -(id)_webkit_initWithDomain:(NSString *)domain code:(int)code URL:(NSURL *)URL
78 descriptionsDict = [descriptions objectForKey:domain];
85 return [self initWithDomain:domain code:code userInfo:dict];
88 +(id)_webkit_errorWithDomain:(NSString *)domain code:(int)code URL:(NSURL *)URL
90 return [[[self alloc] _webkit_initWithDomain:domain code:code URL:URL] autorelease];
93 + (NSError *)_webKitErrorWithDomain:(NSString *)domain code:(int)code URL:(NSURL *)URL
96 return [self _webkit_errorWithDomain:domain code:code URL:URL];
143 + (void)_webkit_addErrorsWithCodesAndDescriptions:(NSDictionary *)dictionary inDomain:(NSString *)domain
148 [descriptions setObject:dictionary forKey:domain];
WebKitErrorsPrivate.h 55 + (NSError *)_webKitErrorWithDomain:(NSString *)domain code:(int)code URL:(NSURL *)URL;
  /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...]
  /packages/apps/Calendar/src/com/android/calendar/
GoogleCalendarUriIntentFilter.java 64 * by a space, followed by the calendar email address. The domain is sometimes
89 String domain = null; local
91 // Drop the special one character domain
96 domain = "gmail.com";
99 domain = "group.calendar.google.com";
102 domain = "holiday.calendar.google.com";
105 domain = "import.calendar.google.com";
108 domain = "group.v.calendar.google.com";
111 Log.wtf(TAG, "Unexpected one letter domain: "
115 domain = "%"
    [all...]
  /external/chromium/net/base/
sdch_manager.h 181 const std::string& domain,
196 static bool CanSet(const std::string& domain, const std::string& path,
250 // domain. Function assumes the existence of a global SdchManager instance.
251 void EnableSdchSupport(const std::string& domain);
255 // Briefly prevent further advertising of SDCH on this domain (if SDCH is
259 // Used when filter errors are found from a given domain, but it is plausible
264 // Used when SEVERE filter errors are found from a given domain, to prevent
265 // further use of SDCH on that domain.
272 // Unit test only, this function resets the blacklisting count for a domain.
273 static void ClearDomainBlacklisting(const std::string& domain);
    [all...]
dns_util.h 15 // DNSDomainFromDot - convert a domain string to DNS format. From DJB's
16 // public domain DNS library.
22 // DNSDomainToString coverts a domain in DNS format to a dotted string.
23 std::string DNSDomainToString(const std::string& domain);
  /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/webkit/Source/WebKit/win/
WebError.cpp 105 /* [in] */ BSTR domain,
109 m_error = ResourceError(String(domain, SysStringLen(domain)), code, String(url, SysStringLen(url)), String());
120 HRESULT STDMETHODCALLTYPE WebError::domain( function in class:WebError
126 *result = BString(m_error.domain()).release();
206 *result = m_error.domain() == String(WebKitErrorDomain)
WebError.h 50 /* [in] */ BSTR domain,
57 virtual HRESULT STDMETHODCALLTYPE domain(
  /external/chromium/chrome/browser/chromeos/login/
account_creation_view.cc 52 std::string domain; local
58 domain = UTF16ToASCII(form.fields[i].value);
65 delegate_->OnUserCreated(user_name + "@" + domain, "");
  /external/chromium/chrome/browser/policy/
enterprise_install_attributes.cc 82 std::string domain;
85 domain = registration_user_.substr(pos + 1);
87 return domain;
  /external/webkit/Source/WebKit2/Shared/mac/
WebCoreArgumentCodersMac.mm 123 String domain = [nsError domain];
124 encoder->encode(domain);
158 String domain;
159 if (!decoder->decode(domain))
188 NSError *nsError = [[NSError alloc] initWithDomain:nsString(domain) code:code userInfo:userInfo];
  /external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/auth/
SubjectDomainCombinerTest.java 102 ProtectionDomain domain = new ProtectionDomain(source, permissions, local
105 pd = combiner.combine(new ProtectionDomain[] { domain }, null);
116 pd = combiner.combine(null, new ProtectionDomain[] { domain });
117 assertSame("Inherited domain", domain, pd[0]);
  /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/webkit/Source/WebKit/efl/ewk/
ewk_cookies.h 46 /// the "domain" attribute, or else the hostname that the cookie came from
47 char *domain; member in struct:_Ewk_Cookie
  /frameworks/base/packages/SharedStorageBackup/src/com/android/sharedstoragebackup/
SharedStorageAgent.java 55 String domain = FullBackup.SHARED_PREFIX + i; local
56 fullBackupFileTree(null, domain, v.getPath(), externalFilesDirFilter, output);
66 int type, String domain, String relpath, long mode, long mtime)
68 if (DEBUG) Slog.d(TAG, "Shared restore: [ " + domain + " : " + relpath + "]");
  /system/netd/
MDnsSdListener.h 34 const char *domain, void *inContext);
114 const char *domain, const int requestNumber,
118 const char *serviceName, const char *serviceType, const char *domain,
123 const char *domain);
  /frameworks/wilhelm/src/itf/
IStreamInformation.c 53 XAuint32 *domain) /* [out] */
57 if (NULL == domain) {
63 *domain = XA_DOMAINTYPE_UNKNOWN;
68 *domain = XA_DOMAINTYPE_UNKNOWN;
78 *domain = thiz->mStreamInfoTable.itemAt(streamIndex).domain;
117 switch (streamInfo.domain) {
141 "unknown domain %u", streamIndex, streamInfo.domain);
304 contInf.domain = XA_DOMAINTYPE_CONTAINER
    [all...]
  /external/webkit/LayoutTests/fast/dom/HTMLAnchorElement/script-tests/
set-href-attribute-host.js 14 a.host = "www.other?domain.com:8080";
15 shouldBe("a.href", "'https://www.other/?domain.com:8080/path/?key=value'");
82 a.href = "https:/\rww.my@domain.com:8080/path/";
83 a.host = "www.other!domain.com:15";
84 shouldBe("a.href", "'https://www.other!domain.com:15/ww.my@domain.com:8080/path/'");
91 a.href = "https://domain.com:8080/path/";
93 shouldBe("a.href", "'https://domain.com:8080/path/'");
101 a.href = "https://rwwmy@domain.com:8080/pa..th/";
102 a.host = "www.other!domain.com:25"
    [all...]
  /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);
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
EmptyContiguousSet.java 31 EmptyContiguousSet(DiscreteDomain<C> domain) {
32 super(domain);
  /frameworks/base/core/java/android/app/
IBackupAgent.aidl 110 * @param domain Name of the file's semantic domain to which the 'path' argument is a
112 * @param path Relative path of the file within its semantic domain.
117 int type, String domain, String path, long mode, long mtime,
  /ndk/sources/host-tools/sed-4.2.1/lib/
gettext.h 29 /* You can set the DEFAULT_TEXT_DOMAIN macro to specify the domain used by
144 pgettext_aux (const char *domain,
148 const char *translation = dcgettext (domain, msg_ctxt_id, category);
163 npgettext_aux (const char *domain,
169 dcngettext (domain, msg_ctxt_id, msgid_plural, n, category);
203 dcpgettext_expr (const char *domain,
224 translation = dcgettext (domain, msg_ctxt_id, category);
248 dcnpgettext_expr (const char *domain,
270 translation = dcngettext (domain, msg_ctxt_id, msgid_plural, n, category);

Completed in 3041 milliseconds

1 2 3 45 6 7 8 91011>>