/external/guava/guava-tests/test/com/google/common/net/ |
InternetDomainNameTest.java | 48 * A domain part which is valid under lenient validation, but invalid under 215 final InternetDomainName domain = InternetDomainName.from(name); local 216 assertTrue(name, domain.isPublicSuffix()); 217 assertTrue(name, domain.hasPublicSuffix()); 218 assertFalse(name, domain.isUnderPublicSuffix()); 219 assertFalse(name, domain.isTopPrivateDomain()); 220 assertEquals(domain, domain.publicSuffix()); 224 final InternetDomainName domain = InternetDomainName.from(name); local 225 assertFalse(name, domain.isPublicSuffix()) 233 final InternetDomainName domain = InternetDomainName.from(name); local 242 final InternetDomainName domain = InternetDomainName.from(name); local 251 final InternetDomainName domain = InternetDomainName.from(name); local 262 final InternetDomainName domain = InternetDomainName.from(name); local 289 InternetDomainName domain = InternetDomainName.from("foo.com"); local 350 InternetDomainName domain = InternetDomainName.from(inputName); local 370 InternetDomainName domain = InternetDomainName.from("foo.teledata.mz"); local 382 InternetDomainName domain = InternetDomainName.from("www.essex.sch.uk"); local [all...] |
/external/clang/test/Sema/ |
memset-invalid-1.c | 9 void mt_query_for_domain(const char *domain)
|
/external/curl/docs/cmdline-opts/ |
unix-socket.d | 3 Help: Connect through this Unix domain socket 7 Connect through this Unix domain socket, instead of using the network.
|
/external/libbrillo/brillo/errors/ |
error.cc | 15 const std::string& domain, 26 << "Domain=" << domain << ", Code=" << code << ", Message=" << message; 32 << "Domain=" << domain << ", Code=" << code << ", Message=" << message; 37 const std::string& domain, 40 return Create(location, domain, code, message, ErrorPtr()); 44 const std::string& domain, 48 LogError(location, domain, code, message); 50 new Error(location, domain, code, message, std::move(inner_error))) [all...] |
error.h | 27 const std::string& domain, 31 const std::string& domain, 40 const std::string& domain, 47 const std::string& domain, 55 // Returns the error domain, code and message 66 // error domain. 67 bool HasDomain(const std::string& domain) const; 70 // specified error domain and code. 71 bool HasError(const std::string& domain, const std::string& code) const; 80 // Finds an error object of particular domain in the error chain stating a [all...] |
/external/apache-http/src/org/apache/http/impl/auth/ |
NTLMEngine.java | 50 * 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,
|
/external/apache-http/src/org/apache/http/impl/cookie/ |
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) 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(".")) [all...] |
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
ContiguousSet.java | 41 * Returns a {@code ContiguousSet} containing the same values in the given domain 44 * @throws IllegalArgumentException if neither range nor the domain has a lower bound, or if 50 Range<C> range, DiscreteDomain<C> domain) { 52 checkNotNull(domain); 56 effectiveRange = effectiveRange.intersection(Range.atLeast(domain.minValue())); 59 effectiveRange = effectiveRange.intersection(Range.atMost(domain.maxValue())); 68 range.lowerBound.leastValueAbove(domain), 69 range.upperBound.greatestValueBelow(domain)) > 0; 72 ? new EmptyContiguousSet<C>(domain) 73 : new RegularContiguousSet<C>(effectiveRange, domain); 76 final DiscreteDomain<C> domain; field in class:ContiguousSet [all...] |
RegularContiguousSet.java | 37 RegularContiguousSet(Range<C> range, DiscreteDomain<C> domain) { 38 super(domain); 44 ? ContiguousSet.create(range.intersection(other), domain) 45 : new EmptyContiguousSet<C>(domain); 56 return new EmptyContiguousSet<C>(domain); 73 return equalsOrThrow(previous, last) ? null : domain.next(previous); 87 return range.lowerBound.leastValueAbove(domain); 91 return range.upperBound.greatestValueBelow(domain); 95 long distance = domain.distance(first(), last()); 120 checkArgument(this.domain.equals(other.domain)) [all...] |
/external/tensorflow/tensorflow/compiler/xla/service/ |
hlo_domain_map.cc | 63 // We only check operands, so we are sure to not process the empty domain from 67 auto domain = absl::make_unique<DomainMetadata::Domain>(); local 68 domain->enter_domains.insert(operand); 69 domain->exit_domains.insert(instruction); 70 TF_RETURN_IF_ERROR(InsertDomain(std::move(domain))); 74 auto domain = absl::make_unique<DomainMetadata::Domain>(); local 75 domain->enter_domains.insert(instruction); 76 TF_RETURN_IF_ERROR(InsertDomain(std::move(domain))); [all...] |
hlo_domain_isolator.cc | 47 HloInstruction* domain = (*creator)(instruction, root, operand); local 48 if (domain != nullptr) { 49 VLOG(4) << "New domain: " << domain->ToString(); 50 TF_RETURN_IF_ERROR(operand->ReplaceUseWith(instruction, domain));
|
hlo_domain_remover.cc | 36 // Verifies the consistency of the domain, and normalizes the instructions 38 Status VerifyAndNormalizeDomain(const DomainMetadata::Domain& domain); 45 const DomainMetadata::Domain& domain) { 47 HloDomainVerifier::VerifyDomain(domain)); 49 VLOG(4) << "Applying domain normalization: " << ref_metadata->ToString(); 50 TF_RETURN_IF_ERROR(remover_->normalizer_(domain, ref_metadata)); 52 // No kDomain instruction was present within this domain, so call the 54 VLOG(2) << "Applying domain-less normalization" [all...] |
/external/guava/guava/src/com/google/common/collect/ |
Cut.java | 49 abstract Cut<C> withLowerBoundType(BoundType boundType, DiscreteDomain<C> domain); 50 abstract Cut<C> withUpperBoundType(BoundType boundType, DiscreteDomain<C> domain); 55 abstract C leastValueAbove(DiscreteDomain<C> domain); 56 abstract C greatestValueBelow(DiscreteDomain<C> domain); 62 Cut<C> canonical(DiscreteDomain<C> domain) { 132 DiscreteDomain<Comparable<?>> domain) { 136 DiscreteDomain<Comparable<?>> domain) { 146 DiscreteDomain<Comparable<?>> domain) { 147 return domain.minValue(); 150 DiscreteDomain<Comparable<?>> domain) { [all...] |
RegularContiguousSet.java | 39 RegularContiguousSet(Range<C> range, DiscreteDomain<C> domain) { 40 super(domain); 46 ? ContiguousSet.create(range.intersection(other), domain) 47 : new EmptyContiguousSet<C>(domain); 58 return new EmptyContiguousSet<C>(domain); 71 return contains(target) ? (int) domain.distance(first(), (C) target) : -1; 80 return equalsOrThrow(previous, last) ? null : domain.next(previous); 92 return equalsOrThrow(previous, first) ? null : domain.previous(previous); 106 return range.lowerBound.leastValueAbove(domain); 110 return range.upperBound.greatestValueBelow(domain); [all...] |
ContiguousSet.java | 44 * Returns a {@code ContiguousSet} containing the same values in the given domain 47 * @throws IllegalArgumentException if neither range nor the domain has a lower bound, or if 53 Range<C> range, DiscreteDomain<C> domain) { 55 checkNotNull(domain); 59 effectiveRange = effectiveRange.intersection(Range.atLeast(domain.minValue())); 62 effectiveRange = effectiveRange.intersection(Range.atMost(domain.maxValue())); 71 range.lowerBound.leastValueAbove(domain), 72 range.upperBound.greatestValueBelow(domain)) > 0; 75 ? new EmptyContiguousSet<C>(domain) 76 : new RegularContiguousSet<C>(effectiveRange, domain); 79 final DiscreteDomain<C> domain; field in class:ContiguousSet [all...] |
/external/e2fsprogs/intl/ |
loadmsgcat.c | 772 struct loaded_domain *domain, 784 domain->codeset_cntr = 787 domain->conv = (__gconv_t) -1; 790 domain->conv = (iconv_t) -1; 793 domain->conv_tab = NULL; 848 if (__gconv_open (outcharset, charset, &domain->conv, 851 domain->conv = (__gconv_t) -1; 868 domain->conv = iconv_open (outcharset, charset); 874 domain->conv = iconv_open (outcharset, charset); 889 _nl_free_domain_conv (struct loaded_domain *domain) 921 struct loaded_domain *domain; local [all...] |
/external/selinux/libsepol/tests/policies/test-deps/ |
module.conf | 6 attribute domain; 12 type new_t, domain;
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/ |
ExecutionDomainFix.h | 1 //==-- llvm/CodeGen/ExecutionDomainFix.h - Execution Domain Fix -*- C++ -*--==// 10 /// \file Execution Domain Fix pass. 19 /// This pass changes the variant instructions to minimize domain crossings. 42 /// execution domain. Multiple registers may refer to the same open 44 /// domain. 50 /// domain, but if we were forced to pay the penalty of a domain crossing, we 76 /// Is domain available? 77 bool hasDomain(unsigned domain) const { 78 assert(domain < [all...] |
/external/syzkaller/vendor/google.golang.org/appengine/internal/ |
app_id.go | 11 func parseFullAppID(appid string) (partition, domain, displayID string) { 16 domain, appid = appid[:i], appid[i+1:] 18 return partition, domain, appid 21 // appID returns "appid" or "domain.com:appid".
|
/external/wpa_supplicant_8/wpa_supplicant/examples/ |
udhcpd-p2p.conf | 88 option domain atherosowl.com 103 #opt domain
|
/device/google/cuttlefish_common/common/vsoc/lib/ |
typed_region_view.h | 54 bool Open(const char* domain) { 55 return RegionView::Open(LayoutType::region_name, domain); 66 static ViewType* GetInstance(const char* domain) { 69 if (!domain) { 75 auto& instance = instances[domain]; 80 if (!instance->Open(domain)) {
|
/development/tools/repo_pull/ |
gerrit.py | 59 domain = row[0] 68 credentials[domain] = (username, password) 78 def create_url_opener(cookie_file_path, domain): 84 username, password = credentials[domain] 88 auth_handler.add_password(domain, domain, username, password) 95 domain = urlparse(args.gerrit).netloc 98 return create_url_opener(args.gitcookies, domain) 100 print('error: Cannot find the domain "{}" in "{}". ' 101 .format(domain, args.gitcookies), file=sys.stderr [all...] |
/device/sample/apps/SampleEmailPolicy/src/com/android/email/policy/ |
EmailPolicy.java | 94 * The only argument (with the key FIND_PROVIDER) is a string containing the domain that the 96 * "MyEmailAddress@gmail.com", the domain will be "gmail.com". 98 * If no server information is provided for this domain, simply return Bundle.EMPTY. 99 * If server information is available for this domain, it can be returned in the following 146 * $domain - the value after the @ signin the email address the user entered 202 * Policy: For a known domain, configure to the servers for that domain 205 String domain = arguments.getString(FIND_PROVIDER); local 206 if (domain != null) { 207 domain = domain.toLowerCase() [all...] |
/external/perfetto/src/trace_processor/ |
clock_tracker.cc | 31 void ClockTracker::SyncClocks(ClockDomain domain, 34 ClockSnapshotVector& snapshots = clocks_[domain]; 43 if (domain == ClockDomain::kMonotonic) { 60 base::Optional<int64_t> ClockTracker::ToTraceTime(ClockDomain domain, 62 ClockSnapshotVector& snapshots = clocks_[domain];
|
/external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/lib/ |
librpc-tirpc.c | 26 int bound_socket(int domain, int type) 34 switch (domain) { 59 sock = socket(domain, type, 0);
|