Home
last modified time | relevance | path

Searched full:prior (Results 1 – 25 of 22835) sorted by relevance

12345678910>>...914

/aosp_15_r20/external/grpc-grpc/src/core/lib/promise/detail/
H A Dseq_state.h61 // CheckResultAndRunNext(T prior, RunNext run_next) - examine the value of
62 // prior, and decide to escape or continue. If escaping, return the final
64 // run_next(std::move(prior)).
68 // game such that the prior state and our current promise are kept in a union,
73 // here. The very first state does not have a prior state, and so that state has
98 GPR_NO_UNIQUE_ADDRESS Running0 prior;
106 Construct(&prior.current_promise, std::forward<P>(p));
107 Construct(&prior.next_factory, std::forward<F0>(f0));
112 Destruct(&prior.current_promise);
119 Destruct(&prior.next_factory);
[all …]
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/multi_index/include/boost/multi_index/detail/
Dhash_index_node.hpp58 * (n and p short for ->next(), ->prior(), bucket nodes have prior pointers
97 /* half-header (only prior() pointer) to use for the bucket array */
116 pointer& prior(){return prior_;} in prior() function
117 pointer prior()const{return prior_;} in prior() function
123 /* full header (prior() and next()) for the nodes */
237 return x->prior()->next()!=base_pointer_from(x); in is_first_of_bucket()
242 return is_last_of_bucket(x)?x->next()->prior():pointer_from(x->next()); in after()
257 if(buc->prior()==pointer(0)){ /* empty bucket */ in link()
258 x->prior()=end->prior(); in link()
259 x->next()=end->prior()->next(); in link()
[all …]
Dseq_index_node.hpp40 pointer& prior(){return prior_;} in prior() function
41 pointer prior()const{return prior_;} in prior() function
48 static void decrement(pointer& x){x=x->prior();} in decrement()
54 x->prior()=header->prior(); in link()
56 x->prior()->next()=x->next()->prior()=x; in link()
61 x->prior()->next()=x->next(); in unlink()
62 x->next()->prior()=x->prior(); in unlink()
68 x->prior()=position->prior(); in relink()
70 x->prior()->next()=x->next()->prior()=x; in relink()
78 pointer z=y->prior(); in relink()
[all …]
/aosp_15_r20/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/keyguard/domain/interactor/
H A DKeyguardTransitionScenariosTest.kt174 // GIVEN a prior transition has run to LOCKSCREEN in lockscreenToPrimaryBouncerViaBouncerShowingCall()
201 // GIVEN a prior transition has run to OCCLUDED in occludedToDozing()
226 // GIVEN a prior transition has run to OCCLUDED in occludedToAod()
255 // GIVEN a prior transition has run to LOCKSCREEN in lockscreenToDreaming()
280 // GIVEN a prior transition has run to LOCKSCREEN in lockscreenToDozing()
305 // GIVEN a prior transition has run to LOCKSCREEN in lockscreenToAod()
326 // GIVEN a prior transition has run to DOZING in dozingToLockscreen()
353 // GIVEN a prior transition has started to LOCKSCREEN in dozingToLockscreenCannotBeInterruptedByDreaming()
390 // GIVEN a prior transition has run to DOZING in dozingToGoneWithUnlock()
414 // GIVEN a prior transition has run to DOZING in dozingToPrimaryBouncer()
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/src/core/lib/gprpp/
Dref_counted.h70 const Value prior = value_.fetch_add(n, std::memory_order_relaxed);
73 prior, prior + n);
81 const Value prior = value_.fetch_add(n, std::memory_order_relaxed);
84 trace_, this, location.file(), location.line(), prior, prior + n,
98 const Value prior = value_.fetch_add(1, std::memory_order_relaxed); in RefNonZero() local
101 prior, prior + 1); in RefNonZero()
103 assert(prior > 0); in RefNonZero()
110 const Value prior = value_.fetch_add(1, std::memory_order_relaxed); in RefNonZero() local
113 trace_, this, location.file(), location.line(), prior, prior + 1, in RefNonZero()
116 assert(prior > 0); in RefNonZero()
[all …]
/aosp_15_r20/external/grpc-grpc/src/core/lib/gprpp/
H A Dref_counted.h73 const Value prior = value_.fetch_add(n, std::memory_order_relaxed);
76 prior, prior + n);
84 const Value prior = value_.fetch_add(n, std::memory_order_relaxed);
87 trace_, this, location.file(), location.line(), prior, prior + n,
101 const Value prior = value_.fetch_add(1, std::memory_order_relaxed); in RefNonZero() local
104 prior, prior + 1); in RefNonZero()
106 assert(prior > 0); in RefNonZero()
113 const Value prior = value_.fetch_add(1, std::memory_order_relaxed); in RefNonZero() local
116 trace_, this, location.file(), location.line(), prior, prior + 1, in RefNonZero()
119 assert(prior > 0); in RefNonZero()
[all …]
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/multi_index/include/boost/multi_index/
Dhashed_index.hpp247 index_node_type::from_impl(header()->next()->prior())); in begin()
253 index_node_type::from_impl(header()->next()->prior())); in begin()
380 for(node_impl_pointer x=buckets.at(buc)->prior(); in erase()
591 for(node_impl_pointer x=buckets.at(n)->prior(); in bucket_size()
610 node_impl_pointer x=buckets.at(n)->prior(); in begin()
769 node_impl_pointer prev_org=org->prior(), in copy_()
773 cpy->prior()=prev_cpy; in copy_()
779 buc_cpy->prior()=cpy; in copy_()
810 buc_cpy->prior()=next_cpy; in copy_()
811 next_cpy->prior()=cpy; in copy_()
[all …]
/aosp_15_r20/external/grpc-grpc/tools/codegen/core/
H A Dgen_seq.py37 struct { ${state(i-1, n)} } prior;
42 struct { ${state(i-1, n)} } prior;
70 GPR_NO_UNIQUE_ADDRESS Running${i-1} prior;
80 GPR_NO_UNIQUE_ADDRESS Running${n-2} prior;
91 Construct(&${"prior."*(n-1)}current_promise, std::forward<P>(p));
93 Construct(&${"prior."*(n-1-i)}next_factory, std::forward<F${i}>(f${i}));
100 Destruct(&${"prior."*(n-1-i)}current_promise);
109 Destruct(&${"prior."*(n-1-i)}next_factory);
114 Construct(&${"prior."*(n-1-i)}current_promise,
115 other.${"prior."*(n-1-i)}current_promise);
[all …]
/aosp_15_r20/external/skia/src/core/
H A DSkClipStack.cpp369 // prior clip. This could be wildly incorrect if the in combineBoundsDiff()
372 // size of the prior bound (e.g., if the second clip in combineBoundsDiff()
373 // exactly matched the bottom half of the prior clip). in combineBoundsDiff()
414 void SkClipStack::Element::updateBoundAndGenID(const Element* prior) { in updateBoundAndGenID() argument
428 (SkClipOp::kIntersect == fOp && nullptr == prior) || in updateBoundAndGenID()
429 (SkClipOp::kIntersect == fOp && prior->fIsIntersectionOfRects && in updateBoundAndGenID()
430 prior->rectRectIntersectAllowed(this->getDeviceSpaceRect(), fDoAA))) { in updateBoundAndGenID()
465 if (nullptr == prior) { in updateBoundAndGenID()
466 // no prior clip means the entire plane is writable in updateBoundAndGenID()
470 prevFinite = prior->fFiniteBound; in updateBoundAndGenID()
[all …]
/aosp_15_r20/external/llvm/include/llvm-c/
H A Dlto.h50 * \since prior to LTO_API_VERSION=3
75 * \since prior to LTO_API_VERSION=3
83 * \since prior to LTO_API_VERSION=3
108 * \since prior to LTO_API_VERSION=3
116 * \since prior to LTO_API_VERSION=3
124 * \since prior to LTO_API_VERSION=3
132 * \since prior to LTO_API_VERSION=3
150 * \since prior to LTO_API_VERSION=3
158 * \since prior to LTO_API_VERSION=3
168 * \since prior to LTO_API_VERSION=3
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/llvm-c/
Dlto.h52 * \since prior to LTO_API_VERSION=3
77 * \since prior to LTO_API_VERSION=3
85 * \since prior to LTO_API_VERSION=3
108 * \since prior to LTO_API_VERSION=3
116 * \since prior to LTO_API_VERSION=3
124 * \since prior to LTO_API_VERSION=3
132 * \since prior to LTO_API_VERSION=3
150 * \since prior to LTO_API_VERSION=3
158 * \since prior to LTO_API_VERSION=3
168 * \since prior to LTO_API_VERSION=3
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/llvm-c/
Dlto.h52 * \since prior to LTO_API_VERSION=3
77 * \since prior to LTO_API_VERSION=3
85 * \since prior to LTO_API_VERSION=3
108 * \since prior to LTO_API_VERSION=3
116 * \since prior to LTO_API_VERSION=3
124 * \since prior to LTO_API_VERSION=3
132 * \since prior to LTO_API_VERSION=3
150 * \since prior to LTO_API_VERSION=3
158 * \since prior to LTO_API_VERSION=3
168 * \since prior to LTO_API_VERSION=3
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/llvm-c/
Dlto.h52 * \since prior to LTO_API_VERSION=3
77 * \since prior to LTO_API_VERSION=3
85 * \since prior to LTO_API_VERSION=3
108 * \since prior to LTO_API_VERSION=3
116 * \since prior to LTO_API_VERSION=3
124 * \since prior to LTO_API_VERSION=3
132 * \since prior to LTO_API_VERSION=3
150 * \since prior to LTO_API_VERSION=3
158 * \since prior to LTO_API_VERSION=3
168 * \since prior to LTO_API_VERSION=3
[all …]
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm-c/
H A Dlto.h52 * \since prior to LTO_API_VERSION=3
77 * \since prior to LTO_API_VERSION=3
85 * \since prior to LTO_API_VERSION=3
108 * \since prior to LTO_API_VERSION=3
116 * \since prior to LTO_API_VERSION=3
124 * \since prior to LTO_API_VERSION=3
132 * \since prior to LTO_API_VERSION=3
150 * \since prior to LTO_API_VERSION=3
158 * \since prior to LTO_API_VERSION=3
168 * \since prior to LTO_API_VERSION=3
[all …]
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm-c/
H A Dlto.h52 * \since prior to LTO_API_VERSION=3
77 * \since prior to LTO_API_VERSION=3
85 * \since prior to LTO_API_VERSION=3
108 * \since prior to LTO_API_VERSION=3
116 * \since prior to LTO_API_VERSION=3
124 * \since prior to LTO_API_VERSION=3
132 * \since prior to LTO_API_VERSION=3
150 * \since prior to LTO_API_VERSION=3
158 * \since prior to LTO_API_VERSION=3
168 * \since prior to LTO_API_VERSION=3
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/llvm-c/
Dlto.h52 * \since prior to LTO_API_VERSION=3
77 * \since prior to LTO_API_VERSION=3
85 * \since prior to LTO_API_VERSION=3
108 * \since prior to LTO_API_VERSION=3
116 * \since prior to LTO_API_VERSION=3
124 * \since prior to LTO_API_VERSION=3
132 * \since prior to LTO_API_VERSION=3
150 * \since prior to LTO_API_VERSION=3
158 * \since prior to LTO_API_VERSION=3
168 * \since prior to LTO_API_VERSION=3
[all …]
/aosp_15_r20/cts/tests/camera/src/android/hardware/camera2/cts/
H A DMultiViewTest.java95 Exception prior = null; in testTextureViewPreview() local
106 prior = e; in testTextureViewPreview()
111 if (prior != null) { in testTextureViewPreview()
112 Log.e(TAG, "Prior exception received: " + prior); in testTextureViewPreview()
114 prior = e; in testTextureViewPreview()
116 if (prior != null) throw prior; // Rethrow last exception. in testTextureViewPreview()
124 Exception prior = null; in testTextureViewPreviewWithImageReader() local
148 prior = e; in testTextureViewPreviewWithImageReader()
159 if (prior != null) { in testTextureViewPreviewWithImageReader()
160 Log.e(TAG, "Prior exception received: " + prior); in testTextureViewPreviewWithImageReader()
[all …]
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/fusion/test/sequence/
Diterator.hpp13 #include <boost/fusion/iterator/prior.hpp>
29 { // Testing deref, next, prior, begin, end in test()
43 BOOST_TEST(*prior(next(next(next(i)))) == 3.3); in test()
44 BOOST_TEST(*prior(prior(next(next(next(i))))) == 'x'); in test()
45 BOOST_TEST(*prior(prior(prior(next(next(next(i)))))) == 1); in test()
49 BOOST_TEST(*prior(end(v)) == s); in test()
72 BOOST_TEST(*prior(end(t)) == s); in test()
104 { // testing deref, next, prior, begin, end in test()
123 BOOST_TEST(*prior(next(next(next(i)))) == 3.3); in test()
124 BOOST_TEST(*prior(prior(next(next(next(i))))) == 'x'); in test()
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/src/core/lib/promise/detail/
Dbasic_seq.h58 // game such that the prior state and our current promise are kept in a union,
63 // here. The very first state does not have a prior state, and so that state has
73 new (&prior) PriorState(fs); in SeqState()
75 // Move constructor - assumes we're in the initial state (move prior) as it's
79 new (&prior) PriorState(std::move(other.prior)); in SeqState()
81 // Copy constructor - assumes we're in the initial state (move prior) as it's
84 new (&prior) PriorState(std::move(other.prior)); in SeqState()
90 // The current promise is the next promise from the prior state.
97 // Storage for either the current promise or the prior state.
99 // If we're in the prior state.
[all …]
/aosp_15_r20/external/mesa3d/docs/relnotes/
H A D13.0.5.rst80 - i965: automake: include builddir prior to srcdir
81 - i915: automake: include builddir prior to srcdir
82 - egl: automake: include builddir prior to srcdir
83 - clover: automake: include builddir prior to srcdir
84 - st/dri: automake: include builddir prior to srcdir
85 - d3dadapter9: automake: include builddir prior to srcdir
86 - glx: automake: include builddir prior to srcdir
87 - glx/apple: automake: include builddir prior to srcdir
88 - glx/windows: automake: include builddir prior to srcdir
89 - loader: automake: include builddir prior to srcdir
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/src/core/lib/promise/
Dtry_seq.h50 static Poll<Result> CheckResultAndRunNext(T prior, RunNext run_next) { in CheckResultAndRunNext()
51 return run_next(std::move(prior)); in CheckResultAndRunNext()
69 static Poll<Result> CheckResultAndRunNext(absl::StatusOr<T> prior,
71 if (!prior.ok()) return StatusCast<Result>(prior.status());
72 return run_next(std::move(prior));
90 static Poll<Result> CheckResultAndRunNext(T prior, RunNext run_next) {
91 if (!IsStatusOk(prior)) return Result(std::move(prior));
92 return run_next(std::move(prior));
104 static Poll<Result> CheckResultAndRunNext(absl::Status prior,
106 if (!prior.ok()) return StatusCast<Result>(std::move(prior));
[all …]
/aosp_15_r20/external/grpc-grpc/src/core/lib/promise/
H A Dtry_seq.h60 static Poll<Result> CheckResultAndRunNext(T prior, RunNext run_next) { in CheckResultAndRunNext()
61 return run_next(std::move(prior)); in CheckResultAndRunNext()
87 static Poll<Result> CheckResultAndRunNext(absl::StatusOr<T> prior,
89 if (!prior.ok()) return FailureStatusCast<Result>(prior.status());
90 return run_next(std::move(prior));
142 static Poll<Result> CheckResultAndRunNext(T prior, RunNext run_next) {
143 if (!IsStatusOk(prior)) return Result(std::move(prior));
144 return run_next(std::move(prior));
169 static Poll<Result> CheckResultAndRunNext(T prior, RunNext run_next) {
170 if (!IsStatusOk(prior)) return Result(std::move(prior));
[all …]
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/mpl/include/boost/mpl/aux_/preprocessed/msvc70/
Dadvance_backward.hpp31 typedef typename prior<iter0>::type iter1;
42 typedef typename prior<iter0>::type iter1;
43 typedef typename prior<iter1>::type iter2;
54 typedef typename prior<iter0>::type iter1;
55 typedef typename prior<iter1>::type iter2;
56 typedef typename prior<iter2>::type iter3;
67 typedef typename prior<iter0>::type iter1;
68 typedef typename prior<iter1>::type iter2;
69 typedef typename prior<iter2>::type iter3;
70 typedef typename prior<iter3>::type iter4;
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/mpl/include/boost/mpl/aux_/preprocessed/bcc/
Dadvance_backward.hpp31 typedef typename prior<iter0>::type iter1;
42 typedef typename prior<iter0>::type iter1;
43 typedef typename prior<iter1>::type iter2;
54 typedef typename prior<iter0>::type iter1;
55 typedef typename prior<iter1>::type iter2;
56 typedef typename prior<iter2>::type iter3;
67 typedef typename prior<iter0>::type iter1;
68 typedef typename prior<iter1>::type iter2;
69 typedef typename prior<iter2>::type iter3;
70 typedef typename prior<iter3>::type iter4;
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/mpl/include/boost/mpl/aux_/preprocessed/no_ttp/
Dadvance_backward.hpp31 typedef typename prior<iter0>::type iter1;
42 typedef typename prior<iter0>::type iter1;
43 typedef typename prior<iter1>::type iter2;
54 typedef typename prior<iter0>::type iter1;
55 typedef typename prior<iter1>::type iter2;
56 typedef typename prior<iter2>::type iter3;
67 typedef typename prior<iter0>::type iter1;
68 typedef typename prior<iter1>::type iter2;
69 typedef typename prior<iter2>::type iter3;
70 typedef typename prior<iter3>::type iter4;

12345678910>>...914