HomeSort by relevance Sort by last modified time
    Searched refs:Script (Results 151 - 175 of 263) sorted by null

1 2 3 4 5 67 8 91011

  /external/webkit/Source/WebCore/bindings/v8/
V8LazyEventListener.cpp 120 v8::Handle<v8::Script> script = V8Proxy::compileScript(codeExternalString, m_sourceURL, m_position); local
121 if (!script.IsEmpty()) {
122 v8::Local<v8::Value> value = proxy->runScript(script, false);
ScriptController.cpp 139 // script object properly.
160 // No script is running, so it is user-initiated unless the gesture stack
165 V8Proxy* activeProxy = activeFrame->script()->proxy();
191 const String* sourceURL = activeFrame->script()->sourceURL();
196 if (activeFrame->script()->allowPopupsFromPlugin())
198 // This is the <script>window.open(...)</script> case or a timer callback -> block it.
219 // Evaluate a script file in the environment of this proxy.
291 v8::Handle<v8::Script> script = v8::Script::Compile(source, name) local
    [all...]
V8Proxy.h 157 // Evaluate JavaScript in a new isolated world. The script gets its own
163 // Returns true if the proxy is currently executing a script in V8.
166 // Evaluate a script file in the current execution environment.
168 // If cannot evalute the script, it returns an error.
171 // Run an already compiled script.
172 v8::Local<v8::Value> runScript(v8::Handle<v8::Script>, bool isInlineCode);
189 // Returns V8Proxy object associated with a script execution context.
206 // script engine; the context that is at the bottom of the JS function stack.
241 static v8::Handle<v8::Script> compileScript(v8::Handle<v8::String> code, const String& fileName, const TextPosition0& scriptStartPosition, v8::ScriptData* = 0);
314 // True for <a href="javascript:foo()"> and false for <script>foo()</script>
    [all...]
  /external/webkit/Source/WebCore/html/parser/
HTMLPreloadScanner.cpp 130 cachedResourceLoader->preload(CachedResource::Script, m_urlToLoad, m_charset, scanningBody);
167 // the pending script doesn't end up calling document.write.
  /external/webkit/Source/WebCore/loader/cache/
CachedResource.h 62 Script,
  /frameworks/base/graphics/java/android/renderscript/
RenderScriptGL.java 35 * root script which is the display window for graphical output. When the
36 * system needs to update the display the currently bound root script will be
37 * called. This script is expected to issue the rendering commands to repaint
262 * Temporarly halt calls to the root rendering script.
272 * Resume calls to the root rendering script.
283 * Set the script to handle calls to render the primary surface.
285 * @param s Graphics script to process rendering requests.
287 public void bindRootScript(Script s) {
295 * rendering script.
307 * root rendering script
    [all...]
  /frameworks/compile/mclinker/lib/LD/
GroupReader.cpp 58 if ((*input)->type() == Input::Script ||
  /frameworks/rs/driver/
rsdCore.cpp 176 static RsdCpuReference::CpuScript * LookupScript(Context *, const Script *s) {
rsdRuntimeStubs.cpp 214 static void SC_ClearFrameBufferObjectDepthTarget(Context *, Script *) {
219 static void SC_ClearFrameBufferObjectTargets(Context *, Script *) {
449 const Script *sc = RsdCpuReference::getTlsScript();
453 static void SC_ForEach_SAA(Script *target,
460 static void SC_ForEach_SAAU(Script *target,
468 static void SC_ForEach_SAAUS(Script *target,
477 static void SC_ForEach_SAAUL(Script *target,
486 static void SC_ForEach_SAAULS(Script *target,
504 const Script *sc = RsdCpuReference::getTlsScript();
    [all...]
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
Blend.java 26 import android.renderscript.Script;
LevelsV4.java 25 import android.renderscript.Script;
TestBase.java 30 import android.renderscript.Script;
  /frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
Blend.java 26 import android.renderscript.Script;
LevelsV4.java 25 import android.renderscript.Script;
TestBase.java 30 import android.renderscript.Script;
  /external/v8/src/
handles.cc 356 Foreign* foreign = Script::cast(wrapper->value())->wrapper();
366 Handle<JSValue> GetScriptWrapper(Handle<Script> script) {
367 if (script->wrapper()->foreign_address() != NULL) {
368 // Return the script wrapper directly from the cache.
370 reinterpret_cast<JSValue**>(script->wrapper()->foreign_address()));
373 // Construct a new script wrapper.
378 result->set_value(*script);
386 script->wrapper()->set_foreign_address(
392 // Init line_ends array with code positions of line ends inside script
    [all...]
d8.cc 158 Handle<Script> script = Script::Compile(source, name); local
159 if (script.IsEmpty()) {
165 Handle<Value> result = script->Run();
745 // Run the d8 shell utility script in the utility context
755 Handle<Script> script = Script::Compile(source, name); local
756 script->Run()
    [all...]
frames.cc 234 Object* script = JSFunction::cast(frame()->function())->shared()->script();
236 return (script->IsScript() &&
237 Script::TYPE_NATIVE != Script::cast(script)->type()->value());
766 Object* maybe_script = shared->script();
768 Handle<Script> script(Script::cast(maybe_script))
    [all...]
messages.js 82 // objects between script tags in a browser setting.
118 * Set up the Script function and constructor.
120 %FunctionSetInstanceClassName(Script, 'Script');
121 %SetProperty(Script.prototype, 'constructor', Script,
123 %SetCode(Script, function(x) {
124 // Script objects can only be created by the VM.
284 var script = %MessageGetScript(message);
285 var location = script.locationFromPosition(start_position, true)
    [all...]
isolate.cc 573 Handle<Script> script(Script::cast(fun->shared()->script()));
576 int script_line_offset = script->line_offset()->value();
578 int line_number = GetScriptLineNumber(script, position);
582 Handle<FixedArray> line_ends(FixedArray::cast(script->line_ends()));
587 // For the case where the code is on the same line as the script
589 column_offset += script->column_offset()->value();
605 Handle<Object> script_name(script->name(), this)
996 Object* script = fun->shared()->script(); local
    [all...]
  /prebuilts/sdk/renderscript/lib/
javalib.jar 
  /frameworks/rs/cpp/
rsCppStructs.h 42 class Script;
99 Element *SCRIPT;
310 static sp<const Element> SCRIPT(sp<RS> rs);
573 class Script : public BaseObj {
577 Script(void *id, sp<RS> rs);
630 class ScriptC : public Script {
639 class ScriptIntrinsic : public Script {
  /external/v8/test/cctest/
test-lockers.cc 52 using ::v8::Script;
650 v8::Handle<Script> script = v8::Script::Compile(source); local
651 v8::Handle<Value> result = script->Run();
test-compiler.cc 317 // Regression 236. Calling InitLineEnds on a Script with undefined
323 Handle<Script> script = FACTORY->NewScript(FACTORY->empty_string()); local
324 script->set_source(HEAP->undefined_value());
325 CHECK_EQ(-1, GetScriptLineNumber(script, 0));
326 CHECK_EQ(-1, GetScriptLineNumber(script, 100));
327 CHECK_EQ(-1, GetScriptLineNumber(script, -1));
347 v8::Script::Compile(script_body, &origin)->Run();
  /external/v8/samples/
shell.cc 273 v8::Handle<v8::Script> script = v8::Script::Compile(source, name); local
274 if (script.IsEmpty()) {
280 v8::Handle<v8::Value> result = script->Run();

Completed in 1178 milliseconds

1 2 3 4 5 67 8 91011