/third_party/node/deps/v8/src/builtins/ |
H A D | builtins-async-gen.h | 23 TNode<Object> Await(TNode<Context> context, 29 TNode<Object> Await(TNode<Context> context, in Await() function in v8::internal::AsyncBuiltinsAssembler 35 return Await(context, generator, value, outer_promise, on_resolve_sfi, in Await()
|
H A D | builtins-async-generator-gen.cc | 129 // Shared implementation of the catchable and uncatchable variations of Await 262 Await(context, async_generator_object, value, outer_promise, in AsyncGeneratorAwait() 424 // Stop resuming if suspended for Await. in TF_BUILTIN() 450 // For "return" completions, await the sent value. If the Await succeeds, in TF_BUILTIN() 502 // Await-ed. Typically, this means `value` is not a JSPromise value. However, in TF_BUILTIN() 587 Await(context, generator, value, outer_promise, in TF_BUILTIN() 653 Await(context, generator, value, outer_promise, var_on_resolve.value(), in TF_BUILTIN() 659 // On-resolve closure for Await in AsyncGeneratorReturn 670 // On-resolve closure for Await in AsyncGeneratorReturn
|
H A D | builtins-async-gen.cc | 25 TNode<Object> AsyncBuiltinsAssembler::Await( in Await() function in v8::internal::AsyncBuiltinsAssembler
|
H A D | builtins-async-function-gen.cc | 247 Await(context, async_function_object, value, outer_promise, on_resolve_sfi, in AsyncFunctionAwait()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/synchronization/ |
H A D | barrier.cc | 39 this->lock_.Await(Condition(IsZero, &this->num_to_block_)); in Block()
|
H A D | blocking_counter.cc | 58 this->lock_.Await(Condition(IsDone, &this->done_)); in Wait()
|
H A D | mutex_test.cc | 158 cxt->mu.Await(absl::Condition(&mc, &MyContext::MyTurn)); in TestAwait() 334 cxt->mu.Await(g0ge2); in TestTime() 423 // Test that a CondVar.Wait(&mutex) can un-block a call to mutex.Await() in 438 // Thread A. Sets barrier, waits for release using Mutex::Await, then in TEST() 447 state.release_mu.Await(absl::Condition(&state.release)); in TEST() 455 // Thread A is now blocked on release by way of Mutex::Await(). in TEST() 465 // mutex.Await() in another thread. 479 // Thread A. Sets barrier, waits for release using Mutex::Await, then in TEST() 488 state.release_mu.Await(absl::Condition(&state.release)); in TEST() 496 // Thread A is now blocked on release by way of Mutex::Await() in TEST() [all...] |
H A D | notification_test.cc | 44 mutex_.Await(Condition(&cond)); in WaitUntilGreaterOrEqual()
|
H A D | mutex.h | 293 // Mutex::Await() 298 // `true`, `Await()` *may* skip the release/re-acquire step. 300 // `Await()` requires that this thread holds this `Mutex` in some mode. 301 void Await(const Condition &cond); 309 // logically equivalent to `*Lock(); Await();` though they may have different 474 // Common code between Await() and AwaitWithTimeout/Deadline() 632 // suitable `Mutex' member function, such as `Mutex::Await()`, or to the 703 // mu_.Await(Condition(&reached)); 763 // `Mutex::Await()` and intrinsic `Condition` abstractions. In rare cases
|
/third_party/skia/third_party/externals/abseil-cpp/absl/synchronization/internal/ |
H A D | thread_pool.h | 73 mu_.Await(absl::Condition(this, &ThreadPool::WorkAvailable)); in WorkLoop()
|
/third_party/typescript/tests/baselines/reference/ |
H A D | parserRealSource3.js | 27 Await, 148 NodeType[NodeType["Await"] = 17] = "Await";
|
H A D | parserRealSource12.js | 112 this.childrenWalkers[NodeType.Await] = ChildrenWalkers.walkUnaryExpressionChildren; 625 this.childrenWalkers[NodeType.Await] = ChildrenWalkers.walkUnaryExpressionChildren;
|
/third_party/rust/crates/syn/src/ |
H A D | token.rs | 741 "await" pub struct Await 919 [await] => { $crate::token::Await };
|
H A D | stmt.rs | 332 | Expr::Await(_) in stmt_expr()
|
H A D | expr.rs | 100 Await(ExprAwait), 695 | Expr::Await(ExprAwait { attrs, .. }) 930 | Expr::Await(_) 1491 e = Expr::Await(ExprAwait { in trailer_helper() 2277 ExprAwait, Await, "expected await expression",
|
/third_party/node/deps/v8/src/parsing/ |
H A D | preparser.cc | 35 return PreParserIdentifier::Await(); in GetIdentifierHelper()
|
/third_party/node/deps/v8/src/ast/ |
H A D | ast.h | 83 V(Await) \ 2081 // Await 2105 friend class Await; 2135 class Await final : public Suspend { 2140 Await(Expression* expression, int pos) in Await() function in v8::internal::final 3213 Await* NewAwait(Expression* expression, int pos) { in NewAwait() 3215 return zone_->New<Await>(expression, pos); in NewAwait()
|
H A D | ast-traversal-visitor.h | 367 void AstTraversalVisitor<Subclass>::VisitAwait(Await* expr) { in VisitAwait()
|
H A D | prettyprinter.cc | 386 void CallPrinter::VisitAwait(Await* node) { Find(node->expression()); } in VisitAwait() 1316 void AstPrinter::VisitAwait(Await* node) { in VisitAwait()
|
/third_party/python/Include/internal/ |
H A D | pycore_ast.h | 414 } Await; member
|
/third_party/python/Python/ |
H A D | ast_unparse.c | 827 APPEND_EXPR(e->v.Await.value, PR_ATOM); in append_ast_await()
|
H A D | ast_opt.c | 759 CALL(astfold_expr, expr_ty, node_->v.Await.value); in astfold_expr()
|
H A D | ast.c | 321 ret = validate_expr(state, exp->v.Await.value, Load); in validate_expr()
|
/third_party/rust/crates/syn/src/gen/ |
H A D | clone.rs | 238 Expr::Await(v0) => Expr::Await(v0.clone()), in clone()
|
/third_party/rust/crates/syn/tests/common/ |
H A D | eq.rs | 596 Match(0 1) Closure(0) Block(0 1) Gen(0 1 2) Await(0 1) TryBlock(0)
|