/external/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/chromium_org/chrome/browser/policy/cloud/ |
component_cloud_policy_service.cc | 80 // Passes the current descriptor of a domain, so that the disk cache 118 // calls for each domain. 177 if (ComponentCloudPolicyStore::GetPolicyType(descriptor->domain(), 188 domain_map_[descriptor->domain()] = descriptor; 192 store_->Purge(descriptor->domain(), ids); 202 PolicyDomain domain; local 203 if (ComponentCloudPolicyStore::GetPolicyDomain(it->first, &domain)) { 204 StringSet& set = (*components)[domain]; 253 bool ComponentCloudPolicyService::SupportsDomain(PolicyDomain domain) { 254 return ComponentCloudPolicyStore::SupportsDomain(domain); 323 PolicyDomain domain; local [all...] |
/external/llvm/lib/CodeGen/ |
ExecutionDepsFix.cpp | 19 // This pass changes the variant instructions to minimize domain crossings. 39 /// execution domain. Multiple registers may refer to the same open 41 /// domain. 47 /// domain, but if we were forced to pay the penalty of a domain crossing, we 72 // Is domain available? 73 bool hasDomain(unsigned domain) const { 74 return AvailableDomains & (1u << domain); 77 // Mark domain as available. 78 void addDomain(unsigned domain) { 567 unsigned domain = countTrailingZeros(available); local [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
Database.js | 33 WebInspector.Database = function(model, id, domain, name, version) 37 this._domain = domain; 72 get domain() 77 set domain(x) 198 payload.domain,
|
/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...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
_MozillaCookieJar.py | 30 domain as set in the HTTP header started with a dot (yes, I'm aware some 70 domain, domain_specified, path, secure, expires, name, value = \ 81 initial_dot = domain.startswith(".") 92 domain, domain_specified, initial_dot, 129 if cookie.domain.startswith("."): initial_dot = "TRUE" 145 "\t".join([cookie.domain, initial_dot, cookie.path,
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
_MozillaCookieJar.py | 30 domain as set in the HTTP header started with a dot (yes, I'm aware some 70 domain, domain_specified, path, secure, expires, name, value = \ 81 initial_dot = domain.startswith(".") 92 domain, domain_specified, initial_dot, 129 if cookie.domain.startswith("."): initial_dot = "TRUE" 145 "\t".join([cookie.domain, initial_dot, cookie.path,
|
/external/chromium_org/chrome/browser/predictors/ |
logged_in_predictor_table.cc | 41 string LoggedInPredictorTable::GetKeyFromDomain(const std::string& domain) { 44 domain, 47 effective_domain = domain; 61 base::StringPrintf("INSERT OR IGNORE INTO %s (domain, time) VALUES (?,?)", 76 base::StringPrintf("DELETE FROM %s WHERE domain=?", kTableName).c_str())); 83 void LoggedInPredictorTable::DeleteDomain(const std::string& domain) { 84 DeleteDomainFromURL(GURL("http://" + domain)); 95 base::StringPrintf("SELECT count(*) FROM %s WHERE domain=?", 134 string domain = statement.ColumnString(0); local 136 (*state_map)[domain] = value [all...] |
/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/chromium_org/content/browser/devtools/ |
devtools_browser_target.cc | 29 const std::string& domain, 32 DCHECK(handlers_.find(domain) == handlers_.end()); 33 handlers_[domain] = handler; 35 handle_on_ui_thread_.insert(domain); 53 DomainHandlerMap::iterator it = handlers_.find(command->domain()); 60 bool handle_directly = handle_on_ui_thread_.find(command->domain()) ==
|
/external/chromium_org/net/cert/ |
x509_util_nss_unittest.cc | 79 void VerifyDomainBoundCert(const std::string& domain, 87 (unsigned char*)domain.data(), 88 static_cast<unsigned int>(domain.size()) 144 // This test creates a domain-bound cert from an EC private key and 148 std::string domain = "weborigin.com"; local 156 domain, 1, 161 VerifyDomainBoundCert(domain, der_cert);
|
/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/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/chromium_org/chrome/browser/policy/ |
policy_domain_descriptor.cc | 48 PolicyDomainDescriptor::PolicyDomainDescriptor(PolicyDomain domain) 49 : domain_(domain) {} 66 if (ns.domain != domain_)
|
configuration_policy_provider.h | 55 // policy |domain|. This is used to detect whether initialization is done in 57 virtual bool IsInitializationComplete(PolicyDomain domain) const; 72 // components that matter for the domain are included, and components not
|
mock_policy_service.h | 39 MOCK_CONST_METHOD1(IsInitializationComplete, bool(PolicyDomain domain));
|
/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/chromium_org/chrome/browser/chromeos/policy/ |
device_local_account_policy_provider.h | 32 virtual bool IsInitializationComplete(PolicyDomain domain) const OVERRIDE;
|
/external/chromium_org/chrome/browser/ui/webui/chromeos/login/ |
terms_of_service_screen_handler.h | 34 virtual void SetDomain(const std::string& domain) OVERRIDE; 42 // Update the domain name shown in the UI. 63 // The domain name whose Terms of Service are being shown.
|
/external/chromium_org/chrome/browser/ui/webui/ntp/android/ |
managed_bookmarks_shim.cc | 68 std::string domain; local 71 domain = gaia::ExtractDomainName(username); 73 if (domain.empty()) { 78 base::UTF8ToUTF16(domain));
|