HomeSort by relevance Sort by last modified time
    Searched refs:Script (Results 1 - 25 of 118) sorted by null

1 2 3 4 5

  /frameworks/base/libs/rs/
rsScript.cpp 22 Script::Script(Context *rsc) : ObjectBase(rsc)
36 Script::~Script()
46 Script *s = static_cast<Script *>(vs);
52 Script *s = static_cast<Script *>(vs);
61 Script *s = static_cast<Script *>(vs)
    [all...]
rsScript.h 34 class Script : public ObjectBase
39 Script(Context *);
40 virtual ~Script();
rsContext.h 64 Script * mScript;
83 void setRootScript(Script *);
111 uint32_t runScript(Script *s, uint32_t launchID);
222 ObjectBaseRef<Script> mRootScript;
  /external/v8/test/cctest/
test-func-name-inference.cc 42 using ::v8::internal::Script;
61 static void CheckFunctionName(v8::Handle<v8::Script> script,
64 // Get script source.
65 Handle<JSFunction> fun = v8::Utils::OpenHandle(*script);
66 Handle<Script> i_script(Script::cast(fun->shared()->script()));
90 static v8::Handle<v8::Script> Compile(const char* src) {
91 return v8::Script::Compile(v8::String::New(src))
99 v8::Handle<v8::Script> script = Compile( local
111 v8::Handle<v8::Script> script = Compile( local
123 v8::Handle<v8::Script> script = Compile( local
137 v8::Handle<v8::Script> script = Compile( local
151 v8::Handle<v8::Script> script = Compile( local
167 v8::Handle<v8::Script> script = Compile( local
185 v8::Handle<v8::Script> script = Compile( local
203 v8::Handle<v8::Script> script = Compile( local
217 v8::Handle<v8::Script> script = Compile( local
233 v8::Handle<v8::Script> script = Compile( local
246 v8::Handle<v8::Script> script = Compile( local
261 v8::Handle<v8::Script> script = Compile( local
    [all...]
test-threads.cc 43 v8::Handle<v8::Script> script = v8::Script::Compile( local
46 script->Run();
51 script->Run();
test-thread-termination.cc 57 v8::Script::Compile(source)->Run();
64 v8::Script::Compile(v8::String::New("function f() {"
87 v8::Script::Compile(v8::String::New("var term = true;"
124 v8::Script::Compile(source)->Run();
126 v8::Script::Compile(source)->Run();
142 v8::Script::Compile(source)->Run();
144 v8::Script::Compile(source)->Run();
171 v8::Script::Compile(source)->Run();
193 v8::Script::Compile(source)->Run();
249 v8::Script::Compile(v8::String::New("function f() {
    [all...]
test-accessors.cc 42 using ::v8::Script;
63 Local<Script> getter = v8_compile("var obj = new Fun(); obj.foo;");
65 Local<Script> setter = v8_compile("obj.foo = 901;");
262 Local<Script> scr = v8::Script::Compile(v8::String::New("obj.xxx"));
285 Local<Script> scr = v8::Script::Compile(v8::String::New("obj.xxx"));
303 Local<Script> scr = v8::Script::Compile(v8::String::New("obj.xxx"));
318 Local<Script> scr = v8::Script::Compile(v8::String::New("obj.xxx"))
    [all...]
test-api.cc 56 using ::v8::Script;
125 Local<Script> script = Script::Compile(source); local
126 CHECK_EQ(6, script->Run()->Int32Value());
267 THREADED_TEST(Script) {
272 Local<Script> script = Script::Compile(source); local
273 CHECK_EQ(6, script->Run()->Int32Value())
353 Local<Script> script = Script::Compile(source); local
377 Local<Script> script = Script::Compile(source); local
402 Local<Script> script = Script::Compile(source); local
428 Local<Script> script = Script::Compile(source); local
612 Local<Script> script = Script::Compile(source); local
654 Local<Script> script = v8_compile("obj()"); local
664 Local<Script> script = v8_compile("obj()"); local
674 Local<Script> script = v8_compile("var s = new obj(); s.x"); local
888 v8::Handle<Script> script = v8_compile("dummy()"); local
1045 Local<Script> script = v8_compile("obj[900]"); local
1317 Local<Script> script = Script::Compile(v8_str("Foo.prototype.plak")); local
1557 Local<Script> script = Script::Compile(v8_str("throw 'panama!';")); local
1587 v8::Handle<v8::Script> script = Script::Compile(v8_str("throw 'error'"), local
1793 Local<Script> script = local
1808 Local<Script> script = local
2106 Local<Script> script local
2352 Local<Script> script = Script::Compile(v8_str("x")); local
2373 Local<Script> script = Script::Compile(v8_str("obj.x")); local
2498 Local<Script> script = Script::Compile(v8_str("obj.x = 4")); local
2523 Local<Script> script = Script::Compile(v8_str("obj.x")); local
3323 Local<Script> script = local
5366 Local<Script> script = local
5408 Local<Script> script = local
5526 Local<Script> script = local
7115 Local<Script> script = v8_compile("(function () {" local
7137 Local<Script> script = v8_compile("(function () {" local
7174 Local<Script> script = v8_compile("(function () {" local
7188 Local<Script> script = v8_compile("(function () {" local
7424 v8::Handle<v8::Script> script = v8::Script::Compile(v8::String::New( local
7476 v8::Handle<v8::Script> script; local
7752 const char *script = "function foo(a) { return a+1; }"; local
7764 const char *script = "function foo(a) { return 1 * * 2; }"; local
7774 const char *script = " The Definintive Guide"; local
7902 Local<Script> script = Script::Compile(source); local
7915 Local<Script> script = Script::Compile(source); local
8026 Local<Script> script = Script::Compile(source); local
8316 Local<Script> script = Script::Compile(source); local
9677 v8::Handle<v8::String> script = v8::String::New( local
9699 v8::Handle<v8::String> script = v8::String::New( local
9742 v8::Local<v8::Script> script; local
9791 v8::Local<v8::Script> script; local
    [all...]
cctest.h 200 static inline v8::Local<v8::Script> v8_compile(const char* x) {
201 return v8::Script::Compile(v8_str(x));
207 return v8::Script::Compile(v8::String::New(source))->Run();
test-debug.cc 166 v8::Script::Compile(v8::String::New(source))->Run();
175 v8::Script::Compile(v8::String::New(source))->Run();
218 return v8::Script::Compile(str)->Run()->Int32Value();
222 // Set a break point in a script identified by id using the global Debug object.
226 // Column specified set script break point on precise location.
231 // Column not specified set script break point on line.
240 v8::Handle<v8::Value> value = v8::Script::Compile(str)->Run();
247 // Set a break point in a script identified by name using the global Debug
253 // Column specified set script break point on precise location.
258 // Column not specified set script break point on line
1354 v8::Local<v8::String> script = v8::String::New( local
1480 v8::Local<v8::Script> script = v8::Script::Compile(source, &origin); local
1567 v8::Local<v8::String> script = v8::String::New( local
1624 v8::Local<v8::String> script = v8::String::New( local
1686 v8::Local<v8::String> script = v8::String::New( local
1742 v8::Local<v8::String> script = v8::String::New( local
1867 v8::Local<v8::String> script = v8::String::New( local
1928 v8::Local<v8::String> script = v8::String::New( local
2961 v8::Handle<v8::Script> script = v8::Script::Compile(v8::String::New(src), local
5265 v8::Local<v8::String> script = v8::String::New( local
5427 const char* script = "function f() { debugger; g(); } function g() { }"; local
5492 const char* script = local
5741 const char* script = "var a=1"; local
5765 const char* script = "function f() {};"; local
5800 const char* script = "function f() {throw new Error()};"; local
5825 const char* script = "function f() {};"; local
5999 v8::Handle<v8::Script> script = v8::Script::Compile(void0, void0); local
    [all...]
  /external/webkit/WebCore/inspector/front-end/
Script.js 26 WebInspector.Script = function(sourceID, sourceURL, source, startingLine, errorLine, errorMessage)
49 WebInspector.Script.prototype = {
  /external/v8/src/
codegen-inl.h 52 Handle<Script> CodeGenerator::script() { return info_->script(); } function in class:v8::internal::CodeGenerator
messages.h 69 MessageLocation(Handle<Script> script,
72 : script_(script),
77 Handle<Script> script() const { return script_; } function in class:v8::internal::MessageLocation
82 Handle<Script> script_;
accessors.cc 171 Object* script = JSValue::cast(object)->value(); local
172 return Script::cast(script)->source();
189 Object* script = JSValue::cast(object)->value(); local
190 return Script::cast(script)->name();
207 Object* script = JSValue::cast(object)->value(); local
208 return Script::cast(script)->id();
225 Object* script = JSValue::cast(object)->value() local
243 Object* script = JSValue::cast(object)->value(); local
261 Object* script = JSValue::cast(object)->value(); local
279 Object* script = JSValue::cast(object)->value(); local
297 Object* script = JSValue::cast(object)->value(); local
339 Object* script = JSValue::cast(object)->value(); local
357 Object* script = JSValue::cast(object)->value(); local
415 Object* script = JSValue::cast(object)->value(); local
    [all...]
compiler.h 103 CompilationInfo(FunctionLiteral* literal, Handle<Script> script, bool is_eval)
104 : script_(script),
127 // We can always get a script. Either we have one or we can get a shared
129 Handle<Script> script() { function in class:v8::internal::BASE_EMBEDDED
133 ASSERT(shared_info()->script()->IsScript());
134 return Handle<Script>(Script::cast(shared_info()->script()));
    [all...]
compiler.cc 123 Handle<Script> script,
132 script->set_context_data((*i::Top::global_context())->data());
137 script->set_compilation_type(
138 is_json ? Smi::FromInt(Script::COMPILATION_TYPE_JSON) :
139 Smi::FromInt(Script::COMPILATION_TYPE_EVAL));
145 script->set_eval_from_shared(
149 script->set_eval_from_instructions_offset(Smi::FromInt(offset));
155 Debugger::OnBeforeCompile(script);
163 MakeAST(is_global, script, extension, pre_data, is_json)
270 Handle<Script> script = Factory::NewScript(source); local
331 Handle<Script> script = Factory::NewScript(source); local
    [all...]
parser.h 130 // The parser: Takes a script and and context information, and builds a
134 Handle<Script> script,
150 // Support for doing lazy compilation. The script is the script containing full
151 // source of the script where the function is declared. The start_position and
152 // end_position specifies the part of the script source which has the source
159 FunctionLiteral* MakeLazyAST(Handle<Script> script,
  /sdk/layoutopt/libs/uix/src/com/android/layoutopt/uix/rules/
GroovyRule.java 19 import groovy.lang.Script;
33 * Implementation of a rule using a Groovy script.
37 private final Script mScript;
42 public GroovyRule(String name, Script script) {
44 mScript = script;
  /external/protobuf/gtest/xcode/Scripts/
versiongenerate.py 3 """A script to prepare version informtion for use the gtest Info.plist file.
5 This script extracts the version information from the configure.ac file and
11 This script makes the following assumptions (these are faults of the script,
58 // This file is autogenerated by the versiongenerate.py script. This script
59 // is executed in a "Run Script" build phase when creating gtest.framework. This
  /external/webkit/JavaScriptCore/tests/mozilla/js1_3/Script/
script-001.js 23 File Name: script-001.js
34 js> s = new Script
39 js> s = new Script()
51 [object Script]
93 js> s = new Script("3+4")
100 js> s2 = new Script();
124 var SECTION = "script-001";
133 var s = new Script();
137 "var s = new Script(); typeof s",
143 "[object Script]",
    [all...]
  /frameworks/base/graphics/java/android/renderscript/
Script.java 22 public class Script extends BaseObj {
32 Script mScript;
45 Script(int id, RenderScript rs) {
131 void transferObject(Script s) {
  /external/webkit/JavaScriptCore/tests/mozilla/js1_5/Scope/
regress-220584.js 38 * 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/webkit/WebCore/bindings/v8/
WorkerContextExecutionProxy.h 75 // Evaluate a script file in the current execution environment.
76 ScriptValue evaluate(const String& script, const String& fileName, int baseLine, WorkerContextExecutionState*);
92 // Run an already compiled script.
93 v8::Local<v8::Value> runScript(v8::Handle<v8::Script>);
  /external/webkit/WebCore/loader/
CachedScript.cpp 38 : CachedResource(url, Script)
73 const String& CachedScript::script() function in class:WebCore::CachedScript
  /frameworks/base/libs/rs/java/ImageProcessing/src/com/android/rs/image/
ImageProcessingActivity.java 29 import android.renderscript.Script;
39 private Script.Invokable mInvokable;
169 private Script.Invokable createScript() {
199 Script.Invokable invokable = sb.addInvokable("main");
203 ScriptC script = sb.create(); local
204 script.bindAllocation(mParamsAllocation, 0);
205 script.bindAllocation(mInPixelsAllocation, 1);
206 script.bindAllocation(mOutPixelsAllocation, 2);

Completed in 322 milliseconds

1 2 3 4 5