| /external/sdv/vsomeip/third_party/boost/proto/include/boost/proto/detail/preprocessed/ |
| D | funop.hpp | 10 template<typename Expr, typename Domain > 14 Domain 36 template<typename Expr , typename This, typename Domain> 37 struct funop<Expr(), This, Domain> 40 , Domain 46 template<typename Expr, typename Domain , typename A0> 50 Domain 54 , typename proto::result_of::as_child<A0, Domain>::type 65 , proto::as_child<Domain>(a0) in call() 72 template<typename Expr , typename A0, typename This, typename Domain> [all …]
|
| D | make_expr_.hpp | 10 , typename Domain 16 template<typename Domain, typename A> 17 struct make_expr_<tag::terminal, Domain, A 20 typedef typename proto::detail::protoify<A, Domain>::result_type result_type; 24 return proto::detail::protoify<A, Domain>()(a); in operator ()() 32 template<typename Tag, typename Domain , typename A0> 33 struct make_expr_<Tag, Domain , A0 38 typename boost::proto::detail::protoify< A0 , Domain >::result_type 41 typedef typename base_expr<Domain, Tag, proto_args>::type expr_type; 42 typedef typename Domain::proto_generator proto_generator; [all …]
|
| D | unpack_expr_.hpp | 8 template<typename Tag, typename Domain, typename Sequence, std::size_t Size> 11 template<typename Domain, typename Sequence> 12 struct unpack_expr_<tag::terminal, Domain, Sequence, 1u> 24 , Domain 30 return proto::detail::protoify<terminal_type, Domain>()(fusion::at_c<0>(sequence)); in call() 37 template<typename Tag, typename Domain, typename Sequence> 38 struct unpack_expr_<Tag, Domain, Sequence, 1> 43 …nst< typename fusion::result_of::value_of< fusion_iterator0 >::type >::type , Domain >::result_type 46 typedef typename base_expr<Domain, Tag, proto_args>::type expr_type; 47 typedef typename Domain::proto_generator proto_generator; [all …]
|
| /external/python/cpython3/Lib/test/ |
| D | test_netrc.py | 28 machine host.domain.com password pass1 login log1 account acct1 31 self.assertEqual(nrc.hosts['host.domain.com'], ('log1', 'acct1', 'pass1')) 36 machine host.domain.com login log1 password pass1 account acct1 39 self.assertEqual(nrc.hosts['host.domain.com'], ('log1', 'acct1', 'pass1')) 62 "machine host.domain.com", 63 "machine host.domain.com login", 64 "machine host.domain.com account", 65 "machine host.domain.com password", 66 "machine host.domain.com login \"\" account", 67 "machine host.domain.com login \"\" password", [all …]
|
| /external/fastrpc/src/ |
| D | fastrpc_apps_user.c | 223 extern int listener_android_domain_init(int domain); 224 extern void listener_android_domain_deinit(int domain); 225 extern int initFileWatcher(int domain); 226 extern void deinitFileWatcher(int domain); 227 static int open_dev(int domain); 228 static void domain_deinit(int domain); 230 remote_handle64 get_adsp_current_process1_handle(int domain); 231 remote_handle64 get_adspmsgd_adsp1_handle(int domain); 575 static int get_domain_from_handle(remote_handle64 local, int *domain) { in get_domain_from_handle() argument 582 *domain = dom; in get_domain_from_handle() [all …]
|
| /external/curl/tests/data/ |
| D | test31 | 25 Set-Cookie: blankdomain=sure; domain=; path=/ 27 Set-Cookie: foobar=name; domain=anything.com; path=/ ; secure 28 Set-Cookie:ismatch=this ; domain=test31.curl; path=/silly/ 29 Set-Cookie: overwrite=this ; domain=test31.curl; path=/overwrite/ 30 Set-Cookie: overwrite=this2 ; domain=test31.curl; path=/overwrite 31 Set-Cookie: sec1value=secure1 ; domain=test31.curl; path=/secure1/ ; secure 32 Set-Cookie: sec2value=secure2 ; domain=test31.curl; path=/secure2/ ; secure= 33 Set-Cookie: sec3value=secure3 ; domain=test31.curl; path=/secure3/ ; secure= 34 Set-Cookie: sec4value=secure4 ; secure=; domain=test31.curl; path=/secure4/ ; 35 Set-Cookie: sec5value=secure5 ; secure; domain=test31.curl; path=/secure5/ ; [all …]
|
| /external/parameter-framework/upstream/test/functional-tests-legacy/PfwTestCase/Domains/ |
| D | tDomain_Elements.py | 32 Adding and Removing elements from domain testcases 68 - list and backup initial domain elements 69 - add a domain element 70 - remove a domain element 83 # List and backup initial domain elements 84 log.I("Listing initial domain %s elements" % (self.domain_name)) 86 … assert err == None, "ERROR : command [listDomainElements] - Error while listing domain elements" 98 log.I("Actual domain %s elements number is %s" % (self.domain_name,element_nbr_init)) 100 # Adding a new domain element 101 log.I("Adding a new domain element to domain %s" % (self.domain_name)) [all …]
|
| /external/sdv/vsomeip/third_party/boost/proto/include/boost/proto/ |
| D | operators.hpp | 19 #include <boost/proto/domain.hpp> 38 template<typename Domain, typename Grammar, typename Trait, typename Tag, typename Arg> 45 , result_of::make_expr<Tag, Domain, Arg> 49 template<typename Domain, typename Trait, typename Tag, typename Arg> 50 struct enable_unary<Domain, proto::_, Trait, Tag, Arg &> 53 , result_of::make_expr<Tag, Domain, Arg &> 68 …template<typename Domain, typename Grammar, typename Trait, typename Tag, typename Left, typename … 75 , result_of::make_expr<Tag, Domain, Left, Right> 79 template<typename Domain, typename Trait, typename Tag, typename Left, typename Right> 80 struct enable_binary<Domain, proto::_, Trait, Tag, Left &, Right &> [all …]
|
| D | make_expr.hpp | 38 #include <boost/proto/domain.hpp> 76 template<typename T, typename Domain> 78 : Domain::template as_expr<T> 81 template<typename T, typename Domain> 82 struct protoify<T &, Domain> 83 : Domain::template as_child<T> 86 template<typename T, typename Domain> 87 struct protoify<boost::reference_wrapper<T>, Domain> 88 : Domain::template as_child<T> 91 template<typename T, typename Domain> [all …]
|
| /external/guava/guava-tests/test/com/google/common/net/ |
| D | InternetDomainNameTest.java | 45 /** A domain part which is valid under lenient validation, but invalid under strict validation. */ 251 final InternetDomainName domain = InternetDomainName.from(name); in testPublicSuffix() local 252 assertTrue(name, domain.isPublicSuffix()); in testPublicSuffix() 253 assertTrue(name, domain.hasPublicSuffix()); in testPublicSuffix() 254 assertFalse(name, domain.isUnderPublicSuffix()); in testPublicSuffix() 255 assertFalse(name, domain.isTopPrivateDomain()); in testPublicSuffix() 256 assertEquals(domain, domain.publicSuffix()); in testPublicSuffix() 260 final InternetDomainName domain = InternetDomainName.from(name); in testPublicSuffix() local 261 assertFalse(name, domain.isPublicSuffix()); in testPublicSuffix() 262 assertFalse(name, domain.hasPublicSuffix()); in testPublicSuffix() [all …]
|
| /external/guava/android/guava-tests/test/com/google/common/net/ |
| D | InternetDomainNameTest.java | 45 /** A domain part which is valid under lenient validation, but invalid under strict validation. */ 251 final InternetDomainName domain = InternetDomainName.from(name); in testPublicSuffix() local 252 assertTrue(name, domain.isPublicSuffix()); in testPublicSuffix() 253 assertTrue(name, domain.hasPublicSuffix()); in testPublicSuffix() 254 assertFalse(name, domain.isUnderPublicSuffix()); in testPublicSuffix() 255 assertFalse(name, domain.isTopPrivateDomain()); in testPublicSuffix() 256 assertEquals(domain, domain.publicSuffix()); in testPublicSuffix() 260 final InternetDomainName domain = InternetDomainName.from(name); in testPublicSuffix() local 261 assertFalse(name, domain.isPublicSuffix()); in testPublicSuffix() 262 assertFalse(name, domain.hasPublicSuffix()); in testPublicSuffix() [all …]
|
| /external/apache-http/src/org/apache/http/impl/cookie/ |
| D | RFC2965DomainAttributeHandler.java | 44 * <tt>"Domain"</tt> cookie attribute handler for RFC 2965 cookie spec. 62 * Parse cookie domain attribute. 64 public void parse(final SetCookie cookie, String domain) in parse() argument 69 if (domain == null) { in parse() 71 "Missing value for domain attribute"); in parse() 73 if (domain.trim().length() == 0) { in parse() 75 "Blank value for domain attribute"); in parse() 77 domain = domain.toLowerCase(Locale.ENGLISH); in parse() 78 if (!domain.startsWith(".")) { in parse() 82 // That effectively implies that the domain attribute in parse() [all …]
|
| D | RFC2109DomainHandler.java | 59 throw new MalformedCookieException("Missing value for domain attribute"); in parse() 62 throw new MalformedCookieException("Blank value for domain attribute"); in parse() 76 String domain = cookie.getDomain(); in validate() local 77 if (domain == null) { in validate() 78 throw new MalformedCookieException("Cookie domain may not be null"); in validate() 80 if (!domain.equals(host)) { in validate() 81 int dotIndex = domain.indexOf('.'); in validate() 83 throw new MalformedCookieException("Domain attribute \"" in validate() 84 + domain in validate() 88 // domain must start with dot in validate() [all …]
|
| D | BasicDomainHandler.java | 57 throw new MalformedCookieException("Missing value for domain attribute"); in parse() 60 throw new MalformedCookieException("Blank value for domain attribute"); in parse() 73 // Validate the cookies domain attribute. NOTE: Domains without in validate() 75 // have DNS names. Since they have no dots, to domain-match the in validate() 76 // request-host and domain must be identical for the cookie to sent in validate() 79 String domain = cookie.getDomain(); in validate() local 80 if (domain == null) { in validate() 81 throw new MalformedCookieException("Cookie domain may not be null"); in validate() 85 // A Set-Cookie2 with Domain=ajax.com will be accepted. in validate() 87 // domain must match host in validate() [all …]
|
| /external/python/google-api-python-client/docs/dyn/ |
| D | admin_directory_v1.domains.html | 82 <p class="firstline">Deletes a domain of the customer.</p> 85 <p class="firstline">Retrieves a domain of the customer.</p> 88 <p class="firstline">Inserts a domain of the customer.</p> 100 <pre>Deletes a domain of the customer. 104 domainName: string, Name of domain to be deleted (required) 114 <pre>Retrieves a domain of the customer. 118 domainName: string, Name of domain to be retrieved (required) 128 …"creationTime": "A String", # Creation time of the domain. Expressed in [Unix … 129 "domainAliases": [ # List of domain alias objects. (Read-only) 131 …"creationTime": "A String", # The creation time of the domain alias. (Read-onl… [all …]
|
| D | firebasehosting_v1beta1.sites.domains.html | 82 <p class="firstline">Creates a domain mapping on the specified site.</p> 85 <p class="firstline">Deletes the existing domain mapping on the specified site.</p> 88 <p class="firstline">Gets a domain mapping on the specified site.</p> 97 <p class="firstline">Updates the specified domain mapping, creating the mapping as if it does not e… 106 <pre>Creates a domain mapping on the specified site. 109 …parent: string, Required. The parent to create the domain association for, in the format: sites/si… 113 { # The intended behavior and status information of a domain. 114 "domainName": "A String", # Required. The domain name of the association. 115 …domain-level redirect. Domain redirects preserve the path of the redirect but replace the requeste… 116 "domainName": "A String", # Required. The domain name to redirect to. [all …]
|
| D | firebasehosting_v1beta1.projects.sites.domains.html | 82 <p class="firstline">Creates a domain mapping on the specified site.</p> 85 <p class="firstline">Deletes the existing domain mapping on the specified site.</p> 88 <p class="firstline">Gets a domain mapping on the specified site.</p> 97 <p class="firstline">Updates the specified domain mapping, creating the mapping as if it does not e… 106 <pre>Creates a domain mapping on the specified site. 109 …parent: string, Required. The parent to create the domain association for, in the format: sites/si… 113 { # The intended behavior and status information of a domain. 114 "domainName": "A String", # Required. The domain name of the association. 115 …domain-level redirect. Domain redirects preserve the path of the redirect but replace the requeste… 116 "domainName": "A String", # Required. The domain name to redirect to. [all …]
|
| /external/googleapis/google/cloud/managedidentities/v1beta1/ |
| D | resource.proto | 31 // Represents a managed Microsoft Active Directory domain. 32 // If the domain is being changed, it will be placed into the UPDATING state, 35 message Domain { message 37 type: "managedidentities.googleapis.com/Domain" 38 pattern: "projects/{project}/locations/{location}/domains/{domain}" 41 // Represents the different states of a managed domain. 46 // The domain is being created. 49 // The domain has been created and is fully usable. 52 // The domain's configuration is being updated. 55 // The domain is being deleted. [all …]
|
| D | managed_identities_service.proto | 41 // Creates a Microsoft AD domain. 45 body: "domain" 47 option (google.api.method_signature) = "parent,domain_name,domain"; 49 response_type: "Domain" 54 // Resets a domain's administrator password. 71 // Gets information about a domain. 72 rpc GetDomain(GetDomainRequest) returns (Domain) { 79 // Updates the metadata and configuration of a domain. 82 patch: "/v1beta1/{domain.name=projects/*/locations/global/domains/*}" 83 body: "domain" [all …]
|
| /external/tensorflow/tensorflow/compiler/xla/service/ |
| D | hlo_domain_map.cc | 65 // We only check operands, so we are sure to not process the empty domain from in TryProcessEmptyDomain() 69 auto domain = std::make_unique<DomainMetadata::Domain>(); in TryProcessEmptyDomain() local 70 domain->enter_domains.insert(operand); in TryProcessEmptyDomain() 71 domain->exit_domains.insert(instruction); in TryProcessEmptyDomain() 72 TF_RETURN_IF_ERROR(InsertDomain(std::move(domain))); in TryProcessEmptyDomain() 76 auto domain = std::make_unique<DomainMetadata::Domain>(); in TryProcessEmptyDomain() local 77 domain->enter_domains.insert(instruction); in TryProcessEmptyDomain() 78 TF_RETURN_IF_ERROR(InsertDomain(std::move(domain))); in TryProcessEmptyDomain() 92 // whether this is an "empty domain". in Populate() 101 TF_ASSIGN_OR_RETURN(std::unique_ptr<DomainMetadata::Domain> domain, in Populate() [all …]
|
| /external/aws-sdk-java-v2/services/s3/src/test/java/software/amazon/awssdk/services/s3/internal/resource/ |
| D | S3AccessPointBuilderTest.java | 40 .domain("domain") in toURI_noDualstack() 43 …ertThat(result, is(URI.create("protocol://access-point-account-id.s3-accesspoint.region.domain"))); in toURI_noDualstack() 53 .domain("domain") in toURI_dualstack() 58 … is(URI.create("protocol://access-point-account-id.s3-accesspoint.dualstack.region.domain"))); in toURI_dualstack() 68 .domain("domain") in toURI_FipsEnabled() 72 …at(result, is(URI.create("protocol://access-point-account-id.s3-accesspoint-fips.region.domain"))); in toURI_FipsEnabled() 82 .domain("domain") in toURI_accessPointNameWithSlashes_throwsIllegalArgumentException() 96 .domain("domain") in toURI_accountIdWithSlashes_throwsIllegalArgumentException() 110 .domain("domain") in toURI_accessPointNameWithTooLongString_throwsIllegalArgumentException() 124 .domain("domain") in toURI_accountIdWithTooLongString_throwsIllegalArgumentException() [all …]
|
| /external/googleapis/google/cloud/managedidentities/v1/ |
| D | resource.proto | 32 // Represents a managed Microsoft Active Directory domain. 33 message Domain { message 35 type: "managedidentities.googleapis.com/Domain" 36 pattern: "projects/{project}/locations/{location}/domains/{domain}" 39 // Represents the different states of a managed domain. 44 // The domain is being created. 47 // The domain has been created and is fully usable. 50 // The domain's configuration is being updated. 53 // The domain is being deleted. 56 // The domain is being repaired and may be unusable. Details [all …]
|
| /external/google-cloud-java/java-managed-identities/proto-google-cloud-managed-identities-v1/src/main/proto/google/cloud/managedidentities/v1/ |
| D | resource.proto | 32 // Represents a managed Microsoft Active Directory domain. 33 message Domain { message 35 type: "managedidentities.googleapis.com/Domain" 36 pattern: "projects/{project}/locations/{location}/domains/{domain}" 39 // Represents the different states of a managed domain. 44 // The domain is being created. 47 // The domain has been created and is fully usable. 50 // The domain's configuration is being updated. 53 // The domain is being deleted. 56 // The domain is being repaired and may be unusable. Details [all …]
|
| D | managed_identities_service.proto | 46 // add/remove domain controllers in GCP regions and add/remove VPC peering. 56 // `/projects/{project_id}/locations/global/domain/{domain_name}`. 58 // The `{domain_name}` refers to fully qualified domain name in the customer 74 // Creates a Microsoft AD domain. 78 body: "domain" 80 option (google.api.method_signature) = "parent,domain_name,domain"; 82 response_type: "Domain" 87 // Resets a domain's administrator password. 104 // Gets information about a domain. 105 rpc GetDomain(GetDomainRequest) returns (Domain) { [all …]
|
| /external/parameter-framework/upstream/test/functional-tests/ |
| D | plan.md | 209 - [ ] Scenario: create and delete an empty domain 211 * THEN creating a domain with an arbitrary name ("domain1"?) should succeed 212 * (AND_THEN the domain list should contain the domain name) 213 * THEN deleting the domain should succeed 216 * GIVEN a started parameter framework with a domain 217 * THEN creating a configuration in this domain with an arbitrary name ("config1") should succeed 218 * (AND_THEN the domain configuration list should contain the configuration name) 220 * (AND_THEN the domain configuration list should not contain the configuration name) 222 - [ ] Scenario: delete a domain with configurations 223 * GIVEN a started parameter framework with a domain and several configuration (3?) [all …]
|