Home
last modified time | relevance | path

Searched defs:actor (Results 1 – 25 of 408) sorted by relevance

12345678910>>...17

/aosp_15_r20/external/sdv/vsomeip/third_party/boost/phoenix/include/boost/phoenix/core/detail/cpp03/preprocessed/
Dactor_result_of_50.hpp34 struct actor<Expr, A0> struct
56 struct actor<Expr, A0 , A1> struct
78 struct actor<Expr, A0 , A1 , A2> struct
100 struct actor<Expr, A0 , A1 , A2 , A3> struct
122 struct actor<Expr, A0 , A1 , A2 , A3 , A4> argument
144 struct actor<Expr, A0 , A1 , A2 , A3 , A4 , A5> argument
166 struct actor<Expr, A0 , A1 , A2 , A3 , A4 , A5 , A6> argument
188 struct actor<Expr, A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7> argument
210 struct actor<Expr, A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8> struct
232 struct actor<Expr, A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9> argument
[all …]
Dactor_result_of_40.hpp34 struct actor<Expr, A0> struct
56 struct actor<Expr, A0 , A1> argument
78 struct actor<Expr, A0 , A1 , A2> argument
100 struct actor<Expr, A0 , A1 , A2 , A3> argument
122 struct actor<Expr, A0 , A1 , A2 , A3 , A4> struct
144 struct actor<Expr, A0 , A1 , A2 , A3 , A4 , A5> struct
166 struct actor<Expr, A0 , A1 , A2 , A3 , A4 , A5 , A6> argument
188 struct actor<Expr, A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7> struct
210 struct actor<Expr, A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8> argument
232 struct actor<Expr, A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9> struct
[all …]
Dactor_result_of_30.hpp34 struct actor<Expr, A0> struct
56 struct actor<Expr, A0 , A1> argument
78 struct actor<Expr, A0 , A1 , A2> struct
100 struct actor<Expr, A0 , A1 , A2 , A3> struct
122 struct actor<Expr, A0 , A1 , A2 , A3 , A4> struct
144 struct actor<Expr, A0 , A1 , A2 , A3 , A4 , A5> argument
166 struct actor<Expr, A0 , A1 , A2 , A3 , A4 , A5 , A6> argument
188 struct actor<Expr, A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7> struct
210 struct actor<Expr, A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8> struct
232 struct actor<Expr, A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9> struct
[all …]
Dactor_result_of_20.hpp34 struct actor<Expr, A0> struct
56 struct actor<Expr, A0 , A1> struct
78 struct actor<Expr, A0 , A1 , A2> struct
100 struct actor<Expr, A0 , A1 , A2 , A3> argument
122 struct actor<Expr, A0 , A1 , A2 , A3 , A4> argument
144 struct actor<Expr, A0 , A1 , A2 , A3 , A4 , A5> argument
166 struct actor<Expr, A0 , A1 , A2 , A3 , A4 , A5 , A6> struct
188 struct actor<Expr, A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7> argument
210 struct actor<Expr, A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8> argument
232 struct actor<Expr, A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9> struct
[all …]
Dactor_result_of_10.hpp34 struct actor<Expr, A0> struct
56 struct actor<Expr, A0 , A1> argument
78 struct actor<Expr, A0 , A1 , A2> struct
100 struct actor<Expr, A0 , A1 , A2 , A3> struct
122 struct actor<Expr, A0 , A1 , A2 , A3 , A4> argument
144 struct actor<Expr, A0 , A1 , A2 , A3 , A4 , A5> argument
166 struct actor<Expr, A0 , A1 , A2 , A3 , A4 , A5 , A6> argument
188 struct actor<Expr, A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7> argument
210 struct actor<Expr, A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8> argument
232 struct actor<Expr, A0 , A1 , A2 , A3 , A4 , A5 , A6 , A7 , A8 , A9> struct
[all …]
/aosp_15_r20/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/test/channels/
H A DActorTest.kt23 val actor = actor<String>(capacity = capacity) { in <lambda>() constant
41 val actor = actor<String>(capacity = capacity) { in <lambda>() constant
68 val actor = actor<Int>(capacity = capacity) { in <lambda>() constant
87 val actor = actor<Int>(capacity = capacity) { in <lambda>() constant
136 val actor = actor<Int>(parent) { in <lambda>() constant
173 val actor = actor<Int>(start = start) { in <lambda>() constant
H A DActorLazyTest.kt12 val actor = actor<String>(start = CoroutineStart.LAZY) { in <lambda>() constant
38 val actor = actor<String>(start = CoroutineStart.LAZY) { in <lambda>() constant
65 val actor = actor<Int>(start = CoroutineStart.LAZY) { in <lambda>() constant
H A DDoubleChannelCloseStressTest.kt13 … val actor = GlobalScope.actor<Int>(CoroutineName("actor"), start = CoroutineStart.LAZY) { in testDoubleCloseStress() constant
H A DProduceConsumeJvmTest.kt46 val actor = actor<Int>(capacity = capacity) { in <lambda>() constant
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/phoenix/include/boost/phoenix/core/
Dactor.hpp110 struct actor<Expr> struct
119 type;
133 struct actor struct
144 expr_type;
154 operator()() in operator ()()
163 operator()() const in operator ()()
180 eval(Env const & env) const in eval()
190 struct result<This(A...)>
199 operator()(A &&... a) in operator ()()
214 operator()(A &&... a) const in operator ()()
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/spirit/include/boost/spirit/home/lex/
Dargument_phoenix.hpp145 struct actor<spirit::lex::value_context> struct
150 > base_type;
152 actor(base_type const & base = base_type()) in actor() function
159 operator=(Expr const & expr) const in operator =()
209 struct actor<spirit::lex::state_context> struct
214 > base_type;
216 actor(base_type const & base = base_type()) in actor() function
223 operator=(Expr const & expr) const in operator =()
/aosp_15_r20/frameworks/base/services/core/java/com/android/server/om/
H A DOverlayReferenceMapper.java223 String actor = mActorToTargetToOverlays.keyAt(index); in removeTarget() local
250 String actor = overlayablesToActors.get(overlayable); in addTarget() local
284 String actor = mActorToTargetToOverlays.keyAt(actorIndex); in removeOverlay() local
326 String actor = overlayableToActor.get(overlayable); in addOverlay() local
380 private void addTargetToMap(String actor, String target, in addTargetToMap()
401 private void addOverlayToMap(String actor, String target, String overlay, in addOverlayToMap()
430 String getActorPkg(@NonNull String actor); in getActorPkg()
/aosp_15_r20/external/cronet/net/third_party/quiche/src/quiche/quic/test_tools/simulator/
H A Dsimulator.cc41 void Simulator::AddActor(Actor* actor) { in AddActor()
51 void Simulator::RemoveActor(Actor* actor) { in RemoveActor()
66 void Simulator::Schedule(Actor* actor, QuicTime new_time) { in Schedule()
83 void Simulator::Unschedule(Actor* actor) { in Unschedule()
141 Actor* actor = current_event_it->second; in HandleNextScheduledActor() local
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/phoenix/include/boost/phoenix/core/detail/cpp03/
Dactor_result_of.hpp70 struct actor<Expr, BOOST_PHOENIX_A> struct
85 type;
/aosp_15_r20/external/googleapis/google/cloud/recommender/logging/v1/
H A Daction_log.proto32 string actor = 1; field
48 string actor = 1 [(google.api.field_behavior) = REQUIRED]; field
/aosp_15_r20/external/googleapis/google/cloud/recommender/logging/v1beta1/
H A Daction_log.proto31 string actor = 1; field
47 string actor = 1 [(google.api.field_behavior) = REQUIRED]; field
/aosp_15_r20/frameworks/base/core/java/android/content/om/
H A DOverlayableInfo.java45 public final String actor; field in OverlayableInfo
74 @Nullable String actor) { in OverlayableInfo()
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/spirit/include/boost/spirit/home/classic/dynamic/
Dlazy.hpp52 ActorT actor; member
59 lazy_parser<ActorT> lazy_p(ActorT const& actor) in lazy_p()
/aosp_15_r20/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/deser/filter/
H A DProblemHandlerLocation1440Test.java80 public ActivityEntity actor; field in ProblemHandlerLocation1440Test.Activity
86 …l ActivityEntity object, @JsonProperty("target") final ActivityEntity target, @JsonProperty("verb"… in Activity()
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/spirit/include/boost/spirit/home/classic/phoenix/
Dactor.hpp134 struct actor : public BaseT { struct
333 actor<BaseT>::actor() in actor() function in phoenix::actor
338 actor<BaseT>::actor(BaseT const& base) in actor() function in phoenix::actor
/aosp_15_r20/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/test/
H A DFailFastOnStartTest.kt67 val actor = actor<Int>(Dispatchers.Main, start = CoroutineStart.LAZY) { fail() } in <lambda>() constant
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/asio/example/cpp11/executors/
Dactor.cpp82 class actor class
109 actor(any_io_executor e) in actor() function in actor
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/asio/example/cpp14/executors/
Dactor.cpp82 class actor class
109 actor(any_io_executor e) in actor() function in actor
/aosp_15_r20/external/rust/android-crates-io/crates/tokio/tests/
Dsync_mpsc_weak.rs138 let actor = MyActor::new(receiver, sender.clone().downgrade()); in actor_weak_sender() localVariable
399 let actor = MyActor::new(receiver, sender.clone().downgrade()); in actor_weak_unbounded_sender() localVariable
/aosp_15_r20/external/antlr/runtime/ObjC/Framework/
H A DTreeRewriter.h36 id actor; variable

12345678910>>...17