HomeSort by relevance Sort by last modified time
    Searched refs:Policy (Results 101 - 125 of 223) sorted by null

1 2 3 45 6 7 8 9

  /external/owasp/sanitizer/src/tests/org/owasp/html/
Benchmark.java 143 HtmlSanitizer.sanitize(html, new HtmlSanitizer.Policy() {
HtmlSanitizerTest.java 353 HtmlSanitizer.Policy policy = new HtmlPolicyBuilder() local
379 HtmlSanitizer.sanitize(html, policy);
  /device/asus/fugu/libaudio/
Android.mk 18 # Library used by both policy manager and the audioHAL
94 # Audio Policy Manager
  /external/ppp/pppd/plugins/radius/etc/
dictionary.microsoft 15 ATTRIBUTE MS-MPPE-Encryption-Policy 7 string Microsoft
  /external/clang/include/clang/AST/
Type.h 469 std::string getAsString(const PrintingPolicy &Policy) const;
471 bool isEmptyWhenPrinted(const PrintingPolicy &Policy) const;
472 void print(raw_ostream &OS, const PrintingPolicy &Policy,
871 std::string getAsString(const PrintingPolicy &Policy) const;
873 void print(raw_ostream &OS, const PrintingPolicy &Policy,
875 print(split(), OS, Policy, PlaceHolder);
878 const PrintingPolicy &policy, const Twine &PlaceHolder) {
879 return print(split.Ty, split.Quals, OS, policy, PlaceHolder);
882 raw_ostream &OS, const PrintingPolicy &policy,
886 const PrintingPolicy &Policy) const
    [all...]
NestedNameSpecifier.h 198 void print(raw_ostream &OS, const PrintingPolicy &Policy) const;
  /packages/apps/Email/src/com/android/email/activity/setup/
AccountSettingsFragment.java 60 import com.android.emailcommon.provider.Policy;
104 @SuppressWarnings("unused") // temporarily unused pending policy UI
106 @SuppressWarnings("unused") // temporarily unused pending policy UI
462 Policy.restorePolicyWithId(getContext(), account.mPolicyKey, mObserver);
585 * From a Policy, create and return an ArrayList of Strings that describe (simply) those
589 @SuppressWarnings("unused") // temporarily unused pending policy UI
590 private ArrayList<String> getSystemPoliciesList(Policy policy) {
593 if (policy.mPasswordMode != Policy.PASSWORD_MODE_NONE)
    [all...]
  /external/clang/lib/AST/
NestedNameSpecifier.cpp 226 const PrintingPolicy &Policy) const {
228 getPrefix()->print(OS, Policy);
256 PrintingPolicy InnerPolicy(Policy);
DeclTemplate.cpp 741 raw_ostream &OS, const PrintingPolicy &Policy, bool Qualified) const {
742 NamedDecl::getNameForDiagnostic(OS, Policy, Qualified);
746 OS, TemplateArgs.data(), TemplateArgs.size(), Policy);
    [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/llvm/include/llvm/CodeGen/
MachineScheduler.h 63 // like to configure the GenericScheduler's policy for a given scheduler region,
64 // including scheduling direction and register pressure tracking policy, can do
68 // overrideSchedPolicy(MachineSchedPolicy &Policy,
72 // Policy.<Flag> = true;
148 /// Define a generic scheduling policy for targets that don't provide their own
174 /// Optionally override the per-region scheduling policy.
756 /// Policy for scheduling the next instruction in the candidate's zone.
787 CandPolicy Policy;
804 SchedCandidate(const CandPolicy &policy)
805 : Policy(policy), SU(nullptr), Reason(NoCand), RepeatReasonSet(0) {
    [all...]
  /libcore/jsr166-tests/src/test/java/jsr166/
JSR166TestCase.java 33 import java.security.Policy;
530 * A security policy where new permissions can be dynamically added
533 public static class AdjustablePolicy extends java.security.Policy {
560 * Returns a policy containing all the permissions we ever need.
562 public static Policy permissivePolicy() {
    [all...]
  /external/clang/lib/Sema/
Sema.cpp 55 PrintingPolicy Policy = Context.getPrintingPolicy();
56 Policy.Bool = Context.getLangOpts().Bool;
57 if (!Policy.Bool) {
60 Policy.Bool = BoolMacro->isObjectLike() &&
66 return Policy;
    [all...]
  /frameworks/base/core/java/android/os/
StrictMode.java 128 * enable/disable policy.
153 // Thread-policy:
180 // Process-policy:
225 // Used for both process and thread policy:
307 * {@link StrictMode} policy applied to a certain thread.
309 * <p>The policy is enabled by {@link #setThreadPolicy}. The current policy
319 * The default, lax policy which doesn't catch anything.
346 * StrictMode.ThreadPolicy policy = new StrictMode.ThreadPolicy.Builder()
350 * StrictMode.setThreadPolicy(policy);
789 final BlockGuard.Policy policy = BlockGuard.getThreadPolicy(); local
1450 VmPolicy policy = getVmPolicy(); local
1750 BlockGuard.Policy policy = BlockGuard.getThreadPolicy(); local
1937 BlockGuard.Policy policy = BlockGuard.getThreadPolicy(); local
1949 BlockGuard.Policy policy = BlockGuard.getThreadPolicy(); local
1961 BlockGuard.Policy policy = BlockGuard.getThreadPolicy(); local
2068 public final int policy; field in class:StrictMode.ViolationInfo
    [all...]
  /external/chromium_org/components/invalidation/
gcm_network_channel.cc 34 // Register backoff policy.
35 const net::BackoffEntry::Policy kRegisterBackoffPolicy = {
406 const net::BackoffEntry::Policy* policy) {
407 register_backoff_entry_.reset(new net::BackoffEntry(policy));
  /external/chromium_org/google_apis/gcm/engine/
connection_factory_impl.cc 46 const net::BackoffEntry::Policy& backoff_policy,
305 const net::BackoffEntry::Policy* const policy) {
306 return scoped_ptr<net::BackoffEntry>(new net::BackoffEntry(policy));
registration_request.cc 102 const net::BackoffEntry::Policy& backoff_policy,
unregistration_request.cc 115 const net::BackoffEntry::Policy& backoff_policy,
unregistration_request_unittest.cc 27 // Backoff policy for testing registration request.
28 const net::BackoffEntry::Policy kDefaultBackoffPolicy = {
  /external/llvm/lib/CodeGen/
MachineScheduler.cpp 834 // ScheduleDAGMI initializes SchedImpl's per-region policy.
    [all...]
  /external/owasp/sanitizer/src/main/org/owasp/html/
HtmlPolicyBuilder.java 52 * To create a policy, first construct an instance of this class; then call
58 * // Define the policy.
59 * Function&lt;HtmlStreamEventReceiver, HtmlSanitizer.Policy&gt; policy
66 * HtmlSanitizer.sanitize(myHtml, policy.apply(myHtmlStreamRenderer));
73 * There is a {@link HtmlPolicyBuilder#allowStandardUrlProtocols canned policy}
82 * Use a custom element or attribute policy to allow through
97 * own {@link ElementPolicy element policy} or
98 * {@link AttributePolicy attribute policy} when calling
100 * E.g. to convert headers into {@code <div>}s, you could use an element policy
604 AttributePolicy policy = ape.getValue(); local
612 AttributePolicy policy = AttributePolicy.Util.join( local
636 private AttributePolicy policy = AttributePolicy.IDENTITY_ATTRIBUTE_POLICY; field in class:HtmlPolicyBuilder.AttributeBuilder
    [all...]
  /packages/apps/Email/tests/src/com/android/email/provider/
ProviderTests.java 51 import com.android.emailcommon.provider.Policy;
    [all...]
  /external/chromium_org/components/gcm_driver/
gcm_client_impl.h 66 const net::BackoffEntry::Policy& backoff_policy,
  /external/chromium_org/remoting/host/
chromoting_host.cc 34 const net::BackoffEntry::Policy kDefaultBackoffPolicy = {
  /external/clang/lib/Analysis/
CFG.cpp     [all...]

Completed in 1398 milliseconds

1 2 3 45 6 7 8 9