Lines Matching defs:context
122 * Set the default context to be included in the snapshot blob.
128 void SetDefaultContext(Local<Context> context,
133 * Add additional context to be included in the snapshot blob.
138 * \returns the index of the context in the snapshot blob.
140 size_t AddContext(Local<Context> context,
145 * Attach arbitrary V8::Data to the context snapshot, which can be retrieved
151 V8_INLINE size_t AddData(Local<Context> context, Local<T> object);
177 size_t AddData(Local<Context> context, internal::Address object);
184 size_t SnapshotCreator::AddData(Local<Context> context, Local<T> object) {
185 return AddData(context, internal::ValueHelper::ValueAsAddress(*object));