HomeSort by relevance Sort by last modified time
    Searched refs:Policy (Results 26 - 50 of 169) sorted by null

12 3 4 5 6 7

  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/math/policies/
policy.hpp 174 // Begin by defining policy types for error handling:
194 // Policy types for internal promotion:
200 // Policy types for discrete quantiles:
224 // Define the names for each possible policy:
330 // policy<> class will have when modified for forwarding:
365 // Now define the policy type with enough arguments to handle all
381 struct policy struct in namespace:boost::math::policies
447 struct policy<default_policy, default_policy, default_policy, default_policy, default_policy, default_policy, default_policy, default_policy, default_policy, default_policy, default_policy> struct in namespace:boost::math::policies
472 struct policy<detail::forwarding_arg1, detail::forwarding_arg2, default_policy, default_policy, default_policy, default_policy, default_policy, default_policy, default_policy, default_policy, default_policy> struct in namespace:boost::math::policies
496 template <class Policy,
    [all...]
  /packages/apps/Exchange/src/com/android/exchange/adapter/
ProvisionParser.java 24 import com.android.emailcommon.provider.Policy;
47 private Policy mPolicy = null;
60 public Policy getPolicy() {
87 sb.append(Policy.POLICY_STRING_DELIMITER);
91 * Complete setup of a Policy; we normalize it first (removing inconsistencies, etc.) and then
94 * policy documents, as all versions of the OS support the policies in xml documents).
96 private void setPolicy(Policy policy) {
97 policy.normalize();
99 if (policy.mDontAllowAttachments)
117 Policy policy = new Policy(); local
392 Policy policy = new Policy(); local
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
ClassLoaderTest.java 24 import java.security.Policy;
41 Policy back = Policy.getPolicy();
43 Policy.setPolicy(plc);
54 Policy.setPolicy(back);
236 class DynamicPolicy extends Policy {
  /external/chromium_org/chrome/browser/extensions/updater/
request_queue.h 21 // retry requests with some backoff policy. Each request has a
31 // backoff policy and minimum backoff delay to determine when to
41 RequestQueue(const net::BackoffEntry::Policy* backoff_policy,
71 // applying the backoff policy to determine when to next try this request.
72 // If the policy results in a backoff delay smaller than |min_backoff_delay|,
79 // Change the backoff policy used by the queue.
80 void set_backoff_policy(const net::BackoffEntry::Policy* backoff_policy);
98 // The backoff policy used to determine backoff delays.
99 const net::BackoffEntry::Policy* backoff_policy_;
  /external/chromium_org/net/url_request/
url_request_throttler_test_support.h 18 explicit MockBackoffEntry(const BackoffEntry::Policy* const policy);
url_request_throttler_test_support.cc 11 MockBackoffEntry::MockBackoffEntry(const BackoffEntry::Policy* const policy)
12 : BackoffEntry(policy) {
  /external/clang/include/clang/Sema/
LocInfoType.h 53 const PrintingPolicy &Policy) const;
  /external/chromium_org/sync/notifier/
ack_tracker.h 42 const net::BackoffEntry::Policy* const)> CreateBackoffEntryCallback;
85 const net::BackoffEntry::Policy* const policy);
  /packages/apps/Email/src/com/android/email/
SecurityPolicy.java 44 import com.android.emailcommon.provider.Policy;
62 private Policy mAggregatePolicy;
74 * Get the security policy instance
101 * Compute the aggregate policy for all accounts that require it, and record it.
114 * @return a policy representing the strongest aggregate. If no policy sets are defined,
115 * a lightweight "nothing required" policy will be returned. Never null.
118 Policy computeAggregatePolicy() {
120 Policy aggregate = new Policy();
138 Policy policy = new Policy(); local
    [all...]
  /external/chromium_org/net/base/
backoff_entry_unittest.cc 14 BackoffEntry::Policy base_policy = { 0, 1000, 2.0, 0.0, 20000, 2000, false };
18 explicit TestBackoffEntry(const Policy* const policy)
19 : BackoffEntry(policy),
53 BackoffEntry::Policy never_expires_policy = base_policy;
89 BackoffEntry::Policy always_delay_policy = base_policy;
109 BackoffEntry::Policy no_store_policy = base_policy;
116 BackoffEntry::Policy lenient_policy = base_policy;
166 BackoffEntry::Policy always_delay_policy = base_policy;
203 BackoffEntry::Policy jittery_policy = base_policy
    [all...]
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
Policy.java 34 * The Policy class represents a set of security requirements that are associated with an Account.
38 public final class Policy extends EmailContent implements EmailContent.PolicyColumns, Parcelable {
40 public static final String TAG = "Email/Policy";
42 public static final String TABLE_NAME = "Policy";
46 CONTENT_URI = Uri.parse(EmailContent.CONTENT_URI + "/policy");
51 /* Small offset (2 minutes) added to policy expiration to make user testing easier. */
121 public static final Policy NO_POLICY = new Policy();
129 public Policy() {
137 public static Policy restorePolicyWithId(Context context, long id)
    [all...]
  /external/chromium/net/base/
backoff_entry_unittest.cc 14 BackoffEntry::Policy base_policy = { 0, 1000, 2.0, 0.0, 20000, 2000 };
18 explicit TestBackoffEntry(const Policy* const policy)
19 : BackoffEntry(policy),
51 BackoffEntry::Policy never_expires_policy = base_policy;
87 BackoffEntry::Policy no_store_policy = base_policy;
94 BackoffEntry::Policy lenient_policy = base_policy;
138 BackoffEntry::Policy jittery_policy = base_policy;
194 BackoffEntry::Policy lenient_policy = base_policy;
  /external/apache-harmony/security/src/test/impl/java.injected/java/security/
URIParameterTest.java 42 assertTrue(uriParameter instanceof Policy.Parameters);
  /external/chromium/chrome/browser/chromeos/
plugin_selection_policy.cc 41 // Initialize the policy on the FILE thread, since it reads from a
42 // policy file.
60 LOG(ERROR) << "Unable to read plugin policy file \""
68 map<string, Policy> policies;
69 Policy policy; local
82 LOG(ERROR) << "Plugin policy file error: 'allow' out of context.";
89 policy.push_back(make_pair(true, line));
94 LOG(ERROR) << "Plugin policy file error: 'deny' out of context.";
101 policy.push_back(make_pair(false, line))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/shadow/
ComposedShadowTreeWalker.h 45 enum Policy {
55 ComposedShadowTreeWalker(const Node*, Policy = CrossUpperBoundary, StartPolicy = CannotStartFromShadowBoundary);
126 Policy m_policy;
129 inline ComposedShadowTreeWalker::ComposedShadowTreeWalker(const Node* node, Policy policy, StartPolicy startPolicy)
131 , m_policy(policy)
  /external/clang/lib/AST/
TemplateName.cpp 128 TemplateName::print(raw_ostream &OS, const PrintingPolicy &Policy,
134 QTN->getQualifier()->print(OS, Policy);
140 DTN->getQualifier()->print(OS, Policy);
149 subst->getReplacement().print(OS, Policy, SuppressNNS);
  /frameworks/base/policy/src/com/android/internal/policy/impl/
Policy.java 17 package com.android.internal.policy.impl;
26 import com.android.internal.policy.IPolicy;
32 // Simple implementation of the policy interface that spawns the right
34 public class Policy implements IPolicy {
38 "com.android.internal.policy.impl.PhoneLayoutInflater",
39 "com.android.internal.policy.impl.PhoneWindow",
40 "com.android.internal.policy.impl.PhoneWindow$1",
41 "com.android.internal.policy.impl.PhoneWindow$DialogMenuCallback",
42 "com.android.internal.policy.impl.PhoneWindow$DecorView",
43 "com.android.internal.policy.impl.PhoneWindow$PanelFeatureState"
    [all...]
  /packages/apps/Email/src/com/android/email/activity/setup/
SetupData.java 25 import com.android.emailcommon.provider.Policy;
58 private Policy mPolicy;
149 public Policy getPolicy() {
153 public void setPolicy(Policy policy) {
154 mPolicy = policy;
155 mAccount.mPolicy = policy;
227 sb.append(":policy=");
  /external/chromium_org/third_party/WebKit/Source/weborigin/
SecurityOrigin.h 43 enum Policy {
145 Policy canShowNotifications() const;
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
ProtectionDomainTest.java 164 * policy.
167 TestPolicy policy = new TestPolicy(); local
168 // null set of permissions [must] force the PD to use Policy - for
171 policy.setTrackPD(pd);
173 Policy.setPolicy(policy);
176 Policy.setPolicy(null);
178 assertFalse(policy.getPdTracked());
183 * policy.
186 TestPolicy policy = new TestPolicy() local
    [all...]
  /external/chromium_org/tools/grit/grit/format/policy_templates/writers/
adml_writer.py 19 ''' Class for generating an ADML policy template. It is used by the
30 # describe the presentation of Policy-Groups and Policies.
47 def WritePolicy(self, policy):
48 '''Generates the ADML elements for a Policy.
61 policy: The Policy to generate ADML elements for.
63 policy_type = policy['type']
64 policy_name = policy['name']
65 if 'caption' in policy:
66 policy_caption = policy['caption'
    [all...]
  /development/samples/training/device-management-policy/src/com/example/training/deviceadmin/
Policy.java 28 public class Policy {
54 public Policy(Context context) {
64 * Saves the policy parameters.
117 * Getter for the policy administrator ComponentName object.
141 * Configure policy defined in the object.
161 // Deletes previously stored password policy.
  /external/clang/unittests/AST/
StmtPrinterTest.cpp 35 PrintingPolicy Policy = Context->getPrintingPolicy();
36 S->printPretty(Out, /*Helper*/ 0, Policy);
  /external/v8/src/
lithium.h 88 enum Policy {
113 explicit LUnallocated(Policy policy) : LOperand(UNALLOCATED, 0) {
114 Initialize(policy, 0, USED_AT_END);
117 LUnallocated(Policy policy, int fixed_index) : LOperand(UNALLOCATED, 0) {
118 Initialize(policy, fixed_index, USED_AT_END);
121 LUnallocated(Policy policy, Lifetime lifetime) : LOperand(UNALLOCATED, 0) {
122 Initialize(policy, 0, lifetime)
167 Policy policy() const { return PolicyField::decode(value_); } function in class:v8::internal::LUnallocated
    [all...]
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
JSR166TestCase.java 36 import java.security.Policy;
159 // Policy.setPolicy(permissivePolicy());
622 * Runs Runnable r with a security policy that permits precisely
632 Policy savedPolicy = Policy.getPolicy();
634 Policy.setPolicy(permissivePolicy());
639 Policy.setPolicy(savedPolicy);
642 Policy savedPolicy = Policy.getPolicy();
643 AdjustablePolicy policy = new AdjustablePolicy(permissions) local
    [all...]

Completed in 742 milliseconds

12 3 4 5 6 7