Searched defs:domain (Results 1 - 25 of 332) sorted by path

1234567891011>>

/external/aac/libSBRdec/src/
H A Denv_dec.cpp644 \brief Convert each envelope value from logarithmic to linear domain
745 int i, domain, no_of_bands, band, freqRes; local
753 domain = h_sbr_data->domain_vec[i];
762 if (domain == 0)
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
H A DProtectionDomainTest.java245 // public PermissionCollection getPermissions(ProtectionDomain domain) {
246 // return super.getPermissions(domain);
248 public boolean implies(ProtectionDomain domain, Permission permission) { argument
249 if (trackPD != null && trackPD == domain) {
252 return super.implies(domain, permission);
/external/apache-http/src/org/apache/http/auth/
H A DNTCredentials.java66 * @param usernamePassword the domain/username:password formed string
97 * @param userName The user name. This should not include the domain to authenticate with.
102 * @param domain The domain to authenticate within.
108 final String domain) {
113 this.principal = new NTUserPrincipal(domain, userName);
137 * @return String the domain these credentials are intended to authenticate with.
104 NTCredentials( final String userName, final String password, final String workstation, final String domain) argument
H A DNTUserPrincipal.java52 private final String domain; field in class:NTUserPrincipal
56 final String domain,
63 if (domain != null) {
64 this.domain = domain.toUpperCase(Locale.ENGLISH);
66 this.domain = null;
68 if (this.domain != null && this.domain.length() > 0) {
70 buffer.append(this.domain);
84 return this.domain;
55 NTUserPrincipal( final String domain, final String username) argument
[all...]
/external/apache-http/src/org/apache/http/cookie/
H A DSetCookie.java77 * Sets the domain attribute.
79 * @param domain The value of the domain attribute
83 void setDomain(String domain); argument
/external/apache-http/src/org/apache/http/impl/auth/
H A DNTLMEngine.java50 * Generates a Type1 message given the domain and workstation.
52 * @param domain Optional Windows domain name. Can be <code>null</code>.
59 String domain,
68 * @param domain Windows domain name
77 String domain,
58 generateType1Msg( String domain, String workstation) argument
74 generateType3Msg( String username, String password, String domain, String workstation, String challenge) argument
/external/apache-http/src/org/apache/http/impl/cookie/
H A DBasicClientCookie.java187 * Returns domain attribute of the cookie.
189 * @return the value of the domain attribute
198 * Sets the domain attribute.
200 * @param domain The value of the domain attribute
204 public void setDomain(String domain) { argument
205 if (domain != null) {
206 cookieDomain = domain.toLowerCase(Locale.ENGLISH);
339 buffer.append("[domain: ");
H A DNetscapeDomainHandler.java58 String domain = cookie.getDomain();
60 int domainParts = new StringTokenizer(domain, ".").countTokens();
62 if (isSpecialDomain(domain)) {
65 + domain
72 + domain
80 * Checks if the given domain is in one of the seven special
82 * @param domain The domain.
83 * @return True if the specified domain is "special"
85 private static boolean isSpecialDomain(final String domain) { argument
[all...]
H A DRFC2965DomainAttributeHandler.java62 * Parse cookie domain attribute.
64 public void parse(final SetCookie cookie, String domain) argument
69 if (domain == null) {
71 "Missing value for domain attribute");
73 if (domain.trim().length() == 0) {
75 "Blank value for domain attribute");
77 domain = domain.toLowerCase(Locale.ENGLISH);
78 if (!domain.startsWith(".")) {
82 // That effectively implies that the domain attribut
104 domainMatch(String host, String domain) argument
[all...]
/external/bison/lib/
H A Dgettext.h27 /* You can set the DEFAULT_TEXT_DOMAIN macro to specify the domain used by
148 pgettext_aux (const char *domain, argument
152 const char *translation = dcgettext (domain, msg_ctxt_id, category);
167 npgettext_aux (const char *domain, argument
173 dcngettext (domain, msg_ctxt_id, msgid_plural, n, category);
210 dcpgettext_expr (const char *domain, argument
231 translation = dcgettext (domain, msg_ctxt_id, category);
255 dcnpgettext_expr (const char *domain, argument
277 translation = dcngettext (domain, msg_ctxt_id, msgid_plural, n, category);
/external/blktrace/
H A Dblktrace.c687 static int my_socket(int domain, int type, int protocol) argument
692 fd = socket(domain, type, protocol);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DPKIXNameConstraintValidator.java654 // address in sub domain
662 private boolean withinDomain(String testDomain, String domain) argument
664 String tempDomain = domain;
708 // is sub domain
736 // is sub domain or the same
773 // email2 specifies a domain
800 // email1 specifies a domain
816 // email2 specifies a domain
863 // email2 specifies a domain
911 // email2 specifies a domain
[all...]
/external/chromium_org/ash/system/user/
H A Duser_card_view.cc172 // Retrieve the domain managing the device and wrap it with markers.
173 base::string16 domain = base::UTF8ToUTF16( local
175 base::RemoveChars(domain, kDisplayNameMark, &domain);
176 base::i18n::WrapStringWithLTRFormatting(&domain);
177 // Retrieve the label text, inserting the display name and domain.
179 IDS_ASH_STATUS_TRAY_PUBLIC_LABEL, display_name, domain);
/external/chromium_org/base/win/
H A Dwin_util.cc353 // domain will only kick in on a restart.
355 LPWSTR domain; local
357 if(::NetGetJoinInformation(NULL, &domain, &join_status) != NERR_Success)
359 ::NetApiBufferFree(domain);
/external/chromium_org/chrome/browser/android/signin/
H A Dsignin_manager_android.cc103 base::android::ScopedJavaLocalRef<jstring> domain;
106 domain.obj());
148 base::android::ScopedJavaLocalRef<jstring> domain; local
156 domain.Reset(
162 return domain;
182 base::android::ScopedJavaLocalRef<jstring> domain; local
185 domain.Reset(
194 domain.obj());
/external/chromium_org/chrome/browser/browsing_data/
H A Dbrowsing_data_cookie_helper_unittest.cc71 const char* domain,
78 if (domain)
79 matcher.domain_ = domain;
460 // domain-value, path-value]) for a HTTP request to |frame1_url| and verify
463 // the |request_url| are used as domain-value and path-value for the added
491 // Host-only and domain cookies are treated as seperate items. This means that
496 // Add a domain cookie and check if it increases the cookie count.
70 AddCookieExpectation(const char* source, const char* domain, const char* path, const char* name, const char* value) argument
H A Dcookies_tree_model.cc60 // We want to order by registry controlled domain, so we would get
70 // The canonicalized representation makes the registry controlled domain
73 // string comparison works to order hosts by registry controlled domain
92 // The host may be the registry controlled domain, in which case fail fast.
97 // Start operating to the left of the registry controlled domain, e.g. in
725 const std::string& domain) {
726 DCHECK_EQ(GetHost(), domain); local
729 flash_lso_child_ = new CookieTreeFlashLSONode(domain);
891 const std::string& domain)
892 : domain_(domain) {}
724 GetOrCreateFlashLSONode( const std::string& domain) argument
890 CookieTreeFlashLSONode( const std::string& domain) argument
1167 std::string domain = it->Domain(); local
[all...]
H A Dmock_browsing_data_flash_lso_helper.cc30 const std::string& domain) {
31 domains_.push_back(domain);
29 AddFlashLSODomain( const std::string& domain) argument
/external/chromium_org/chrome/browser/chromeos/attestation/
H A Dplatform_verification_dialog.cc70 const base::string16& domain,
73 domain_(domain),
68 PlatformVerificationDialog( content::WebContents* web_contents, const base::string16& domain, const PlatformVerificationFlow::Delegate::ConsentCallback& callback) argument
/external/chromium_org/chrome/browser/chromeos/login/
H A Dprofile_auth_data.cc89 // As an additional precaution, the cookie's domain is checked. If the domain
275 const std::string& domain = cookie.Domain(); local
276 return domain.find("google") != std::string::npos ||
277 domain.find("youtube") != std::string::npos;
/external/chromium_org/chrome/browser/chromeos/policy/
H A Ddevice_local_account.cc67 const std::string domain = gaia::ExtractDomainName(user_id); local
68 if (!EndsWith(domain, kDeviceLocalAccountDomainSuffix, true))
71 const std::string domain_prefix = domain.substr(
72 0, domain.size() - arraysize(kDeviceLocalAccountDomainSuffix) + 1);
H A Denrollment_handler_chromeos.cc126 // previously-enrolled domain.
127 std::string domain; local
129 domain = install_attributes_->GetDomain();
130 validator->ValidateDomain(domain);
136 // If |domain| is empty here, the policy validation code will just use the
137 // domain from the username field in the policy itself to do key validation.
139 // we can validate the username on the resulting policy, and use the domain
141 validator->ValidateInitialKey(GetPolicyVerificationKey(), domain); local
H A Denterprise_install_attributes.cc161 std::string domain = gaia::ExtractDomainName(user); local
163 (!registration_domain_.empty() && domain == registration_domain_) ?
223 std::string domain = gaia::ExtractDomainName(registration_user); local
229 domain) ||
314 "enterprise.domain";
H A Dlogin_profile_policy_provider.cc127 PolicyDomain domain) {
128 if (domain == POLICY_DOMAIN_CHROME)
126 OnPolicyServiceInitialized( PolicyDomain domain) argument
H A Dnetwork_configuration_updater.cc28 PolicyDomain domain) {
29 if (domain != POLICY_DOMAIN_CHROME)
27 OnPolicyServiceInitialized( PolicyDomain domain) argument

Completed in 2685 milliseconds

1234567891011>>