Lines Matching refs:Script
509 * Pre-compilation data that can be associated with a script. This
510 * data can be calculated for a script in advance of actually
511 * compiling it, and can be stored between compilations. When script
519 * Pre-compiles the specified script (context-independent).
521 * \param input Pointer to UTF-8 script source code.
522 * \param length Length of UTF-8 script source code.
527 * Pre-compiles the specified script (context-independent).
532 * \param source Script source code.
564 * The origin, within a file, of a script.
586 * A compiled JavaScript script.
588 class V8EXPORT Script {
591 * Compiles the specified script (context-independent).
593 * \param source Script source code.
594 * \param origin Script origin, owned by caller, no references are kept
599 * \param script_data Arbitrary data associated with script. Using
602 * \return Compiled script object (context independent; when run it
605 static Local<Script> New(Handle<String> source,
611 * Compiles the specified script using the specified file name
612 * object (typically a string) as the script's origin.
614 * \param source Script source code.
616 * as the script's origin.
617 * \return Compiled script object (context independent; when run it
620 static Local<Script> New(Handle<String> source,
624 * Compiles the specified script (bound to current context).
626 * \param source Script source code.
627 * \param origin Script origin, owned by caller, no references are kept
632 * \param script_data Arbitrary data associated with script. Using
635 * \return Compiled script object, bound to the context that was active
639 static Local<Script> Compile(Handle<String> source,
645 * Compiles the specified script using the specified file name
646 * object (typically a string) as the script's origin.
648 * \param source Script source code.
649 * \param file_name File name to use as script's origin
650 * \param script_data Arbitrary data associated with script. Using
653 * \return Compiled script object, bound to the context that was active
657 static Local<Script> Compile(Handle<String> source,
662 * Runs the script returning the resulting value. If the script is
671 * Returns the script id value.
676 * Associate an additional data object with the script. This is mainly used
693 * Returns the resource name for the script from where the function causing
699 * Returns the resource data for the script from where the function causing
717 * Returns the index within the script of the first character where
723 * Returns the index within the script of the last character where
822 * Returns the name of the resource that contains the script for the
828 * Returns the name of the resource that contains the script for the
829 * function for this StackFrame or sourceURL value if the script name
2654 // --- Leave Script Callback ---
3085 * Adds a callback to notify the host application when a script finished
3086 * running. If a script re-enters the runtime during executing, the
3087 * CallCompletedCallback is only invoked when the outer-most script
3339 * script.
3592 friend class Script;