HomeSort by relevance Sort by last modified time
    Searched refs:iter_result (Results 1 - 2 of 2) sorted by null

  /external/v8/src/builtins/
builtins-async-iterator-gen.cc 83 Node* const iter_result,
147 Node* const iter_result = CallJS(CodeFactory::Call(isolate()), context, local
149 GotoIfException(iter_result, &reject_promise, &var_exception);
154 context, native_context, iter_result, &reject_promise, &var_exception);
212 Node* const iter_result = CallJS(CodeFactory::Call(isolate()), context, local
214 GotoIfException(iter_result, &reject_promise, &var_exception);
219 context, native_context, iter_result, &reject_promise, &var_exception);
248 Node* const context, Node* const native_context, Node* const iter_result,
252 GotoIf(TaggedIsSmi(iter_result), &if_notanobject);
254 Node* const iter_result_map = LoadMap(iter_result);
    [all...]
builtins-async-generator-gen.cc 516 Node* const iter_result = Allocate(JSIteratorResult::kSize); local
520 StoreMapNoWriteBarrier(iter_result, map);
521 StoreObjectFieldRoot(iter_result, JSIteratorResult::kPropertiesOrHashOffset,
523 StoreObjectFieldRoot(iter_result, JSIteratorResult::kElementsOffset,
525 StoreObjectFieldNoWriteBarrier(iter_result, JSIteratorResult::kValueOffset,
527 StoreObjectFieldNoWriteBarrier(iter_result, JSIteratorResult::kDoneOffset,
531 // We know that {iter_result} itself doesn't have any "then" property (a
533 // and we also know that the [[Prototype]] of {iter_result} is the intrinsic
547 // Skip the "then" on {iter_result} and directly fulfill the {promise}
548 // with the {iter_result}
    [all...]

Completed in 753 milliseconds