HomeSort by relevance Sort by last modified time
    Searched full:domains (Results 1 - 25 of 259) sorted by null

1 2 3 4 5 6 7 8 91011

  /packages/apps/Email/src/org/apache/james/mime4j/field/address/
DomainList.java 31 private ArrayList<String> domains; field in class:DomainList
34 * @param domains An ArrayList that contains only String objects.
35 * @param dontCopy true iff it is not possible for the domains ArrayList to be modified by someone else.
37 public DomainList(ArrayList<String> domains, boolean dontCopy) {
38 if (domains != null)
39 this.domains = (dontCopy ? domains : new ArrayList<String>(domains));
41 this.domains = new ArrayList<String>(0);
48 return domains.size();
    [all...]
  /external/sepolicy/
attributes 39 # All domains that can override MLS restrictions.
47 # Domains that are allowed all permissions ("unconfined").
50 # All domains used for apps.
53 # All domains used for apps with network access.
56 # All domains used for apps with bluetooth access.
59 # All domains used for binder service domains.
bluetooth.te 0 # Domains that can create and use bluetooth sockets.
servicemanager.te 11 # created by other domains. It never passes its own references
zygote.te 9 # Switch SELinux context to app domains.
app.te 2 # Domains for apps that do not run with one of the predefined
77 # Rules for all app domains.
  /external/mdnsresponder/mDNSPosix/
nss_mdns.conf 3 # Applicable domains
  /external/chromium/chrome/common/extensions/docs/examples/api/cookies/
manager.html 100 // Returns a sorted list of cookie domains that match |filter|. If |filter| is
101 // null, returns all domains.
185 var domains = cache.getDomains(filter);
187 select("#filter_count").innerText = domains.length;
191 if (domains.length) {
194 button.innerText = "delete all " + domains.length;
201 domains.forEach(function(domain) {
285 Showing <span id="filter_count"></span> of <span id="total_count"></span> cookie domains.
  /libcore/luni/src/main/java/java/security/
DomainCombiner.java 31 * the protection domains of the current execution thread
33 * the protection domains of the parent thread, may be {@code null}.
  /external/apache-harmony/security/src/test/api/java/tests/api/java/security/
DomainCombinerTest.java 58 // execution domains
70 ProtectionDomain[] domains = new ProtectionDomain[] { new ProtectionDomain( local
73 AccessControlContext parent = new AccessControlContext(domains);
  /external/llvm/lib/CodeGen/
ExecutionDepsFix.cpp 15 // transferring data between integer and floating point domains. ARM cores
36 /// of execution domains.
44 /// into one of more execution domains. There is a separate collapsed
46 /// domains. A register value is initially created in a single execution
49 /// domains.
55 // Bitmask of available domains. For an open DomainValue, it is the still
56 // possible domains for collapsing. For a collapsed DomainValue it is the
57 // domains where the register is available for free.
69 // track of the domains where the registers are already available.
87 // Return bitmask of domains that are available and in mask
    [all...]
  /external/bluetooth/glib/docs/reference/glib/tmpl/
shell.sgml 33 error domains.
  /external/bluetooth/glib/gio/
gioerror.h 39 * See #GError for more information on error domains.
  /external/oprofile/doc/
opcontrol.1.in 155 .BI "--active-domains="<list>
160 the list of active domains is optional. (e.g. --active-domains=2,5,6 and
161 --active-domains=0,2,5,6 are equivalent)
  /frameworks/ex/common/tools/
make-iana-tld-pattern.py 7 * Regular expression to match all IANA top-level domains.
18 * Regular expression to match all IANA top-level domains for WEB_URL.
132 domains = f.readlines() variable
137 for domain in domains:
  /hardware/ti/omap3/omx/system/src/openmax_il/perf/src/
perf_print.c 66 char const * const * domains, *missing, *separator; local
74 domains = (char const * const *) domains_normal;
81 domains = (char const * const *) domains_csv;
119 (eModule & PERF_ModuleAudioDecode) ? domains[0] : missing,
120 (eModule & PERF_ModuleVideoDecode) ? domains[1] : missing,
121 (eModule & PERF_ModuleImageDecode) ? domains[2] : missing,
122 (eModule & PERF_ModuleAudioEncode) ? domains[3] : missing,
123 (eModule & PERF_ModuleVideoEncode) ? domains[4] : missing,
124 (eModule & PERF_ModuleImageEncode) ? domains[5] : missing,
  /external/apache-http/src/org/apache/http/impl/cookie/
NetscapeDomainHandler.java 61 + "special domains");
75 * top level domains defined by the Netscape cookie specification.
  /external/chromium/net/http/
http_auth_filter.h 31 // Explicit whitelists of domains are set via SetWhitelist().
  /external/dnsmasq/
setup.html 168 Dnsmasq has the ability to direct DNS queries for certain domains to
178 private domains within the company, and dnsmasq allows this. Assuming
187 <H2>Local domains.</H2>
188 Sometimes people have local domains which they do not want forwarded
196 <H2>Defeating wildcards in top level domains.</H2>
198 .net top level domains. The effect of this is that queries for
  /external/chromium/chrome/common/
launchd_mac.h 20 // Domains map to NSSearchPathDomainMask so Foundation does not need to be
  /external/dnsmasq/contrib/openvpn/
README 36 > search domains intact), but I'm hoping that I'm just missing some key
  /external/nist-sip/java/gov/nist/javax/sip/clientauthutils/
CredentialsCache.java 22 * user for a number of domains. The Hashtable value of the mapping is a
  /external/webkit/Source/WebCore/page/
OriginAccessEntry.h 47 // If host is empty string and SubdomainSetting is AllowSubdomains, the entry will match all domains in the specified protocol.
  /external/webkit/Source/WebKit2/Shared/Plugins/Netscape/
NetscapePluginModule.h 56 // Return a list of domains for which the plug-in has data stored.
  /frameworks/base/tests/CoreTests/android/core/
InetAddrTest.java 28 * Tests InetAddr class by checking methods to resolve domains to IP addresses

Completed in 1568 milliseconds

1 2 3 4 5 6 7 8 91011