HomeSort by relevance Sort by last modified time
    Searched defs:Policy (Results 1 - 25 of 45) sorted by null

1 2

  /external/chromium/chrome/browser/chromeos/
plugin_selection_policy.h 26 // executable path in the browser. It loads a policy file for
51 // Applies the current policy to the given path using the url to
52 // look up what the policy for that domain is. Returns true if the
65 // Initializes from the default policy file.
71 typedef std::vector<std::pair<bool, std::string> > Policy;
72 typedef std::map<std::string, Policy> PolicyMap;
  /frameworks/base/tools/preload/
Policy.java 22 * Policy that governs which classes are preloaded.
24 public class Policy {
29 private Policy() {}
  /external/chromium/net/base/
backoff_entry.h 15 // on requests to a given resource, given a back-off policy.
21 // The set of parameters that define a back-off policy.
22 struct Policy {
45 // Lifetime of policy must enclose lifetime of BackoffEntry. The
47 explicit BackoffEntry(const Policy* const policy);
55 // be rejected at the present time due to exponential back-off policy.
68 // had for Policy::entry_lifetime_ms_.
87 const Policy* const policy_;
  /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;
27 import com.android.internal.policy.impl.PhoneLayoutInflater;
28 import com.android.internal.policy.impl.PhoneWindow;
29 import com.android.internal.policy.impl.PhoneWindowManager;
35 // Simple implementation of the policy interface that spawns the right
37 public class Policy implements IPolicy {
41 "com.android.internal.policy.impl.PhoneLayoutInflater",
42 "com.android.internal.policy.impl.PhoneWindow",
43 "com.android.internal.policy.impl.PhoneWindow$1"
    [all...]
  /libcore/luni/src/main/java/java/security/
Policy.java 25 public abstract class Policy {
31 public Policy() { }
33 public static Policy getInstance(String type, Policy.Parameters params) throws NoSuchAlgorithmException { return null; }
35 public static Policy getInstance(String type, Policy.Parameters params, String provider) throws NoSuchProviderException, NoSuchAlgorithmException { return null; }
37 public static Policy getInstance(String type, Policy.Parameters params, Provider provider) throws NoSuchAlgorithmException { return null; }
39 public Policy.Parameters getParameters() { return null; }
55 public static Policy getPolicy() { return null;
    [all...]
  /external/clang/unittests/AST/
DeclPrinterTest.cpp 35 PrintingPolicy Policy = Context->getPrintingPolicy();
36 Policy.TerseOutput = true;
37 D->print(Out, Policy, /*Indentation*/ 0, /*PrintInstantiation*/ false);
    [all...]
  /external/clang/include/clang/Sema/
AnalysisBasedWarnings.h 35 class Policy {
42 Policy();
48 Policy DefaultPolicy;
92 void IssueWarnings(Policy P, FunctionScopeInfo *fscope,
95 Policy getDefaultPolicy() { return DefaultPolicy; }
  /libcore/dalvik/src/main/java/dalvik/system/
BlockGuard.java 53 public interface Policy {
70 * Returns the policy bitmask, for shipping over Binder calls
71 * to remote threads/processes and reinstantiating the policy
110 return "policy=" + mPolicyState + " violation=" + mPolicyViolated +
116 * The default, permissive policy that doesn't prevent any operations.
118 public static final Policy LAX_POLICY = new Policy() {
127 private static ThreadLocal<Policy> threadPolicy = new ThreadLocal<Policy>() {
128 @Override protected Policy initialValue()
    [all...]
  /tools/motodev/src/plugins/installer/src/com/motorola/studio/android/installer/
InstallerPlugin.java 27 import org.eclipse.equinox.p2.ui.Policy;
31 import com.motorola.studio.android.installer.policy.MotodevPolicy;
67 context.registerService(Policy.class.getName(), new MotodevPolicy(), serviceProperties);
  /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.
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/service/
EmailServiceProxy.java 31 import com.android.emailcommon.provider.Policy;
226 bundle.setClassLoader(Policy.class.getClassLoader());
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/76/1/.cp/ant_tasks/
resources-ant.jar 
  /external/clang/lib/AST/
DeclPrinter.cpp 29 PrintingPolicy Policy;
40 DeclPrinter(raw_ostream &Out, const PrintingPolicy &Policy,
42 : Out(Out), Policy(Policy), Indentation(Indentation),
94 void Decl::print(raw_ostream &Out, const PrintingPolicy &Policy,
96 DeclPrinter Printer(Out, Policy, Indentation, PrintInstantiation);
131 raw_ostream &Out, const PrintingPolicy &Policy,
134 (*Begin)->print(Out, Policy, Indentation);
143 PrintingPolicy SubPolicy(Policy);
145 TD->print(Out, Policy, Indentation)
    [all...]
ASTDiagnostic.cpp 378 /// Policy - Used during expression printing.
379 PrintingPolicy Policy;
    [all...]
TypePrinter.cpp 33 PrintingPolicy &Policy;
37 explicit IncludeStrongLifetimeRAII(PrintingPolicy &Policy)
38 : Policy(Policy), Old(Policy.SuppressStrongLifetime) {
39 Policy.SuppressStrongLifetime = false;
43 Policy.SuppressStrongLifetime = Old;
48 PrintingPolicy &Policy;
52 explicit ParamPolicyRAII(PrintingPolicy &Policy)
53 : Policy(Policy), Old(Policy.SuppressSpecifiers)
    [all...]
StmtPrinter.cpp 35 PrintingPolicy Policy;
39 const PrintingPolicy &Policy,
41 : OS(os), IndentLevel(Indentation), Helper(helper), Policy(Policy) {}
44 PrintStmt(S, Policy.Indentation);
121 D->print(OS, Policy, IndentLevel);
130 Decl::printGroup(Decls.data(), Decls.size(), OS, Policy, IndentLevel);
182 (*it)->printPretty(OS, Policy);
314 PrintingPolicy SubPolicy(Policy);
333 Qualifier->print(OS, Policy);
    [all...]
  /external/clang/lib/Sema/
Sema.cpp 64 PrintingPolicy Policy = Context.getPrintingPolicy();
65 Policy.Bool = Context.getLangOpts().Bool;
66 if (!Policy.Bool) {
68 Policy.Bool = BoolMacro->isObjectLike() &&
74 return Policy;
    [all...]
AnalysisBasedWarnings.cpp 10 // This file defines analysis_warnings::[Policy,Executor].
    [all...]
SemaCodeComplete.cpp     [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";
44 public static final Uri CONTENT_URI = Uri.parse(EmailContent.CONTENT_URI + "/policy");
48 /* Small offset (2 minutes) added to policy expiration to make user testing easier. */
118 public static final Policy NO_POLICY = new Policy();
126 public Policy() {
134 public static Policy restorePolicyWithId(Context context, long id)
    [all...]
  /external/clang/test/CodeGenCXX/
mangle.cpp 298 struct Policy { };
300 template<typename T, typename = Policy<P, true> > class Alloc
  /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/clang/lib/Analysis/
CFG.cpp     [all...]
  /external/webkit/Source/WebKit/qt/tests/qwebframe/
tst_qwebframe.cpp 74 Q_ENUMS(Policy Strategy)
78 enum Policy {
282 Q_INVOKABLE void myInvokableWithEnumArg(Policy policy) {
284 m_actuals << policy; local
286 Q_INVOKABLE void myInvokableWithQualifiedEnumArg(MyQObject::Policy policy) {
288 m_actuals << policy; local
290 Q_INVOKABLE Policy myInvokableReturningEnum() {
294 Q_INVOKABLE MyQObject::Policy myInvokableReturningQualifiedEnum()
    [all...]
  /packages/apps/Exchange/exchange2/src/com/android/exchange/
EasSyncService.java 50 import com.android.emailcommon.provider.Policy;
531 // TODO Need to catch other kinds of errors (e.g. policy) For now, report code.
1378 Policy policy = pp.getPolicy(); local
1827 Policy policy = Policy.restorePolicyWithId(mContext, mAccount.mPolicyKey); local
    [all...]

Completed in 418 milliseconds

1 2