Lines Matching defs:context

45  * A sandboxed execution context with its own set of built-in objects
54 * context's global object with the properties like Object, etc. This is done
65 * Detaches the global object from its context before
66 * the global object can be reused to create a new context.
71 * Creates a new context and returns a handle to the newly allocated
72 * context.
74 * \param isolate The isolate in which to create the context.
77 * the extensions to be installed in the newly created context.
80 * global object for the newly created context will be created.
83 * the newly created context. This global object must have been
97 * Create a new context from a (non-default) context snapshot. There
103 * \param context_snapshot_index The index of the context snapshot to
123 * Returns an global object that isn't backed by an actual context.
127 * from its context.
129 * Note that this is different from a detached context where all accesses to
136 * It is possible, however, to create a new context from the global object
144 * Sets the security token for the context. To access an object in
145 * another context, the security tokens must match.
152 /** Returns the security token of this context.*/
156 * Enter this context. After entering a context, all code compiled
157 * and run is compiled and run in this context. If another context
158 * is already entered, this old context is saved so it can be
159 * restored when the new context is exited.
164 * Exit this context. Exiting the current context restores the
165 * context that was in place when entering the current context.
189 * Attempts to recursively freeze all objects reachable from this context.
196 * context, accumulating a list of objects that need to be frozen and
205 /** Returns the isolate associated with a current context. */
208 /** Returns the microtask queue associated with a current context. */
211 /** Sets the microtask queue associated with the current context. */
264 * constructor for code running in this context. If 'eval' or the
277 * Returns true if code generation from strings is allowed for the context.
296 * Return data that was previously attached to the context snapshot via
305 * context, call the specified callback, and throw an exception.
309 Local<Context> context);
322 void SetContinuationPreservedEmbedderData(Local<Value> context);
337 * Stack-allocated class which sets the execution context for all
342 explicit V8_INLINE Scope(Local<Context> context) : context_(context) {