HomeSort by relevance Sort by last modified time
    Searched refs:domain (Results 76 - 100 of 827) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/python/cpython2/Modules/
nismodule.c 29 the default NIS domain.\n");
32 "match(key, map, domain = defaultdomain)\n\
34 key in the given map. Optionally domain can be specified but it\n\
35 defaults to the system default domain.\n");
38 "cat(map, domain = defaultdomain)\n\
39 Returns the entire map as a dictionary. Optionally domain can be\n\
40 specified but it defaults to the system default domain.\n");
43 "maps(domain = defaultdomain)\n\
44 Returns an array of all available NIS maps within a domain. If domain\n
146 char *domain; local
161 char *domain = NULL; local
193 char *domain = NULL; local
386 char *domain = NULL; local
    [all...]
  /external/python/cpython3/Modules/
nismodule.c 29 the default NIS domain.\n");
32 "match(key, map, domain = defaultdomain)\n\
34 key in the given map. Optionally domain can be specified but it\n\
35 defaults to the system default domain.\n");
38 "cat(map, domain = defaultdomain)\n\
39 Returns the entire map as a dictionary. Optionally domain can be\n\
40 specified but it defaults to the system default domain.\n");
43 "maps(domain = defaultdomain)\n\
44 Returns an array of all available NIS maps within a domain. If domain\n
142 char *domain; local
157 char *domain = NULL; local
200 char *domain = NULL; local
393 char *domain = NULL; local
    [all...]
  /external/ImageMagick/MagickCore/
