Home | History | Annotate | Download | only in include

Lines Matching defs:script

88 class Script;
911 * The origin, within a file, of a script.
937 * A compiled JavaScript script, not yet tied to a Context.
942 * Binds the script to the currently entered context.
944 Local<Script> BindToCurrentContext();
950 * Returns zero based line number of the code_pos location in the script.
960 * A compiled JavaScript script, tied to a Context which was active when the
961 * script was compiled.
963 class V8_EXPORT Script {
968 static Local<Script> Compile(Handle<String> source,
972 static Local<Script> Compile(Handle<String> source,
976 * Runs the script returning the resulting value. It will be run in the
983 * Returns the corresponding context-unbound script.
1034 * Source code which can be then compiled to a UnboundScript or Script.
1076 * Compiles the specified script (context-independent).
1078 * \param source Script source code.
1079 * \return Compiled script object (context independent; for running it must be
1087 * Compiles the specified script (bound to current context).
1089 * \param source Script source code.
1093 * \return Compiled script object, bound to the context that was active
1097 static Local<Script> Compile(
1112 * Returns the resource name for the script from where the function causing
1130 * Returns the index within the script of the first character where
1136 * Returns the index within the script of the last character where
1154 * Passes on the value set by the embedder when it fed the script from which
1245 * Returns the id of the script for the function for this StackFrame.
1247 * retrieve the script id, or if kScriptId was not passed as an option when
1253 * Returns the name of the resource that contains the script for the
1259 * Returns the name of the resource that contains the script for the
1260 * function for this StackFrame or sourceURL value if the script name
3951 // --- Leave Script Callback ---
4353 * Adds a callback to notify the host application when a script finished
4354 * running. If a script re-enters the runtime during executing, the
4355 * CallCompletedCallback is only invoked when the outer-most script
4384 * run when the script call depth decrements to zero.
4390 * run when the script call depth decrements to zero.
4532 // Script info for CODE_ADDED event.
4533 Handle<Script> script;
5020 * Returns true if an exception has been caught due to script execution
5025 * methods are called to terminate a long-running script.
5316 friend class Script;