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

12 3 4 5 6 7 8 91011>>

  /prebuilts/ndk/6/platforms/android-3/arch-arm/usr/include/asm/
pgalloc.h 15 #include <asm/domain.h>
  /prebuilts/ndk/7/platforms/android-14/arch-arm/usr/include/asm/
pgalloc.h 15 #include <asm/domain.h>
  /prebuilts/ndk/7/platforms/android-3/arch-arm/usr/include/asm/
pgalloc.h 15 #include <asm/domain.h>
  /prebuilts/ndk/7/platforms/android-4/arch-arm/usr/include/asm/
pgalloc.h 15 #include <asm/domain.h>
  /prebuilts/ndk/7/platforms/android-5/arch-arm/usr/include/asm/
pgalloc.h 15 #include <asm/domain.h>
  /prebuilts/ndk/7/platforms/android-8/arch-arm/usr/include/asm/
pgalloc.h 15 #include <asm/domain.h>
  /prebuilts/ndk/7/platforms/android-9/arch-arm/usr/include/asm/
pgalloc.h 15 #include <asm/domain.h>
  /prebuilts/ndk/8/platforms/android-14/arch-arm/usr/include/asm/
pgalloc.h 15 #include <asm/domain.h>
  /prebuilts/ndk/8/platforms/android-3/arch-arm/usr/include/asm/
pgalloc.h 15 #include <asm/domain.h>
  /prebuilts/ndk/8/platforms/android-4/arch-arm/usr/include/asm/
pgalloc.h 15 #include <asm/domain.h>
  /prebuilts/ndk/8/platforms/android-5/arch-arm/usr/include/asm/
pgalloc.h 15 #include <asm/domain.h>
  /prebuilts/ndk/8/platforms/android-8/arch-arm/usr/include/asm/
pgalloc.h 15 #include <asm/domain.h>
  /prebuilts/ndk/8/platforms/android-9/arch-arm/usr/include/asm/
pgalloc.h 15 #include <asm/domain.h>
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/google/
SearchBaseUrlHelper.java 40 "https://www.google.com/searchdomaincheck?format=domain";
98 * @return the search domain. This is of the form "google.co.xx" or "google.com",
102 String domain = mSearchSettings.getSearchBaseDomain(); local
104 if (domain == null) {
106 Log.w(TAG, "Search base domain was null, last apply time=" +
113 // option is unchecked. In other cases, the previously set domain (or
116 // We have no choice in this case but to use the default search domain.
117 domain = getDefaultBaseDomain();
120 if (domain.startsWith(".")) {
121 if (DBG) Log.d(TAG, "Prepending www to " + domain);
138 String domain; local
    [all...]
  /external/apache-http/src/org/apache/http/impl/auth/
NTLMEngine.java 45 * Generates a Type1 message given the domain and workstation.
47 * @param domain Optional Windows domain name. Can be <code>null</code>.
54 String domain,
63 * @param domain Windows domain name
72 String domain,
  /external/sepolicy/
tee.te 4 type tee, domain;
  /external/skia/src/gpu/effects/
GrTextureDomainEffect.cpp 57 const char* domain; local
59 kVec4f_GrSLType, "TexDom", &domain);
63 coords, domain, domain);
74 builder->fFSCode.appendf("\toutside.xy = lessThan(%s, %s.xy);\n", coords, domain);
75 builder->fFSCode.appendf("\toutside.zw = greaterThan(%s, %s.zw);\n", coords, domain);
84 const GrRect& domain = effect.domain(); local
87 SkScalarToFloat(domain.left()),
88 SkScalarToFloat(domain.top())
194 GrRect domain; local
    [all...]
  /libcore/luni/src/main/java/java/security/
PolicySpi.java 42 * @param domain -
43 * the domain to check.
46 * domain.
47 * @return - true if the permission is granted to the domain.
50 protected abstract boolean engineImplies(ProtectionDomain domain,
98 * @param domain -
107 protected PermissionCollection engineGetPermissions(ProtectionDomain domain) {
  /external/chromium/net/base/
dns_util.cc 11 // Based on DJB's public domain code.
59 std::string DNSDomainToString(const std::string& domain) {
62 for (unsigned i = 0; i < domain.size() && domain[i]; i += domain[i] + 1) {
64 if (domain[i] < 0)
67 if (domain[i] > 63)
73 if (static_cast<unsigned>(domain[i]) + i + 1 > domain.size())
76 ret += domain.substr(i + 1, domain[i])
    [all...]
  /external/apache-http/src/org/apache/http/impl/cookie/
RFC2965DomainAttributeHandler.java 44 * <tt>"Domain"</tt> cookie attribute handler for RFC 2965 cookie spec.
57 * Parse cookie domain attribute.
59 public void parse(final SetCookie cookie, String domain)
64 if (domain == null) {
66 "Missing value for domain attribute");
68 if (domain.trim().length() == 0) {
70 "Blank value for domain attribute");
72 domain = domain.toLowerCase(Locale.ENGLISH);
73 if (!domain.startsWith("."))
    [all...]
  /external/chromium/net/tools/tld_cleanup/
tld_cleanup.cc 22 // * 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) {
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->size() - 1, 1)
174 std::string domain; local
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
RegularContiguousSet.java 37 RegularContiguousSet(Range<C> range, DiscreteDomain<C> domain) {
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.distance(first(), last())
    [all...]
  /external/webkit/Source/WebCore/platform/
Cookie.h 38 Cookie(const String& name, const String& value, const String& domain,
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/kernel-headers/original/asm-arm/
domain.h 2 * linux/include/asm-arm/domain.h
14 * Domain numbers
16 * DOMAIN_IO - domain 2 includes all IO only
17 * DOMAIN_USER - domain 1 includes all user memory only
18 * DOMAIN_KERNEL - domain 0 includes all kernel memory only
20 * The domain numbering depends on whether we support 36 physical
23 * be set for domain 0. We could just default to DOMAIN_IO as zero,
44 * Domain types
58 "mcr p15, 0, %0, c3, c0 @ set domain" \
65 unsigned int domain = thread->cpu_domain;
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
WebURLError.cpp 52 domain = error.domain();
64 return ResourceError(domain, reason,

Completed in 709 milliseconds

12 3 4 5 6 7 8 91011>>