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

1 2 3 4 56 7 8 91011

  /frameworks/rs/
rsContext.h 121 void setRootScript(Script *);
152 uint32_t runScript(Script *s);
259 ObjectBaseRef<Script> mRootScript;
rsRuntime.h 34 void rsrAllocationSyncAll(Context *, Script *, Allocation *);
117 float rsrGetDt(Context *, const Script *sc);
147 void rsrForEach(Context *, Script *target,
  /frameworks/rs/cpu_ref/
rsCpuIntrinsicBlend.cpp 30 virtual void populateScript(Script *);
33 RsdCpuScriptIntrinsicBlend(RsdCpuReferenceImpl *ctx, const Script *s, const Element *e);
460 const Script *s, const Element *e)
469 void RsdCpuScriptIntrinsicBlend::populateScript(Script *s) {
474 const Script *s, const Element *e) {
rsCpuIntrinsicBlur.cpp 29 virtual void populateScript(Script *);
36 RsdCpuScriptIntrinsicBlur(RsdCpuReferenceImpl *ctx, const Script *s, const Element *e);
387 const Script *s, const Element *e)
425 void RsdCpuScriptIntrinsicBlur::populateScript(Script *s) {
434 RsdCpuScriptImpl * rsdIntrinsic_Blur(RsdCpuReferenceImpl *ctx, const Script *s, const Element *e) {
  /external/webkit/Source/JavaScriptCore/
jsc.cpp 89 struct Script {
93 Script(bool isFile, char *argument)
109 Vector<Script> scripts;
211 Vector<char> script; local
212 if (!fillBufferWithContentsOfFile(fileName, script))
219 evaluate(globalObject->globalExec(), globalObject->globalScopeChain(), makeSource(script.data(), fileName));
228 Vector<char> script; local
229 if (!fillBufferWithContentsOfFile(fileName, script))
233 Completion result = evaluate(globalObject->globalExec(), globalObject->globalScopeChain(), makeSource(script.data(), fileName));
242 Vector<char> script; local
376 UString script; local
    [all...]
  /external/harfbuzz/src/
harfbuzz-open.h 45 /* Script list related structures */
80 HB_ScriptTable Script; /* Script table */
  /external/harfbuzz_ng/src/hb-old/
harfbuzz-open.h 45 /* Script list related structures */
80 HB_ScriptTable Script; /* Script table */
  /frameworks/base/graphics/java/android/renderscript/
ScriptIntrinsicColorMatrix.java 158 * @return Script.KernelID The KernelID object.
160 public Script.KernelID getKernelID() {
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
ScriptIntrinsicColorMatrix.java 163 * @return Script.KernelID The KernelID object.
165 public Script.KernelID getKernelID() {
  /external/libpng/contrib/gregbook/
makevms.com 4 $! Script created by Martin Zinser for libpng; modified by Greg Roelofs
  /external/webkit/Source/WebCore/bindings/v8/
WorkerContextExecutionProxy.cpp 191 ScriptValue WorkerContextExecutionProxy::evaluate(const String& script, const String& fileName, const TextPosition0& scriptStartPosition, WorkerContextExecutionState* state)
202 v8::Local<v8::String> scriptString = v8ExternalString(script);
203 v8::Handle<v8::Script> compiledScript = V8Proxy::compileScript(scriptString, fileName, scriptStartPosition);
207 m_workerContext->script()->forbidExecution();
232 v8::Local<v8::Value> WorkerContextExecutionProxy::runScript(v8::Handle<v8::Script> script)
234 if (script.IsEmpty())
240 script = V8Proxy::compileScript(code, "", TextPosition0::minimumPosition());
244 ASSERT(script.IsEmpty());
246 if (script.IsEmpty()
    [all...]
V8Proxy.cpp 203 v8::Handle<v8::Script> V8Proxy::compileScript(v8::Handle<v8::String> code, const String& fileName, const TextPosition0& scriptStartPosition, v8::ScriptData* scriptData)
210 v8::Handle<v8::Script> script = v8::Script::Compile(code, &origin, scriptData); local
211 return script;
353 // Compile the script.
362 v8::Handle<v8::Script> script = compileScript(code, source.url(), WTF::toZeroBasedTextPosition(source.startPosition()), scriptData.get()); local
369 // and false for <script>doSomething</script>. We make a rough guess a
    [all...]
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8InjectedScriptManager.cpp 93 // Inject javascript into the context. The compiled script is supposed to evaluate into
96 // injected script id and explicit reference to the inspected global object. The function is expected
98 v8::Local<v8::Script> script = v8::Script::Compile(v8String(scriptSource)); local
99 v8::Local<v8::Value> v = script->Run();
  /external/webkit/Source/WebCore/inspector/front-end/
DebuggerModel.js 44 ParsedScriptSource: "parsed-script-source",
45 FailedToParseScriptSource: "failed-to-parse-script-source",
81 var script = this._scripts[id];
82 if (url === script.sourceURL && lineNumber === script.lineOffset)
83 minColumnNumber = minColumnNumber ? Math.min(minColumnNumber, script.columnOffset) : script.columnOffset;
141 var script = this._scripts[sourceID];
142 if (filter(script))
143 scripts.push(script);
    [all...]
Resource.js 45 Script: 4,
52 return (type === this.Document) || (type === this.Stylesheet) || (type === this.Script) || (type === this.XHR);
66 case this.Script:
67 return WebInspector.UIString("Script");
91 case this.Script:
92 return "script";
385 case WebInspector.Resource.Type.Script:
  /external/v8/src/
debug.h 161 // Cache of all script objects in the heap. When a script is added a weak handle
163 // callback takes care of removing the script from the cache. The key used in
164 // the cache is the script id.
170 // Add script to the cache.
171 void Add(Handle<Script> script);
180 // Calculate the hash value from the key (script id).
185 // Scripts match if their keys (script id) match.
391 // Script cache handling
    [all...]
compilation-cache.cc 121 // Probe the script generation tables. Make sure not to leak handles
139 // We only re-use a cached function for some script source code if the
140 // script originates from the same place. This is to avoid issues
147 Handle<Script> script = local
148 Handle<Script>(Script::cast(function_info->script()), isolate());
149 // If the script name isn't set, the boilerplate script should hav
    [all...]
codegen.cc 123 Handle<Script> script = info->script(); local
124 if (!script->IsUndefined() && !script->source()->IsUndefined()) {
126 StringInputBuffer stream(String::cast(script->source()));
  /external/skia/src/sfnt/
SkPanose.h 23 ((Script, 3))
217 struct Script {
360 } script; member in union:SkPanose::Data
454 ((Script, 16))
  /external/harfbuzz_ng/src/
main.cc 115 printf (" %d script(s) found in table\n", num_scripts);
117 const Script &script = g.get_script (n_script); local
118 printf (" Script %2d of %2d: %.4s\n", n_script, num_scripts,
121 if (!script.has_default_lang_sys())
123 int num_langsys = script.get_lang_sys_count ();
124 printf (" %d language system(s) found in script\n", num_langsys);
125 for (int n_langsys = script.has_default_lang_sys() ? -1 : 0; n_langsys < num_langsys; n_langsys++) {
127 ? script.get_default_lang_sys ()
128 : script.get_lang_sys (n_langsys)
    [all...]
  /external/jpeg/
jmemmac.c 64 #include <Script.h> /* for smSystemScript */
  /external/libvpx/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/qemu/distrib/jpeg-6b/
jmemmac.c 64 #include <Script.h> /* for smSystemScript */
  /external/v8/test/cctest/
test-log.cc 349 // Script needs to have a name in order to trigger InitLineEnds execution.
351 v8::Handle<v8::Script> evil_script = v8::Script::Compile(source, origin);
515 v8::Handle<v8::Script> script = v8::Script::Compile(source_str, v8_str("")); local
516 if (script.IsEmpty()) {
521 v8::Handle<v8::Value> result = script->Run();
test-serialize.cc 327 v8::Local<v8::Script> script = v8::Script::Compile(source); local
328 CHECK_EQ(4, script->Run()->Int32Value());
344 v8::Local<v8::Script> script = v8::Script::Compile(source); local
345 CHECK_EQ(4, script->Run()->Int32Value());

Completed in 2200 milliseconds

1 2 3 4 56 7 8 91011