Searched refs:Script (Results 1 - 25 of 121) sorted by relevance

12345

/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/
H A Dplugin.properties14 fetchFactories.name = Fetch Script Factories
/external/v8/test/cctest/
H A Dtest-func-name-inference.cc43 using ::v8::internal::Script;
62 static void CheckFunctionName(v8::Handle<v8::Script> script,
75 Handle<Script> i_script(Script::cast(shared_function->script()));
106 static v8::Handle<v8::Script> Compile(const char* src) {
107 return v8::Script::Compile(v8::String::New(src));
115 v8::Handle<v8::Script> script = Compile(
127 v8::Handle<v8::Script> script = Compile(
139 v8::Handle<v8::Script> script = Compile(
153 v8::Handle<v8::Script> scrip
[all...]
H A Dtest-thread-termination.cc59 v8::Handle<v8::Value> result = v8::Script::Compile(source)->Run();
69 v8::Script::Compile(v8::String::New("function f() {"
94 v8::Script::Compile(v8::String::New("var term = true;"
133 v8::Script::Compile(source)->Run();
136 v8::Script::Compile(source)->Run();
153 v8::Script::Compile(source)->Run();
156 v8::Script::Compile(source)->Run();
192 v8::Script::Compile(source)->Run();
216 v8::Script::Compile(source)->Run();
282 v8::Script
[all...]
H A Dtest-accessors.cc42 using ::v8::Script;
61 Local<Script> getter = v8_compile("var obj = new Fun(); obj.foo;");
63 Local<Script> setter = v8_compile("obj.foo = 901;");
260 Local<Script> scr = v8::Script::Compile(v8::String::New("obj.xxx"));
283 Local<Script> scr = v8::Script::Compile(v8::String::New("obj.xxx"));
301 Local<Script> scr = v8::Script::Compile(v8::String::New("obj.xxx"));
316 Local<Script> sc
[all...]
H A Dtest-threads.cc44 v8::Handle<v8::Script> script = v8::Script::Compile(
77 v8::Handle<v8::Script> script = v8::Script::Compile(
H A Dcctest.h206 static inline v8::Local<v8::Script> v8_compile(const char* x) {
207 return v8::Script::Compile(v8_str(x));
213 return v8::Script::Compile(v8::String::New(source))->Run();
H A Dtest-debug.cc173 v8::Script::Compile(v8::String::New(source))->Run();
182 v8::Script::Compile(v8::String::New(source))->Run();
227 return v8::Script::Compile(str)->Run()->Int32Value();
249 v8::Handle<v8::Value> value = v8::Script::Compile(str)->Run();
276 v8::Handle<v8::Value> value = v8::Script::Compile(str)->Run();
298 v8::Script::Compile(v8::String::New(buffer.start()))->Run();
308 v8::Script::Compile(v8::String::New(buffer.start()))->Run();
318 v8::Script::Compile(v8::String::New(buffer.start()))->Run();
329 v8::Script::Compile(v8::String::New(buffer.start()))->Run();
340 v8::Script
[all...]
/external/v8/src/
H A Dlog-inl.h38 Script* script) {
40 && script->type()->value() == Script::TYPE_NATIVE) {
H A Dmessages.h69 MessageLocation(Handle<Script> script,
77 Handle<Script> script() const { return script_; }
82 Handle<Script> script_;
H A Daccessors.cc175 return Script::cast(script)->source();
193 return Script::cast(script)->name();
211 return Script::cast(script)->id();
229 return Script::cast(script)->line_offset();
247 return Script::cast(script)->column_offset();
265 return Script::cast(script)->data();
283 return Script::cast(script)->type();
301 return Script::cast(script)->compilation_type();
321 Handle<Script> script(Script
[all...]
H A Dliveedit.h87 static JSArray* GatherCompileInfo(Handle<Script> script,
108 static Object* ChangeScriptSource(Handle<Script> original_script,
H A Dcompiler.h44 explicit CompilationInfo(Handle<Script> script);
67 Handle<Script> script() const { return script_; }
192 if (script_->type()->value() == Script::TYPE_NATIVE) {
243 Handle<Script> script_;
311 Handle<Script> script);
317 Handle<Script> script);
H A Dhandles.h217 Handle<JSValue> GetScriptWrapper(Handle<Script> script);
219 // Script line number computations.
220 void InitScriptLineEnds(Handle<Script> script);
226 int GetScriptLineNumber(Handle<Script> script, int code_position);
228 int GetScriptLineNumberSafe(Handle<Script> script, int code_position);
229 int GetScriptColumnNumber(Handle<Script> script, int code_position);
H A Dbootstrapper.h45 explicit SourceCodeCache(Script::Type type): type_(type), cache_(NULL) { }
77 Script::cast(shared->script())->set_type(Smi::FromInt(type_));
81 Script::Type type_;
H A Dgdb-jit.h118 Script* script,
122 Handle<Script> script,
H A Dcompiler.cc54 CompilationInfo::CompilationInfo(Handle<Script> script)
76 script_(Handle<Script>(Script::cast(shared_info->script()))),
93 script_(Handle<Script>(Script::cast(shared_info_->script()))),
363 Handle<Script> script = info->script();
368 Script::CompilationType compilation_type = Script::COMPILATION_TYPE_EVAL;
457 Smi::FromInt(Script::COMPILATION_STATE_COMPILED));
509 Handle<Script> scrip
[all...]
/external/webkit/Source/WebCore/inspector/front-end/
H A DScript.js26 WebInspector.Script = function(sourceID, sourceURL, lineOffset, columnOffset, length, errorLine, errorMessage, isContentScript)
38 WebInspector.Script.prototype = {
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_3/Script/
H A Dscript-001.js34 js> s = new Script
39 js> s = new Script()
51 [object Script]
93 js> s = new Script("3+4")
100 js> s2 = new Script();
133 var s = new Script();
137 "var s = new Script(); typeof s",
143 "[object Script]",
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Scope/
H A Dregress-220584.js38 * SUMMARY: Testing __parent__ and __proto__ of Script object
45 var summary = 'Testing __parent__ and __proto__ of Script object';
55 // invoke |Script| as a function
56 s = Script('1;');
79 // invoke |Script| as a constructor
80 s = new Script('1;');
/external/v8/src/arm/
H A Dcodegen-arm.h65 Handle<Script> script);
/external/v8/src/mips/
H A Dcodegen-mips.h67 Handle<Script> script);
/external/webkit/Source/WebCore/inspector/
H A DInspectorDebuggerAgent.h130 class Script { class in class:WebCore::InspectorDebuggerAgent
132 Script() function in class:WebCore::InspectorDebuggerAgent::Script
139 Script(const String& url, const String& data, int lineOffset, int columnOffset) function in class:WebCore::InspectorDebuggerAgent::Script
155 typedef HashMap<String, Script> ScriptsMap;
/external/webkit/Source/WebCore/bindings/v8/
H A DWorkerContextExecutionProxy.h81 v8::Local<v8::Value> runScript(v8::Handle<v8::Script>);
/external/webkit/Source/WebCore/loader/cache/
H A DCachedResourceLoader.cpp65 case CachedResource::Script:
195 return static_cast<CachedScript*>(requestResource(CachedResource::Script, url, charset));
221 case CachedResource::Script:
247 case CachedResource::Script:
274 case CachedResource::Script:
685 bool canBlockParser = type == CachedResource::Script || type == CachedResource::CSSStyleSheet;
712 if (type == CachedResource::Script || type == CachedResource::CSSStyleSheet)
773 if (res->type() == CachedResource::Script) {
/external/libvpx/examples/includes/geshi/geshi/
H A Dlscript.php10 * Lightwave Script language file for GeSHi.

Completed in 360 milliseconds

12345