Lines Matching defs:context
372 inline void EnterContext(Context context);
374 inline bool LastEnteredContextWas(Context context);
377 inline void EnterMicrotaskContext(Context context);
379 // Returns the last entered context or an empty handle if no
384 inline void SaveContext(Context context);
458 void HandleScopeImplementer::SaveContext(Context context) {
459 saved_contexts_.push_back(context);
480 bool HandleScopeImplementer::LastEnteredContextWas(Context context) {
481 return !entered_contexts_.empty() && entered_contexts_.back() == context;
535 Handle<Context> context,