/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9/ |
bitops-bits-in-byte.js | 1 // Copyright (c) 2004 by Arthur Langereis (arthur_ext at domain xfinitegames, tld com)
|
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/ |
bitops-bits-in-byte.js | 1 // Copyright (c) 2004 by Arthur Langereis (arthur_ext at domain xfinitegames, tld com)
|
/frameworks/ex/common/tools/ |
make-iana-tld-pattern.py | 9 * http://data.iana.org/TLD/tlds-alpha-by-domain.txt 20 * http://data.iana.org/TLD/tlds-alpha-by-domain.txt 131 f = urlopen('http://data.iana.org/TLD/tlds-alpha-by-domain.txt') 137 for domain in domains: 138 domain = domain.lower() variable 140 if len(domain) > 0: 141 getBucket(buckets, domain[0]).add(domain.strip()) 143 if domain.startswith('xn--') [all...] |
/libcore/luni/src/main/java/java/security/ |
Policy.java | 51 public PermissionCollection getPermissions(ProtectionDomain domain) { return null; } 53 public boolean implies(ProtectionDomain domain, Permission permission) { return true; }
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
gettext.py | 421 def find(domain, localedir=None, languages=None, all=0): 448 mofile = os.path.join(localedir, lang, 'LC_MESSAGES', '%s.mo' % domain) 461 def translation(domain, localedir=None, languages=None, 465 mofiles = find(domain, localedir, languages, all=1) 469 raise IOError(ENOENT, 'No translation file found for domain', domain) 492 def install(domain, localedir=None, unicode=False, codeset=None, names=None): 493 t = translation(domain, localedir, fallback=True, codeset=codeset) 502 # current global domain, `messages' used for compatibility w/ GNU gettext 506 def textdomain(domain=None) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
gettext.py | 421 def find(domain, localedir=None, languages=None, all=0): 448 mofile = os.path.join(localedir, lang, 'LC_MESSAGES', '%s.mo' % domain) 461 def translation(domain, localedir=None, languages=None, 465 mofiles = find(domain, localedir, languages, all=1) 469 raise IOError(ENOENT, 'No translation file found for domain', domain) 492 def install(domain, localedir=None, unicode=False, codeset=None, names=None): 493 t = translation(domain, localedir, fallback=True, codeset=codeset) 502 # current global domain, `messages' used for compatibility w/ GNU gettext 506 def textdomain(domain=None) [all...] |
/frameworks/base/core/java/android/app/backup/ |
BackupAgent.java | 359 final String domain; local 362 domain = FullBackup.DATABASE_TREE_TOKEN; 365 domain = FullBackup.SHAREDPREFS_TREE_TOKEN; 368 domain = FullBackup.DATA_TREE_TOKEN; 371 domain = FullBackup.ROOT_TREE_TOKEN; 374 domain = FullBackup.MANAGED_EXTERNAL_TREE_TOKEN; 382 Log.i(TAG, "backupFile() of " + filePath + " => domain=" + domain 384 FullBackup.backupToTar(getPackageName(), domain, null, rootpath, filePath, local 396 protected final void fullBackupFileTree(String packageName, String domain, String rootPath [all...] |
/external/chromium_org/chrome/browser/browsing_data/ |
mock_browsing_data_flash_lso_helper.h | 23 // Adds a domain sample. 24 void AddFlashLSODomain(const std::string& domain); 29 // Returns true if the domain list is empty.
|
/external/chromium_org/chrome/browser/chromeos/policy/ |
login_profile_policy_provider.h | 35 virtual void OnPolicyServiceInitialized(PolicyDomain domain) OVERRIDE;
|
/external/chromium_org/chrome/browser/policy/cloud/ |
component_cloud_policy_service.h | 66 // Returns true if |domain| is supported by the service. 67 static bool SupportsDomain(PolicyDomain domain); 87 // |descriptor| lists the complete set of components to track for its domain. 90 // domains that are supported, i.e. SupportsDomain(domain) is true. 115 bool UpdateClientNamespaces(PolicyDomain domain, 118 void AddNamespacesToFetch(PolicyDomain domain, const StringSet& set); 119 void RemoveNamespacesToFetch(PolicyDomain domain, const StringSet& set); 135 // The currently registered components for each policy domain. If a policy 136 // domain doesn't have an entry in this map then it hasn't registered its 137 // component yet. A domain in this map with an empty set of components mean [all...] |
component_cloud_policy_store.h | 48 static bool SupportsDomain(PolicyDomain domain); 50 // Returns true if |domain| can be managed by this store; in that case, the 51 // dm_protocol policy type that corresponds to |domain| is stored in 53 static bool GetPolicyType(PolicyDomain domain, std::string* policy_type); 55 // Returns true if |policy_type| corresponds to a policy domain that can be 56 // managed by this store; in that case, the domain constants is assigned to 57 // |domain|. Otherwise returns false. 59 PolicyDomain* domain); 94 // Deletes the storage of all components of |domain| that are not in 96 void Purge(PolicyDomain domain, [all...] |
/external/chromium_org/content/common/ |
cookie_data.cc | 21 domain(c.Domain()),
|
/external/chromium_org/google_apis/gaia/ |
gaia_auth_util.h | 21 // Returns the canonical form of the given domain. 22 std::string CanonicalizeDomain(const std::string& domain); 24 // Sanitize emails. Currently, it only ensures all emails have a domain by 25 // adding gmail.com if no domain is present. 32 // Extract the domain part from the canonical form of the given email.
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/ |
nv50_transfer.h | 10 unsigned domain; member in struct:nv50_m2mf_rect
|
/external/dhcpcd/dhcpcd-hooks/ |
20-dns.conf | 36 setprop dhcp.${interface}.domain "${new_domain_name}$separator${new_domain_search}" 45 setprop dhcp.${interface}.domain ""
|
/external/dnsmasq/src/ |
dbus.c | 105 char *domain; local 175 dbus_message_iter_get_basic(&iter, &domain); 179 domain = NULL; 188 if (!(serv->flags & SERV_HAS_DOMAIN) && !domain) 194 domain && 195 hostname_isequal(domain, serv->domain)) 207 if (domain) 208 serv->domain = whine_malloc(strlen(domain)+1) [all...] |
/external/mesa3d/src/gallium/drivers/nv50/ |
nv50_transfer.h | 10 unsigned domain; member in struct:nv50_m2mf_rect
|
/external/chromium_org/third_party/WebKit/Source/core/platform/network/ |
ResourceError.h | 48 ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription) 49 : m_domain(domain) 64 const String& domain() const { return m_domain; } function in class:WebCore::ResourceError
|
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/ |
generate_protocol_externs.py | 100 for domain in json_api: 101 domain_name = domain["domain"] 102 if "types" in domain: 103 for type in domain["types"]: 107 for domain in json_api: 108 domain_name = domain["domain"] 110 if "types" in domain: 111 for type in domain["types"] [all...] |
/external/chromium_org/third_party/libjingle/source/talk/xmpp/ |
jid.h | 38 // consists of three parts: the node, the domain and the resource, e.g.: 40 // node@domain/resource 43 // a domain. A bare jid is defined to not have a resource and a full jid 55 const std::string & domain() const { return domain_name_; } function in class:buzz::Jid 83 static std::string PrepDomain(const std::string& domain, bool* valid); 84 static void PrepDomain(const std::string& domain,
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nouveau/ |
nouveau_buffer.h | 38 uint8_t domain; member in struct:nv04_resource 55 struct nv04_resource *, unsigned domain); 77 return nv04_resource(resource)->domain != 0;
|
/external/chromium_org/third_party/skia/src/gpu/effects/ |
GrTextureDomainEffect.h | 17 * Limits a texture's lookup coordinates to a domain. Samples outside the domain are either clamped 18 * the edge of the domain or result in a vec4 of zeros. The domain is clipped to normalized texture 19 * coords ([0,1]x[0,1] square). Bilinear filtering can cause texels outside the domain to affect the 20 * read value unless the caller considers this when calculating the domain. TODO: This should be a 29 * outside of the domain is user-specifiable. Decal mode currently has a hard (non-lerped) 39 const SkRect& domain, 53 const SkRect& domain() const { return fTextureDomain; } function in class:GrTextureDomainEffect 56 /* Computes a domain that bounds all the texels in texelRect. Note that with bilerp enable [all...] |
/external/guava/guava/src/com/google/common/collect/ |
Range.java | 37 * (informally, "contiguous" or "unbroken") portion of a particular domain. 377 * given domain {@linkplain Range#contains contained} by this range. 392 * @throws IllegalArgumentException if neither this range nor the domain has a 397 public ContiguousSet<C> asSet(DiscreteDomain<C> domain) { 398 checkNotNull(domain); 403 Ranges.atLeast(domain.minValue())); 407 Ranges.atMost(domain.maxValue())); 416 lowerBound.leastValueAbove(domain), 417 upperBound.greatestValueBelow(domain)) > 0; 420 ? new EmptyContiguousSet<C>(domain) [all...] |
/external/guava/guava/src/com/google/common/net/ |
HostSpecifier.java | 30 * domain name. 33 * reasonably be used in a URI, the domain name case is further restricted to 34 * include only those domain names which end in a recognized public suffix; see 45 * Similarly, if you know that a given string represents a domain name, use 67 * <li>A domain name, like {@code google.com} 97 // It is not any kind of IP address; must be a domain name or invalid. 100 final InternetDomainName domain = InternetDomainName.from(host); local 102 if (domain.hasPublicSuffix()) { 103 return new HostSpecifier(domain.name()); 107 "Domain name does not have a recognized public suffix: " + host) [all...] |
/external/mesa3d/src/gallium/drivers/nouveau/ |
nouveau_buffer.h | 38 uint8_t domain; member in struct:nv04_resource 55 struct nv04_resource *, unsigned domain); 77 return nv04_resource(resource)->domain != 0;
|