Lines Matching refs:ContextId
175 class ContextId {
177 ContextId() : id_(kEmptyId) {}
180 static const ContextId Empty() { return ContextId{kEmptyId}; }
182 bool operator==(const ContextId& other) const { return id_ == other.id_; }
183 bool operator!=(const ContextId& other) const { return id_ != other.id_; }
189 explicit ContextId(uintptr_t id) : id_(id) {}
200 virtual void AddMainThreadEvent(const E&, ContextId) {}
227 static MaybeLocal<Context> GetContext(Isolate* isolate, ContextId id);
229 static ContextId GetContextId(Local<Context> context);