Home | History | Annotate | Download | only in include

Lines Matching defs:script

896  * Pre-compilation data that can be associated with a script.  This
897 * data can be calculated for a script in advance of actually
898 * compiling it, and can be stored between compilations. When script
906 * Pre-compiles the specified script (context-independent).
908 * \param input Pointer to UTF-8 script source code.
909 * \param length Length of UTF-8 script source code.
914 * Pre-compiles the specified script (context-independent).
919 * \param source Script source code.
951 * The origin, within a file, of a script.
977 * A compiled JavaScript script.
979 class V8_EXPORT Script {
982 * Compiles the specified script (context-independent).
984 * \param source Script source code.
985 * \param origin Script origin, owned by caller, no references are kept
990 * \param script_data Arbitrary data associated with script. Using
993 * \return Compiled script object (context independent; when run it
996 static Local<Script> New(Handle<String> source,
1002 * Compiles the specified script using the specified file name
1003 * object (typically a string) as the script's origin.
1005 * \param source Script source code.
1007 * as the script's origin.
1008 * \return Compiled script object (context independent; when run it
1011 static Local<Script> New(Handle<String> source,
1015 script (bound to current context).
1017 * \param source Script source code.
1018 * \param origin Script origin, owned by caller, no references are kept
1023 * \param script_data Arbitrary data associated with script. Using
1026 * \return Compiled script object, bound to the context that was active
1030 static Local<Script> Compile(Handle<String> source,
1036 * Compiles the specified script using the specified file name
1037 * object (typically a string) as the script's origin.
1039 * \param source Script source code.
1040 * \param file_name File name to use as script's origin
1041 * \param script_data Arbitrary data associated with script. Using
1044 * \return Compiled script object, bound to the context that was active
1048 static Local<Script> Compile(Handle<String> source,
1053 * Runs the script returning the resulting value. If the script is
1062 * Returns the script id value.
1068 * Returns the script id.
1073 * Associate an additional data object with the script. This is mainly used
1080 * Returns the name value of one Script.
1085 * Returns zero based line number of the code_pos location in the script.
1103 * Returns the resource name for the script from where the function causing
1109 * Returns the resource data for the script from where the function causing
1127 * Returns the index within the script of the first character where
1133 * Returns the index within the script of the last character where
1151 * Passes on the value set by the embedder when it fed the script from which
1238 * Returns the name of the resource that contains the script for the
1244 * Returns the name of the resource that contains the script for the
1245 * function for this StackFrame or sourceURL value if the script name
3904 // --- Leave Script Callback ---
4246 // Script info for CODE_ADDED event.
4247 Handle<Script> script;
4538 * Adds a callback to notify the host application when a script finished
4539 * running. If a script re-enters the runtime during executing, the
4540 * CallCompletedCallback is only invoked when the outer-most script
4844 * Returns true if an exception has been caught due to script execution
4849 * methods are called to terminate a long-running script.
5162 friend class Script;