Home
last modified time | relevance | path

Searched refs:Policy (Results 1 – 25 of 419) sorted by relevance

12345678910>>...17

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DCachePruning.cpp78 CachePruningPolicy Policy; in parseCachePruningPolicy() local
89 Policy.Interval = *DurationOrErr; in parseCachePruningPolicy()
94 Policy.Expiration = *DurationOrErr; in parseCachePruningPolicy()
108 Policy.MaxSizePercentageOfAvailableSpace = Size; in parseCachePruningPolicy()
129 Policy.MaxSizeBytes = Size * Mult; in parseCachePruningPolicy()
131 if (Value.getAsInteger(0, Policy.MaxSizeFiles)) in parseCachePruningPolicy()
140 return Policy; in parseCachePruningPolicy()
144 bool llvm::pruneCache(StringRef Path, CachePruningPolicy Policy) { in pruneCache() argument
157 Policy.MaxSizePercentageOfAvailableSpace = in pruneCache()
158 std::min(Policy.MaxSizePercentageOfAvailableSpace, 100u); in pruneCache()
[all …]
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/
Dhash_policy_traits.h31 template <class Policy, class = void>
34 using key_type = typename Policy::key_type;
64 template <class P = Policy, class = void>
73 using slot_type = typename Policy::slot_type;
78 using init_type = typename Policy::init_type;
80 using reference = decltype(Policy::element(std::declval<slot_type*>()));
94 Policy::construct(alloc, slot, std::forward<Args>(args)...);
101 Policy::destroy(alloc, slot);
122 template <class P = Policy>
133 template <class P = Policy>
[all …]
Dnode_hash_policy.h48 template <class Reference, class Policy>
57 *slot = Policy::new_element(alloc, std::forward<Args>(args)...); in construct()
62 Policy::delete_element(alloc, *slot); in destroy()
71 if (slot == nullptr) return Policy::element_space_used(nullptr); in space_used()
72 return Policy::element_space_used(*slot); in space_used()
77 template <class T, class P = Policy>
82 template <class... Ts, class P = Policy>
Draw_hash_map.h30 template <class Policy, class Hash, class Eq, class Alloc>
31 class raw_hash_map : public raw_hash_set<Policy, Hash, Eq, Alloc> {
48 using key_type = typename Policy::key_type;
49 using mapped_type = typename Policy::mapped_type;
142 template <class K = key_type, class P = Policy>
149 return Policy::value(&*it); in at()
152 template <class K = key_type, class P = Policy>
159 return Policy::value(&*it); in at()
162 template <class K = key_type, class P = Policy, K* = nullptr>
164 return Policy::value(&*try_emplace(std::forward<K>(key)).first);
[all …]
Dcommon.h117 template <typename Policy, typename PolicyTraits, typename Alloc,
136 template <typename Policy, typename PolicyTraits, typename Alloc>
137 class node_handle<Policy, PolicyTraits, Alloc,
138 absl::void_t<typename Policy::mapped_type>>
144 using key_type = typename Policy::key_type;
145 using mapped_type = typename Policy::mapped_type;
Dnode_hash_policy_test.cc30 struct Policy : node_hash_policy<int&, Policy> { struct
45 using NodePolicy = hash_policy_traits<Policy>;
Draw_hash_set_allocator_test.cc129 struct Policy { struct
177 using Table = raw_hash_set<Policy, Identity, std::equal_to<int32_t>, Alloc>;
474 using Table = raw_hash_set<Policy, Identity, std::equal_to<int32_t>, PA>; in TEST()
485 using Table = raw_hash_set<Policy, Identity, std::equal_to<int32_t>, PA>; in TEST()
494 using Table = raw_hash_set<Policy, Identity, std::equal_to<int32_t>, PA>; in TEST()
/third_party/python/Lib/email/
Darchitecture.rst34 Policy
38 The Policy framework provides a simple and convenient way to control the
87 Header Policy Control During Lifecycle
90 One of the major controls exerted by the Policy is the management of headers
98 Policy object provides hooks for all four of these pathways.
103 :meth:`~email.policy.Policy.header_source_parse` method of the Policy. The
108 the :meth:`~email.policy.Policy.header_store_parse` method of the Policy, which
113 :meth:`~email.policy.Policy.header_fetch_parse` method of the Policy to
117 passed to the :meth:`~email.policy.Policy.fold` method of the Policy, which
119 :meth:`~email.policy.Policy.cte_type` Policy control determines whether or
[all …]
Dpolicy.py7 from email._policybase import Policy, Compat32, compat32, _extend_docstrings
27 class EmailPolicy(Policy):
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/LTO/legacy/
DThinLTOCodeGenerator.h128 CachePruningPolicy Policy; member
140 CacheOptions.Policy.Interval.reset(); in setCachePruningInterval()
142 CacheOptions.Policy.Interval = std::chrono::seconds(Interval); in setCachePruningInterval()
149 CacheOptions.Policy.Expiration = std::chrono::seconds(Expiration); in setCacheEntryExpiration()
167 CacheOptions.Policy.MaxSizePercentageOfAvailableSpace = Percentage; in setMaxCacheSizeRelativeToAvailableSpace()
175 CacheOptions.Policy.MaxSizeBytes = MaxSizeBytes; in setCacheMaxSizeBytes()
182 CacheOptions.Policy.MaxSizeFiles = MaxSizeFiles; in setCacheMaxSizeFiles()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DParallel.h173 template <class Policy, class RandomAccessIterator,
175 void sort(Policy policy, RandomAccessIterator Start, RandomAccessIterator End,
177 static_assert(is_execution_policy<Policy>::value,
182 template <class Policy, class IterTy, class FuncTy>
183 void for_each(Policy policy, IterTy Begin, IterTy End, FuncTy Fn) { in for_each()
184 static_assert(is_execution_policy<Policy>::value, in for_each()
189 template <class Policy, class IndexTy, class FuncTy>
190 void for_each_n(Policy policy, IndexTy Begin, IndexTy End, FuncTy Fn) { in for_each_n()
191 static_assert(is_execution_policy<Policy>::value, in for_each_n()
/third_party/skia/third_party/externals/swiftshader/third_party/marl/src/
Dthread.cpp182 std::shared_ptr<Thread::Affinity::Policy> Thread::Affinity::Policy::anyOf( in anyOf()
185 struct Policy : public Thread::Affinity::Policy { in anyOf() struct
187 Policy(Affinity&& affinity) : affinity(std::move(affinity)) {} in anyOf() argument
210 return allocator->make_shared<Policy>(std::move(affinity)); in anyOf()
213 std::shared_ptr<Thread::Affinity::Policy> Thread::Affinity::Policy::oneOf( in oneOf()
216 struct Policy : public Thread::Affinity::Policy { in oneOf() struct
218 Policy(Affinity&& affinity) : affinity(std::move(affinity)) {} in oneOf() function
229 return allocator->make_shared<Policy>(std::move(affinity)); in oneOf()
/third_party/skia/third_party/externals/swiftshader/third_party/marl/include/marl/
Dthread.h64 class Policy {
66 virtual ~Policy() {} in ~Policy()
74 MARL_EXPORT static std::shared_ptr<Policy> anyOf(
82 MARL_EXPORT static std::shared_ptr<Policy> oneOf(
/third_party/openssl/test/recipes/25-test_rusext_data/
Dgrfc.utf829 Policy: Class of Signing Tool KC1
30 Policy: Class of Signing Tool KC2
31 Policy: X509v3 Any Policy
Dgrfc.msb29 Policy: Class of Signing Tool KC1
30 Policy: Class of Signing Tool KC2
31 Policy: X509v3 Any Policy
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/
DAArch64Subtarget.cpp265 void AArch64Subtarget::overrideSchedPolicy(MachineSchedPolicy &Policy, in overrideSchedPolicy() argument
269 Policy.OnlyTopDown = false; in overrideSchedPolicy()
270 Policy.OnlyBottomUp = false; in overrideSchedPolicy()
274 Policy.DisableLatencyHeuristic = DisableLatencySchedHeuristic; in overrideSchedPolicy()
/third_party/node/
DCODE_OF_CONDUCT.md4 * [Node.js Moderation Policy](https://github.com/nodejs/admin/blob/HEAD/Moderation-Policy.md)
/third_party/node/tools/gyp/
DCODE_OF_CONDUCT.md4 * [Node.js Moderation Policy](https://github.com/nodejs/admin/blob/master/Moderation-Policy.md)
/third_party/python/Doc/library/
Demail.policy.rst1 :mod:`email.policy`: Policy Objects
28 Policy objects give the email package the flexibility to handle all these
31 A :class:`Policy` object encapsulates a set of attributes and methods that
33 :class:`Policy` instances can be passed to various classes and methods in the
63 The first part of this documentation covers the features of :class:`Policy`, an
72 :class:`Policy` instances are immutable, but they can be cloned, accepting the
74 :class:`Policy` instance that is a copy of the original but with the specified
129 Policy objects can also be combined using the addition operator, producing a
150 .. class:: Policy(**kw)
232 The following :class:`Policy` method is intended to be called by code using
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/
DPPCSubtarget.cpp214 void PPCSubtarget::overrideSchedPolicy(MachineSchedPolicy &Policy, in overrideSchedPolicy() argument
221 Policy.OnlyBottomUp = false; in overrideSchedPolicy()
224 Policy.ShouldTrackPressure = true; in overrideSchedPolicy()
/third_party/vk-gl-cts/external/vulkan-docs/src/LICENSES/
DLicenseRef-KhronosSpecCopyright.adoc14 receive reciprocal patent license protection under the Khronos IP Policy
31 Rights Policy, which is Attachment A of the Khronos Group Membership
64 For purposes of the Khronos Intellectual Property Rights Policy as it
77 functionality. The Khronos Intellectual Property Rights Policy excludes
DLicenseRef-KhronosSpecCopyright.txt25 Rights Policy, which is Attachment A of the Khronos Group Membership
30 under the Khronos Intellectual Property Rights Policy must become Adopters and
55 For purposes of the Khronos Intellectual Property Rights Policy as it relates
65 Intellectual Property Rights Policy.
/third_party/vk-gl-cts/external/vulkan-docs/src/config/
Dcopyright-spec.adoc14 receive reciprocal patent license protection under the Khronos IP Policy
31 Rights Policy, which is Attachment A of the Khronos Group Membership
64 For purposes of the Khronos Intellectual Property Rights Policy as it
77 functionality. The Khronos Intellectual Property Rights Policy excludes
/third_party/vk-gl-cts/external/vulkan-docs/src/
Dcopyright-spec.txt25 Rights Policy, which is Attachment A of the Khronos Group Membership
30 under the Khronos Intellectual Property Rights Policy must become Adopters and
55 For purposes of the Khronos Intellectual Property Rights Policy as it relates
65 Intellectual Property Rights Policy.
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DMachineScheduler.h847 CandPolicy Policy; member
865 SchedCandidate(const CandPolicy &Policy) { reset(Policy); } in SchedCandidate()
868 Policy = NewPolicy; in reset()
901 void setPolicy(CandPolicy &Policy, bool IsPostRA, SchedBoundary &CurrZone,
909 bool shouldReduceLatency(const CandPolicy &Policy, SchedBoundary &CurrZone,

12345678910>>...17