HomeSort by relevance Sort by last modified time
    Searched refs:Script (Results 76 - 100 of 403) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/v8/test/cctest/
test-threads.cc 44 v8::Handle<v8::Script> script = v8::Script::Compile( local
47 script->Run();
52 script->Run();
77 v8::Handle<v8::Script> script = v8::Script::Compile( local
84 CHECK(script->Run()->IsTrue());
94 // Rerun the script
    [all...]
cctest.h 206 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();
  /frameworks/base/graphics/java/android/renderscript/
ScriptIntrinsic3DLUT.java 95 * @return Script.KernelID The KernelID object.
97 public Script.KernelID getKernelID() {
  /frameworks/compile/libbcc/include/bcc/Renderscript/
RSScript.h 20 #include "bcc/Script.h"
33 class RSScript : public Script {
69 // Set the associated RSInfo of the script.
  /frameworks/rs/
rsScriptIntrinsic.h 28 class ScriptIntrinsic : public Script {
  /external/chromium_org/chrome/browser/resources/task_manager/
measure_time.js 8 * To be included as a first script in main.html
30 measureTime.startInterval('Load.Script');
  /external/chromium_org/gin/modules/
file_module_provider.cc 40 v8::Handle<v8::Script> script = v8::Script::New( local
43 runner->Run(script);
  /external/chromium_org/v8/src/
allocation-tracker.h 110 UnresolvedLocation(Script* script, int start, FunctionInfo* info);
118 Handle<Script> script_;
gdb-jit.h 61 V(SCRIPT) \
118 Script* script,
122 Handle<Script> script,
liveedit.h 34 // User should be able to change script on already running VM. This feature
41 // script.source[positions, positions+length] = new_string;
43 // change area. Then both old and new versions of script are fully compiled
48 // to them in a new script version. However, new version of code will
59 // in a particular script. It gets called from compiler all the time, but
87 static JSArray* GatherCompileInfo(Handle<Script> script,
98 // Updates script field in FunctionSharedInfo.
105 // For a script updates its source field. If old_script_name is provided
106 // (i.e. is a String), also creates a copy of the script with its origina
    [all...]
handles.h 254 // Get the JS object corresponding to the given script; create it
256 Handle<JSValue> GetScriptWrapper(Handle<Script> script);
258 // Script line number computations. Note that the line number is zero-based.
259 void InitScriptLineEnds(Handle<Script> script);
265 int GetScriptLineNumber(Handle<Script> script, int code_position);
267 int GetScriptLineNumberSafe(Handle<Script> script, int code_position)
    [all...]
accessors.cc 244 Object* script = JSValue::cast(object)->value(); local
245 return Script::cast(script)->source();
264 Object* script = JSValue::cast(object)->value(); local
265 return Script::cast(script)->name();
282 Object* script = JSValue::cast(object)->value(); local
283 return Script::cast(script)->id();
302 Object* script = JSValue::cast(object)->value() local
322 Object* script = JSValue::cast(object)->value(); local
342 Object* script = JSValue::cast(object)->value(); local
362 Object* script = JSValue::cast(object)->value(); local
382 Object* script = JSValue::cast(object)->value(); local
432 Object* script = JSValue::cast(object)->value(); local
452 Object* script = JSValue::cast(object)->value(); local
514 Object* script = JSValue::cast(object)->value(); local
    [all...]
allocation-tracker.cc 224 if (shared->script()->IsScript()) {
225 Script* script = Script::cast(shared->script()); local
226 if (script->name()->IsName()) {
227 Name* name = Name::cast(script->name());
230 info->script_id = script->id()->value();
234 script,
244 Script* script, int start, FunctionInfo* info
    [all...]
bootstrapper.h 45 explicit SourceCodeCache(Script::Type type): type_(type), cache_(NULL) { }
78 Script::cast(shared->script())->set_type(Smi::FromInt(type_));
82 Script::Type type_;
  /external/v8/src/
gdb-jit.h 61 V(SCRIPT) \
118 Script* script,
122 Handle<Script> script,
liveedit.h 34 // User should be able to change script on already running VM. This feature
41 // script.source[positions, positions+length] = new_string;
43 // change area. Then both old and new versions of script are fully compiled
48 // to them in a new script version. However, new version of code will
59 // in a particular script. It gets called from compiler all the time, but
87 static JSArray* GatherCompileInfo(Handle<Script> script,
98 // Updates script field in FunctionSharedInfo.
105 // For a script updates its source field. If old_script_name is provided
106 // (i.e. is a String), also creates a copy of the script with its origina
    [all...]
compiler.h 44 explicit CompilationInfo(Handle<Script> script);
67 Handle<Script> script() const { return script_; } function in class:v8::internal::BASE_EMBEDDED
192 if (script_->type()->value() == Script::TYPE_NATIVE) {
243 Handle<Script> script_;
311 Handle<Script> script);
317 Handle<Script> script);
    [all...]
handles.h 215 // Get the JS object corresponding to the given script; create it
217 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)
    [all...]
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
Histogram.java 61 Script.LaunchOptions lo = new Script.LaunchOptions();
  /frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
UT_foreach_bounds.java 54 Script.LaunchOptions sc = new Script.LaunchOptions();
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
ScriptIntrinsic3DLUTThunker.java 79 * @return Script.KernelID The KernelID object.
81 public Script.KernelID getKernelID() {
82 Script.KernelID k = createKernelID(0, 3, null, null);
ScriptIntrinsicLUTThunker.java 87 public Script.KernelID getKernelID() {
88 Script.KernelID k = createKernelID(0, 3, null, null);
ScriptCThunker.java 42 android.renderscript.Script.KernelID thunkCreateKernelID(
54 android.renderscript.Script.KernelID kid = createKernelID(slot, sig, nein, neout);
121 android.support.v8.renderscript.Script.LaunchOptions sc) {
123 android.renderscript.Script.LaunchOptions lo = null;
125 lo = new android.renderscript.Script.LaunchOptions();
221 android.renderscript.Script.FieldID thunkCreateFieldID(int slot, Element e) {
  /frameworks/rs/cpu_ref/
rsCpuIntrinsic3DLUT.cpp 30 virtual void populateScript(Script *);
36 RsdCpuScriptIntrinsic3DLUT(RsdCpuReferenceImpl *ctx, const Script *s, const Element *e);
169 const Script *s, const Element *e)
178 void RsdCpuScriptIntrinsic3DLUT::populateScript(Script *s) {
188 const Script *s, const Element *e) {
rsCpuIntrinsicYuvToRGB.cpp 38 virtual void populateScript(Script *);
44 RsdCpuScriptIntrinsicYuvToRGB(RsdCpuReferenceImpl *ctx, const Script *s, const Element *e);
209 RsdCpuReferenceImpl *ctx, const Script *s, const Element *e)
218 void RsdCpuScriptIntrinsicYuvToRGB::populateScript(Script *s) {
228 const Script *s, const Element *e) {

Completed in 1057 milliseconds

1 2 34 5 6 7 8 91011>>