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

12 3 4 5

  /frameworks/base/libs/rs/
rsScriptC.h 34 class ScriptC : public Script
  /frameworks/base/graphics/java/android/renderscript/
ScriptC.java 33 public class ScriptC extends Script {
40 public static class Builder extends Script.Builder {
RenderScriptGL.java 72 public void contextBindRootScript(Script s) {
  /external/v8/samples/
lineprocessor.cc 41 * script. The script is specified with command line parameters.
48 * --main-cycle-in-cpp option. Script must declare a function named
50 * for processing every time. This is a sample script:
58 * --main-cycle-in-js option. Script gets run one time at all and gets
60 * and print converted lines to output itself. This a sample script:
77 * Normally the program compiles custom script and immediately runs it.
78 * If programmer needs to debug script from the very beginning, he should
85 * respond only when V8 is running some script. In particular, when this program
103 bool RunCppCycle(v8::Handle<v8::Script> script, v8::Local<v8::Context> context
220 v8::Handle<v8::Script> script; local
    [all...]
  /external/webkit/WebCore/bindings/v8/
V8Proxy.h 123 // script contexts that belong to that group. Otherwise, the extension is
206 // Evaluate JavaScript in a new isolated world. The script gets its own
212 // Evaluate a script file in the current execution environment.
214 // If cannot evalute the script, it returns an error.
217 // Run an already compiled script.
218 v8::Local<v8::Value> runScript(v8::Handle<v8::Script>, bool isInlineCode);
221 v8::Local<v8::Value> runScriptInternal(v8::Handle<v8::Script> script, bool inline_code);
236 // Returns V8Proxy object associated with a script execution context.
253 // script engine; the context that is at the bottom of the JS function stack
    [all...]
V8Proxy.cpp 242 v8::Handle<v8::Script> V8Proxy::compileScript(v8::Handle<v8::String> code, const String& fileName, int baseLine)
246 v8::Handle<v8::Script> script = compileScriptInternal(code, fileName, baseLine); local
248 return script;
251 v8::Handle<v8::Script> V8Proxy::compileScriptInternal(v8::Handle<v8::String> code, const String& fileName, int baseLine)
258 v8::Handle<v8::Script> script = v8::Script::Compile(code, &origin); local
259 return script;
377 // Compile the script
385 v8::Handle<v8::Script> script = compileScript(code, source.url(), source.startLine() - 1); local
    [all...]
WorkerContextExecutionProxy.cpp 115 return workerContext->script()->proxy();
188 ScriptValue WorkerContextExecutionProxy::evaluate(const String& script, const String& fileName, int baseLine, WorkerContextExecutionState* state)
197 v8::Local<v8::String> scriptString = v8ExternalString(script);
198 v8::Handle<v8::Script> compiledScript = V8Proxy::compileScript(scriptString, fileName, baseLine);
218 v8::Local<v8::Value> WorkerContextExecutionProxy::runScript(v8::Handle<v8::Script> script)
220 if (script.IsEmpty())
226 script = V8Proxy::compileScript(code, "", 0);
230 ASSERT(script.IsEmpty());
232 if (script.IsEmpty()
    [all...]
V8LazyEventListener.cpp 117 v8::Handle<v8::Script> script = V8Proxy::compileScript(codeExternalString, m_sourceURL, m_lineNumber); local
118 if (!script.IsEmpty()) {
119 v8::Local<v8::Value> value = proxy->runScript(script, false);
  /external/v8/src/mips/
codegen-mips.h 125 Handle<Script> script);
132 inline Handle<Script> script();
276 Handle<Script> script_;
  /external/webkit/WebCore/loader/
DocLoader.cpp 162 return static_cast<CachedScript*>(requestResource(CachedResource::Script, url, charset));
187 case CachedResource::Script:
218 case CachedResource::Script:
225 // These resource can inject script into the current document.
453 if (type == CachedResource::Script || type == CachedResource::CSSStyleSheet)
507 if (res->type() == CachedResource::Script) {
  /external/webkit/JavaScriptCore/
jsc.cpp 89 struct Script {
93 Script(bool isFile, char *argument)
109 Vector<Script> scripts;
212 Vector<char> script; local
213 if (!fillBufferWithContentsOfFile(fileName, script))
219 evaluate(globalObject->globalExec(), globalObject->globalScopeChain(), makeSource(script.data(), fileName));
230 Vector<char> script; local
231 if (!fillBufferWithContentsOfFile(fileName, script))
235 Completion result = evaluate(globalObject->globalExec(), globalObject->globalScopeChain(), makeSource(script.data(), fileName));
246 Vector<char> script; local
367 UString script; local
    [all...]
  /external/v8/src/
messages.js 31 // Matches Script::Type from objects.h
36 // Matches Script::CompilationType from objects.h
115 * Setup the Script function and constructor.
117 %FunctionSetInstanceClassName(Script, 'Script');
118 %SetProperty(Script.prototype, 'constructor', Script, DONT_ENUM);
119 %SetCode(Script, function(x) {
120 // Script objects can only be created by the VM.
205 var location = message.script.locationFromPosition(message.startPos, true)
    [all...]
handles.h 265 // Get the JS object corresponding to the given script; create it
267 Handle<JSValue> GetScriptWrapper(Handle<Script> script);
269 // Script line number computations.
270 void InitScriptLineEnds(Handle<Script> script);
271 int GetScriptLineNumber(Handle<Script> script, int code_position);
d8.cc 121 Handle<Script> script = Script::Compile(source, name); local
122 if (script.IsEmpty()) {
128 Handle<Value> result = script->Run();
455 // Run the d8 shell utility script in the utility context
465 Handle<Script> script = Script::Compile(source, name); local
466 script->Run()
    [all...]
debug.h 153 // Cache of all script objects in the heap. When a script is added a weak handle
155 // callback takes care of removing the script from the cache. The key used in
156 // the cache is the script id.
162 // Add script to the cache.
163 void Add(Handle<Script> script);
172 // Calculate the hash value from the key (script id).
175 // Scripts match if their keys (script id) match.
363 // Script cache handling
    [all...]
compilation-cache.cc 143 static CompilationCacheScript script(kScriptGenerations);
148 {&script, &eval_global, &eval_contextual, &reg_exp};
202 // We only re-use a cached function for some script source code if the
203 // script originates from the same place. This is to avoid issues
209 Handle<Script> script = local
210 Handle<Script>(Script::cast(boilerplate->shared()->script()));
211 // If the script name isn't set, the boilerplate script should hav
    [all...]
debug.cc 558 void ScriptCache::Add(Handle<Script> script) {
559 // Create an entry in the hash map for the script.
560 int id = Smi::cast(script->id())->value();
564 ASSERT(*script == *reinterpret_cast<Script**>(entry->value));
568 // Globalize the script object, make it weak and use the location of the
570 Handle<Script> script_ =
571 Handle<Script>::cast((GlobalHandles::Create(*script)));
    [all...]
  /external/webkit/WebCore/inspector/
InspectorResource.h 65 Script,
  /external/webkit/WebCore/inspector/front-end/
Resource.js 103 Script: 4,
110 return (type === this.Document) || (type === this.Stylesheet) || (type === this.Script) || (type === this.XHR);
124 case this.Script:
125 return WebInspector.UIString("script");
388 case WebInspector.Resource.Type.Script:
476 addScript: function(script)
478 if (!script)
480 this.scripts.unshift(script);
481 script.resource = this;
497 removeScript: function(script)
    [all...]
  /external/libpng/contrib/gregbook/
makevms.com 4 $! Script created by Martin Zinser for libpng; modified by Greg Roelofs
  /external/webkit/WebCore/bindings/v8/custom/
V8InjectedScriptHostCustom.cpp 99 // Inject javascript into the context. The compiled script is supposed to evaluate into
102 // injected script id and explicit reference to the inspected global object. The function is expected
104 v8::Local<v8::Script> script = v8::Script::Compile(v8String(scriptSource)); local
105 v8::Local<v8::Value> v = script->Run();
  /sdk/layoutopt/libs/uix/src/com/android/layoutopt/uix/
LayoutAnalyzer.java 44 import groovy.lang.Script;
98 Script script = shell.parse(stream); local
99 mRules.add(new GroovyRule(name, script));
  /external/jpeg/
jmemmac.c 64 #include <Script.h> /* for smSystemScript */
  /external/libvpx/examples/includes/geshi/contrib/
example.php 3 * GeSHi example script
5 * Just point your browser at this script (with geshi.php in the parent directory,
43 // you sanitise correctly if you use $_POST of course - this very script has had a security
44 // advisory against it in the past because of this. Please try not to use this script on a
160 <h2>GeSHi Example Script</h2>
161 <p>To use this script, make sure that <strong>geshi.php</strong> is in the parent directory or in your
  /external/v8/test/cctest/
test-serialize.cc 334 v8::Local<v8::Script> script = v8::Script::Compile(source); local
335 CHECK_EQ(4, script->Run()->Int32Value());
352 v8::Local<v8::Script> script = v8::Script::Compile(source); local
353 CHECK_EQ(4, script->Run()->Int32Value());

Completed in 275 milliseconds

12 3 4 5