policy.c 87 domain;
112 domain;
236 policy_info->domain=p->domain;
283 domain;
308 Strip domain from policy name (e.g. resource:map).
310 domain=UndefinedPolicyDomain;
316 domain=(PolicyDomain) ParseCommandOption(MagickPolicyDomainOptions,
334 if ((domain == UndefinedPolicyDomain) || (p->domain == domain)
84 domain; member in struct:_PolicyInfo
109 domain; member in struct:_PolicyMapInfo
276 domain; local
672 *domain; local
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/
hlo_sharding_metadata.cc 27 // AssignmentKind and kUnassignedDevice are used during tuple domain sharding
78 // Domain(device=None, device=0) ->
81 // Domain(device=0, device=None)
85 // Domain(device=None, device=0) -> Domain(device=0, device=None)
87 // Which is a so called empty domain.
88 // In the case above, crossing an empty domain which was transiting through
89 // device 0, requires the normalization phase to fixup the empty domain by
95 const DomainMetadata::Domain& domain) {
509 HloInstruction* domain = local
    [all...]
hlo_domain_verifier.cc 38 // avalable domain types.
47 // The caller specified no domain kinds, collect all the ones available.
66 VLOG(4) << "Running HLO Domain Verifier";
70 // First create the domain instruciton sets. A domain instruction set is
74 // Verify every domain populated within the map.
75 for (auto& domain : domain_map->GetDomains()) {
76 TF_RETURN_IF_ERROR(VerifyDomain(*domain).status());
90 const DomainMetadata::Domain& domain) {
    [all...]
  /external/u-boot/arch/arm/mach-imx/
rdc-sema.c 23 * Intial value or this peripheral is assigned to only one domain
32 * Check the peripheral read / write access permission on Domain [dom_id].
112 u32 domain = (p & RDC_DOMAIN_MASK) >> RDC_DOMAIN_SHIFT_BASE; local
114 /* No domain assigned */
115 if (domain == 0)
118 reg |= domain;
120 share_count = (domain & 0x3)
121 + ((domain >> 2) & 0x3)
122 + ((domain >> 4) & 0x3)
123 + ((domain >> 6) & 0x3)
159 u32 domain = (p & RDC_DOMAIN_MASK) >> RDC_DOMAIN_SHIFT_BASE; local
    [all...]
  /external/webrtc/webrtc/libjingle/xmpp/
jid_unittest.cc 19 EXPECT_EQ("dude", jid.domain());
31 EXPECT_EQ("dude", jid.domain());
43 EXPECT_EQ("dude", jid.domain());
55 EXPECT_EQ("dude", jid.domain());
67 EXPECT_EQ("", jid.domain());
79 EXPECT_EQ("", jid.domain());
91 EXPECT_EQ("", jid.domain());
103 EXPECT_EQ("muchat", jid.domain());
115 EXPECT_EQ("muchat", jid.domain());
  /bionic/libc/dns/resolv/
res_query.c 129 const char *name, /* domain name */
223 const char *name, /* domain name */
228 const char *cp, * const *domain; local
278 * the domain stuff is tried. Will have a better
285 for (domain = (const char * const *)statp->dnsrch;
286 *domain && !done;
287 domain++) {
290 if (domain[0][0] == '\0' ||
291 (domain[0][0] == '.' && domain[0][1] == '\0')
    [all...]
  /external/v8/src/inspector/build/
generate_protocol_externs.py 118 for domain in domains:
119 domain_name = domain["domain"]
120 if "types" in domain:
121 for type in domain["types"]:
125 for domain in domains:
126 domain_name = domain["domain"]
132 if "commands" in domain:
133 for command in domain["commands"]
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
cookielib.py 459 known_attrs = ("expires", "domain", "path", "secure",
498 """Return True if text is a host domain name."""
513 """Return True if domain A domain-matches domain B, according to RFC 2965.
515 A and B may be host domain names or IP addresses.
521 be case-insensitive.) Host A's name domain-matches host B's if
527 x.y.com domain-matches .Y.com but not Y.com.)
529 Note that domain-match is not a commutative operation: a.b.c.com
530 domain-matches .c.com, but not the reverse.
    [all...]
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...]
  /external/python/cpython2/Lib/
cookielib.py 459 known_attrs = ("expires", "domain", "path", "secure",
514 """Return True if text is a host domain name."""
529 """Return True if domain A domain-matches domain B, according to RFC 2965.
531 A and B may be host domain names or IP addresses.
537 be case-insensitive.) Host A's name domain-matches host B's if
543 x.y.com domain-matches .Y.com but not Y.com.)
545 Note that domain-match is not a commutative operation: a.b.c.com
546 domain-matches .c.com, but not the reverse
    [all...]
gettext.py 497 def find(domain, localedir=None, languages=None, all=0):
524 mofile = os.path.join(localedir, lang, 'LC_MESSAGES', '%s.mo' % domain)
537 def translation(domain, localedir=None, languages=None,
541 mofiles = find(domain, localedir, languages, all=1)
545 raise IOError(ENOENT, 'No translation file found for domain', domain)
568 def install(domain, localedir=None, unicode=False, codeset=None, names=None):
569 t = translation(domain, localedir, fallback=True, codeset=codeset)
578 # current global domain, `messages' used for compatibility w/ GNU gettext
582 def textdomain(domain=None)
    [all...]
  /external/python/cpython3/Include/
pymem.h 35 unsigned int domain,
44 unsigned int domain,
56 unsigned int domain,
196 /* Get the memory block allocator of the specified domain. */
197 PyAPI_FUNC(void) PyMem_GetAllocator(PyMemAllocatorDomain domain,
200 /* Set the memory block allocator of the specified domain.
205 For the PYMEM_DOMAIN_RAW domain, the allocator must be thread-safe: the GIL
211 PyAPI_FUNC(void) PyMem_SetAllocator(PyMemAllocatorDomain domain,
234 /* Set the memory allocator of the specified domain to the default.
236 Return on success, or return -1 if the domain is unknown. *
    [all...]
  /external/linux-kselftest/tools/testing/selftests/net/
msg_zerocopy.c 184 static bool do_sendmsg(int fd, struct msghdr *msg, bool do_zerocopy, int domain)
197 if (domain == PF_RDS) {
219 if (do_zerocopy && domain == PF_RDS) {
295 static void setup_sockaddr(int domain, const char *str_addr,
301 switch (domain) {
319 error(1, 0, "illegal domain");
323 static int do_setup_tx(int domain, int type, int protocol)
327 fd = socket(domain, type, protocol);
335 if (domain != PF_PACKET && domain != PF_RDS
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
gettext.py 424 def find(domain, localedir=None, languages=None, all=0):
451 mofile = os.path.join(localedir, lang, 'LC_MESSAGES', '%s.mo' % domain)
464 def translation(domain, localedir=None, languages=None,
468 mofiles = find(domain, localedir, languages, all=1)
472 raise IOError(ENOENT, 'No translation file found for domain', domain)
495 def install(domain, localedir=None, unicode=False, codeset=None, names=None):
496 t = translation(domain, localedir, fallback=True, codeset=codeset)
505 # current global domain, `messages' used for compatibility w/ GNU gettext
509 def textdomain(domain=None):
    [all...]
  /external/grpc-grpc/src/core/lib/iomgr/
error_cfstream.cc 37 CFErrorDomain domain = CFErrorGetDomain((error)); local
40 CFStringGetCString(domain, buf_domain, MAX_ERROR_DESCRIPTION,
44 gpr_asprintf(&error_msg, "%s (error domain:%s, code:%ld, description:%s)",
socket_factory_posix.h 31 int (*socket)(grpc_socket_factory* factory, int domain, int type,
56 int grpc_socket_factory_socket(grpc_socket_factory* factory, int domain,
  /external/ltp/include/old/
old_safe_net.h 30 #define SAFE_SOCKET(cleanup_fn, domain, type, protocol) \
31 safe_socket(__FILE__, __LINE__, (cleanup_fn), domain, type, protocol)
  /external/python/cpython3/Lib/
gettext.py 474 def find(domain, localedir=None, languages=None, all=False):
501 mofile = os.path.join(localedir, lang, 'LC_MESSAGES', '%s.mo' % domain)
514 def translation(domain, localedir=None, languages=None,
518 mofiles = find(domain, localedir, languages, all=True)
524 'No translation file found for domain', domain)
550 def install(domain, localedir=None, codeset=None, names=None):
551 t = translation(domain, localedir, fallback=True, codeset=codeset)
560 # current global domain, `messages' used for compatibility w/ GNU gettext
564 def textdomain(domain=None)
    [all...]
  /external/skia/src/gpu/
GrTextureAdjuster.cpp 135 SkRect domain; local
138 proxy.get(), filterOrNullForBicubic, &domain);
150 proxy.get(), &kBilerp, &domain);
154 (domain.fLeft <= domain.fRight && domain.fTop <= domain.fBottom));
156 std::move(proxy), textureMatrix, domainMode, domain, filterOrNullForBicubic);
  /external/skqp/src/gpu/
GrTextureAdjuster.cpp 121 SkRect domain; local
140 proxy.get(), filterOrNullForBicubic, &domain);
152 proxy.get(), &kBilerp, &domain);
156 (domain.fLeft <= domain.fRight && domain.fTop <= domain.fBottom));
158 domain, filterOrNullForBicubic);
  /external/tensorflow/tensorflow/compiler/xla/service/llvm_ir/
alias_analysis.cc 95 // so that when functions get inlined, we continue using the one domain,
100 // same LLVM module, they'll have the same alias scope domain. This isn't a
103 metadata_builder.createAliasScopeDomain("XLA global AA domain");
109 const BufferAllocation::Slice& buffer_slice, llvm::MDNode* domain) {
116 llvm::MDBuilder metadata_builder(domain->getContext());
118 "buffer: " + buffer_slice.ToString(), domain);
119 llvm::MDNode* scope_list = llvm::MDNode::get(domain->getContext(), scope);
124 const BufferAllocation::Slice& buffer_slice, llvm::MDNode* domain,
196 llvm::MDBuilder metadata_builder(domain->getContext());
200 "buffer: " + noalias_slice.ToString(), domain);
    [all...]
alias_analysis.h 44 // Returns a unique alias domain for this emitter.
49 const BufferAllocation::Slice& buffer_slice, llvm::MDNode* domain);
55 // |domain| corresponds to the alias scope domain as documented at
60 const BufferAllocation::Slice& buffer_slice, llvm::MDNode* domain,
73 // Holds the alias domain for this computation.
  /external/u-boot/arch/arm/dts/
keystone-clocks.dtsi 169 reg-names = "control", "domain";
170 domain-id = <0>;
180 reg-names = "control", "domain";
181 domain-id = <0>;
190 reg-names = "control", "domain";
191 domain-id = <0>;
201 reg-names = "control", "domain";
202 domain-id = <1>;
211 reg-names = "control", "domain";
212 domain-id = <1>
    [all...]

Completed in 1448 milliseconds

1 2 34 5 6 7 8 91011>>