/external/clang/lib/Parse/ |
ParseExprCXX.cpp | [all...] |
/cts/tests/admin/src/android/admin/cts/ |
DevicePolicyManagerTest.java | 23 import android.app.NotificationManager.Policy; [all...] |
/development/samples/training/device-management-policy/src/com/example/training/deviceadmin/ |
PolicySetupActivity.java | 37 * screens to the user -- a screen for configuring device administration policy and another screen 38 * for viewing configured policy. When it is detected that the screen-lock password satisfies 39 * the password strength required by the policy, the user is sent to an Activity containing 49 // UI controls in policy setup screen. 54 private Policy mPolicy; 60 mPolicy = new Policy(this); 118 // Initialize policy set up screen. 143 // Read previously saved policy and populate on the UI. 160 // Initialize policy viewing screen. 165 // Read previously saved policy and populate on the UI [all...] |
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Ip4Dxe/ |
Ip4Config2Nv.c | 390 EFI_IP4_CONFIG2_POLICY Policy;
421 // Get the Policy info.
428 &Policy
434 if (Policy == Ip4Config2PolicyStatic) {
436 } else if (Policy == Ip4Config2PolicyDhcp) {
594 Ip4NvData->Policy = Ip4Config2PolicyDhcp;
600 &Ip4NvData->Policy
609 Ip4NvData->Policy = Ip4Config2PolicyStatic;
686 &Ip4NvData->Policy
[all...] |
Ip4Config2Impl.c | 89 Update the current policy to NewPolicy. During the transition
94 @param[in] NewPolicy The new policy to be updated to.
454 if ((Instance->Dhcp4Handle != NULL) || (Instance->Policy != Ip4Config2PolicyDhcp)) {
456 // The DHCP4 child is already created or the policy is no longer DHCP.
1111 The work function is to set the general configuration policy for the EFI IPv4 network
1113 The policy will affect other configuration settings.
1119 @retval EFI_INVALID_PARAMETER The to be set policy is invalid.
1121 @retval EFI_ABORTED The new policy equals the current policy. [all...] |
/device/sample/apps/SampleEmailPolicy/ |
Android.mk | 17 # This is the makefile for the Email Policy package contained elsewhere in this sample.
|
/external/python/cpython3/Lib/email/ |
_policybase.py | 0 """Policy framework for the email package. 12 'Policy', 20 """Policy Object basic framework. 24 managed by the Policy object. The constructor will then allow 42 """Create new Policy, possibly overriding some defaults. 112 class Policy(_PolicyBase, metaclass=abc.ABCMeta): 117 Policy objects as parameters. A Policy object contains a set of values and 123 Any valid attribute may be overridden when a Policy is created by passing 124 it as a keyword argument to the constructor. Policy objects are immutable [all...] |
/device/linaro/bootloader/edk2/NetworkPkg/HttpBootDxe/ |
HttpBootDhcp4.c | 747 This function will switch the IP4 configuration policy to Static.
751 @retval EFI_SUCCESS The policy is already configured to static.
760 EFI_IP4_CONFIG2_POLICY Policy;
772 &Policy
778 if (Policy != Ip4Config2PolicyStatic) {
779 Policy = Ip4Config2PolicyStatic;
784 &Policy
|
/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, 70 // Policy.<Flag> = true; 146 /// Define a generic scheduling policy for targets that don't provide their own 179 /// Optionally override the per-region scheduling policy. 773 /// Policy for scheduling the next instruction in the candidate's zone. 813 CandPolicy Policy; 831 SchedCandidate(const CandPolicy &Policy) { reset(Policy); } [all...] |
/external/swiftshader/third_party/llvm-7.0/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, 70 // Policy.<Flag> = true; 168 /// Define a generic scheduling policy for targets that don't provide their own 201 /// Optionally override the per-region scheduling policy. 798 /// Policy for scheduling the next instruction in the candidate's zone. 838 CandPolicy Policy; 856 SchedCandidate(const CandPolicy &Policy) { reset(Policy); } [all...] |
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/ |
AMDGPUSubtarget.cpp | 466 void GCNSubtarget::overrideSchedPolicy(MachineSchedPolicy &Policy, 471 Policy.ShouldTrackPressure = true; 475 Policy.OnlyTopDown = false; 476 Policy.OnlyBottomUp = false; 480 Policy.ShouldTrackLaneMasks = true;
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/notifications/ |
AttentionManagementVerifierActivity.java | 494 NotificationManager.Policy policy = mNm.getNotificationPolicy(); local 495 policy = new NotificationManager.Policy( 496 NotificationManager.Policy.PRIORITY_CATEGORY_MESSAGES, 497 policy.priorityCallSenders, 498 NotificationManager.Policy.PRIORITY_SENDERS_STARRED); 499 mNm.setNotificationPolicy(policy); 559 NotificationManager.Policy policy = mNm.getNotificationPolicy() local 625 NotificationManager.Policy policy = mNm.getNotificationPolicy(); local [all...] |
/device/linaro/bootloader/edk2/NetworkPkg/Application/IfConfig6/ |
IfConfig6.c | 828 // Get the config policy.
835 &IfCb->Policy
934 // Print interface config policy.
936 if (IfCb->Policy == Ip6ConfigPolicyAutomatic) {
1038 EFI_IP6_CONFIG_POLICY Policy;
1040 Policy = Ip6ConfigPolicyAutomatic;
1059 &Policy
1097 EFI_IP6_CONFIG_POLICY Policy;
1200 // Set automaic config policy
1202 Policy = Ip6ConfigPolicyAutomatic; [all...] |
/cts/tests/tests/media/src/android/media/cts/ |
AudioManagerTest.java | 94 private NotificationManager.Policy mOriginalNotificationPolicy; 303 // set zen mode to priority only, so playSoundEffect will check notification policy 309 // take away write-notification policy access from the package 549 // Apps without policy access cannot change silent -> normal or silent -> vibrate. 559 fail("Apps without notification policy access cannot change ringer mode"); 565 fail("Apps without notification policy access cannot change ringer mode"); 569 // Apps without policy access cannot change normal -> silent. 579 fail("Apps without notification policy access cannot change ringer mode"); 585 // Apps without policy access cannot change vibrate -> silent. 595 fail("Apps without notification policy access cannot change ringer mode") 1560 final int policy = mAudioManager.getAllowedCapturePolicy(); local [all...] |
/external/clang/include/clang/Sema/ |
DeclSpec.h | 529 const PrintingPolicy &Policy); 622 const PrintingPolicy &Policy); 626 unsigned &DiagID, const PrintingPolicy &Policy); 632 unsigned &DiagID, const PrintingPolicy &Policy); 635 const PrintingPolicy &Policy); 638 const PrintingPolicy &Policy); 642 const PrintingPolicy &Policy); 646 const PrintingPolicy &Policy); 650 const PrintingPolicy &policy); 653 const PrintingPolicy &Policy); [all...] |
/device/linaro/bootloader/edk2/CryptoPkg/Library/BaseCryptLib/Pk/ |
CryptTs.c | 91 /// policy TSAPolicyId,
109 ASN1_OBJECT *Policy;
126 ASN1_SIMPLE (TS_TST_INFO, Policy, ASN1_OBJECT),
264 // The policy field MUST indicate the TSA's policy under which the response was produced.
266 if (TstInfo->Policy == NULL) {
268 /// We have no information about the Requested TSA Policy.
|
/device/linaro/bootloader/edk2/SecurityPkg/Library/DxeDeferImageLoadLib/ |
DxeDeferImageLoadLib.c | 775 Provides the service of deferring image load based on platform policy control,
785 @param[in] BootPolicy A boot policy that was used to call LoadImage() UEFI service.
790 FileBuffer did authenticate, and the platform policy dictates
799 authenticate, and the platform policy dictates that the DXE
815 UINT32 Policy;
833 // The user is logon; verify the FilePath by current user access policy.
845 // Check the file type and get policy setting.
848 Policy = PcdGet32 (PcdDeferImageLoadPolicy);
849 if ((Policy & FileType) == FileType) {
|
/external/clang/lib/ASTMatchers/ |
ASTMatchersInternal.cpp | 473 PrintingPolicy Policy = Node.getASTContext().getPrintingPolicy(); 474 Policy.SuppressUnwrittenScope = true; 475 Node.printQualifiedName(OS, Policy);
|
/external/clang/lib/Index/ |
IndexSymbol.cpp | 298 PrintingPolicy Policy(LO); 302 Policy.SuppressTemplateArgsInCXXConstructors = true; 306 DeclName.print(OS, Policy);
|
/external/clang/include/clang/AST/ |
Attr.h | 114 void printPretty(raw_ostream &OS, const PrintingPolicy &Policy) const;
|
/external/llvm/lib/Target/AArch64/ |
AArch64Subtarget.h | 248 void overrideSchedPolicy(MachineSchedPolicy &Policy,
|
/external/llvm/lib/Target/PowerPC/ |
PPCSubtarget.h | 305 void overrideSchedPolicy(MachineSchedPolicy &Policy,
|
/external/owasp/sanitizer/src/main/org/owasp/html/ |
ElementAndAttributePolicyBasedSanitizerPolicy.java | 42 * A sanitizer policy that applies element and attribute policies to tags. 47 implements HtmlSanitizer.Policy {
|
/external/owasp/sanitizer/src/main/org/owasp/html/examples/ |
UrlTextExample.java | 136 HtmlSanitizer.Policy policy = policyBuilder.apply( local 149 HtmlSanitizer.sanitize(input, policy);
|
/external/owasp/sanitizer/src/tests/org/owasp/html/ |
Benchmark.java | 143 HtmlSanitizer.sanitize(html, new HtmlSanitizer.Policy() {
|