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

1 23 4 5 6 7 8 91011>>

  /external/guava/guava/src/com/google/common/collect/
Cut.java 49 abstract Cut<C> withLowerBoundType(BoundType boundType, DiscreteDomain<C> domain);
50 abstract Cut<C> withUpperBoundType(BoundType boundType, DiscreteDomain<C> domain);
55 abstract C leastValueAbove(DiscreteDomain<C> domain);
56 abstract C greatestValueBelow(DiscreteDomain<C> domain);
62 Cut<C> canonical(DiscreteDomain<C> domain) {
132 DiscreteDomain<Comparable<?>> domain) {
136 DiscreteDomain<Comparable<?>> domain) {
146 DiscreteDomain<Comparable<?>> domain) {
147 return domain.minValue();
150 DiscreteDomain<Comparable<?>> domain) {
    [all...]
EmptyContiguousSet.java 33 EmptyContiguousSet(DiscreteDomain<C> domain) {
34 super(domain);
113 private final DiscreteDomain<C> domain; field in class:EmptyContiguousSet.SerializedForm
115 private SerializedForm(DiscreteDomain<C> domain) {
116 this.domain = domain;
120 return new EmptyContiguousSet<C>(domain);
129 return new SerializedForm<C>(domain);
RegularContiguousSet.java 39 RegularContiguousSet(Range<C> range, DiscreteDomain<C> domain) {
40 super(domain);
47 .asSet(domain);
52 return contains(target) ? (int) domain.distance(first(), (C) target) : -1;
59 toElement, BoundType.forBoolean(toInclusive))).asSet(domain);
65 .asSet(domain);
74 return equalsOrThrow(previous, last) ? null : domain.next(previous);
88 return range.lowerBound.leastValueAbove(domain);
92 return range.upperBound.greatestValueBelow(domain);
96 long distance = domain.distance(first(), last())
174 final DiscreteDomain<C> domain; field in class:SerializedForm
    [all...]
  /external/e2fsprogs/intl/
loadmsgcat.c 772 struct loaded_domain *domain,
784 domain->codeset_cntr =
787 domain->conv = (__gconv_t) -1;
790 domain->conv = (iconv_t) -1;
793 domain->conv_tab = NULL;
848 if (__gconv_open (outcharset, charset, &domain->conv,
851 domain->conv = (__gconv_t) -1;
868 domain->conv = iconv_open (outcharset, charset);
874 domain->conv = iconv_open (outcharset, charset);
889 _nl_free_domain_conv (struct loaded_domain *domain)
921 struct loaded_domain *domain; local
    [all...]
  /external/chromium/webkit/glue/
webcookie.cc 19 domain(c.Domain()),
28 const std::string& domain, const std::string& path,
32 domain(domain),
webcookie.h 20 const std::string& domain, const std::string& path, double expires,
30 // Cookie domain.
31 std::string domain; member in struct:webkit_glue::WebCookie
  /external/libsepol/tests/policies/test-deps/
module.conf 6 attribute domain;
12 type new_t, domain;
  /external/webkit/Source/WebCore/inspector/
InspectorDatabaseResource.cpp 43 PassRefPtr<InspectorDatabaseResource> InspectorDatabaseResource::create(PassRefPtr<Database> database, const String& domain, const String& name, const String& version)
45 return adoptRef(new InspectorDatabaseResource(database, domain, name, version));
48 InspectorDatabaseResource::InspectorDatabaseResource(PassRefPtr<Database> database, const String& domain, const String& name, const String& version)
51 , m_domain(domain)
61 jsonObject->setString("domain", m_domain);
InspectorDatabaseInstrumentation.h 41 inline void InspectorInstrumentation::didOpenDatabase(ScriptExecutionContext* context, PassRefPtr<Database> database, const String& domain, const String& name, const String& version)
45 didOpenDatabaseImpl(inspectorAgent, database, domain, name, version);
generate-inspector-idl 112 for domain in json_api:
113 domain_name = domain["domain"]
118 if "types" in domain:
119 for type in domain["types"]:
123 if "commands" in domain:
124 for command in domain["commands"]:
138 if "events" in domain:
139 for event in domain["events"]:
151 if domain["domain"] in macro_traits
    [all...]
  /packages/apps/Email/src/org/apache/james/mime4j/field/address/
NamedMailbox.java 33 public NamedMailbox(String name, String localPart, String domain) {
34 super(localPart, domain);
41 public NamedMailbox(String name, DomainList route, String localPart, String domain) {
42 super(route, localPart, domain);
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
intl.h 37 # define textdomain(domain) (domain)
39 # define bindtextdomain(domain, directory) (domain)
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
intl.h 37 # define textdomain(domain) (domain)
39 # define bindtextdomain(domain, directory) (domain)
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
intl.h 37 # define textdomain(domain) (domain)
39 # define bindtextdomain(domain, directory) (domain)
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
intl.h 37 # define textdomain(domain) (domain)
39 # define bindtextdomain(domain, directory) (domain)
  /external/wpa_supplicant_8/wpa_supplicant/examples/
udhcpd-p2p.conf 88 option domain atherosowl.com
103 #opt domain
  /external/webkit/Source/WebCore/platform/network/cf/
ResourceErrorCF.cpp 49 ResourceError::ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription, CFDataRef certificate)
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...]
  /device/sample/apps/SampleEmailPolicy/src/com/android/email/policy/
EmailPolicy.java 94 * The only argument (with the key FIND_PROVIDER) is a string containing the domain that the
96 * "MyEmailAddress@gmail.com", the domain will be "gmail.com".
98 * If no server information is provided for this domain, simply return Bundle.EMPTY.
99 * If server information is available for this domain, it can be returned in the following
146 * $domain - the value after the @ signin the email address the user entered
202 * Policy: For a known domain, configure to the servers for that domain
205 String domain = arguments.getString(FIND_PROVIDER); local
206 if (domain != null) {
207 domain = domain.toLowerCase()
    [all...]
  /external/chromium/net/base/
sdch_manager.cc 33 const std::string& domain,
40 domain_(domain),
54 terms "domain-match" and "pathmatch" are defined in RFC 2965 [6]. A
57 1. The server's effective host name domain-matches the Domain attribute of
81 bool SdchManager::Dictionary::CanSet(const std::string& domain,
90 1. The dictionary has no Domain attribute.
92 not domain-match the Domain attribute.
93 3. The Domain attribute is a top level domain
374 std::string domain, path; local
    [all...]
  /external/apache-http/src/org/apache/http/cookie/
SetCookie.java 72 * Sets the domain attribute.
74 * @param domain The value of the domain attribute
78 void setDomain(String domain);
  /external/chromium/chrome/common/
launchd_mac.h 22 enum Domain {
54 virtual bool RestartJob(Domain domain,
61 virtual CFMutableDictionaryRef CreatePlistFromFile(Domain domain,
66 virtual bool WritePlistToFile(Domain domain,
73 virtual bool DeletePlist(Domain domain, Type type, CFStringRef name);
  /external/webkit/Source/WebKit/chromium/public/
WebURLError.h 47 WebString domain; member in struct:WebKit::WebURLError
  /external/webkit/Source/WebKit2/Shared/gtk/
WebCoreArgumentCodersGtk.cpp 66 encoder->encode(CoreIPC::In(resourceError.domain(), resourceError.errorCode(), resourceError.failingURL(), resourceError.localizedDescription()));
71 String domain; local
75 if (!decoder->decode(CoreIPC::Out(domain, errorCode, failingURL, localizedDescription)))
77 resourceError = WebCore::ResourceError(domain, errorCode, failingURL, localizedDescription);
  /external/webkit/Source/WebKit2/Shared/qt/
WebCoreArgumentCodersQt.cpp 65 encoder->encode(CoreIPC::In(resourceError.domain(), resourceError.errorCode(), resourceError.failingURL(), resourceError.localizedDescription()));
70 String domain; local
74 if (!decoder->decode(CoreIPC::Out(domain, errorCode, failingURL, localizedDescription)))
76 resourceError = WebCore::ResourceError(domain, errorCode, failingURL, localizedDescription);
  /external/smack/src/org/jivesoftware/smack/util/
DNSUtil.java 75 * host resolved by a DNS lookup at the specified domain on the default port
80 * @param domain the domain.
82 * XMPP server can be reached at for the specified domain.
84 public static List<HostAddress> resolveXMPPDomain(String domain) {
85 return resolveDomain(domain, 'c');
96 * host resolved by a DNS lookup at the specified domain on the default port
101 * @param domain the domain.
103 * XMPP server can be reached at for the specified domain
    [all...]

Completed in 583 milliseconds

1 23 4 5 6 7 8 91011>>