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

<<11121314151617

  /frameworks/compile/libbcc/tools/bcc_compat/
Main.cpp 38 #include <bcc/Script.h>
152 llvm::errs() << "Out of memory when create script for file `"
283 fprintf(stderr, "Failed to compile script!");
  /frameworks/compile/mclinker/lib/Core/
Linker.cpp 44 /// emulate - To set up target-dependent options and default linker script.
120 case Input::Script:
195 // 9. - add standard symbols, target-dependent symbols and script symbols
  /frameworks/rs/
rsContext.cpp 107 uint32_t Context::runScript(Script *s) {
187 ALOGV("RS: Frame (%i), Script %2.1f%% (%i), Swap %2.1f%% (%i), Idle %2.1f%% (%lli), Internal %2.1f%% (%lli), Avg fps: %u",
227 sprintf(buffer, "Avg fps %u, Frame %i ms, Script %i ms", mAverageFPS, mTimeMSLastFrame, mTimeMSLastScript);
306 rsc->props.mLogScripts = getProp("debug.rs.script") != 0;
675 void Context::setRootScript(Script *s) {
794 Script *s = static_cast<Script *>(vs);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
ImageFilterGrad.java 32 import android.support.v8.renderscript.Script.LaunchOptions;
ImageFilterVignette.java 30 import android.support.v8.renderscript.Script.LaunchOptions;
  /external/v8/src/
liveedit.cc 598 static void CompileScriptForTracker(Isolate* isolate, Handle<Script> script) {
603 CompilationInfo info(script);
816 // Saves only function code, because for a script function we
892 JSArray* LiveEdit::GatherCompileInfo(Handle<Script> script,
898 Handle<Object> original_source = Handle<Object>(script->source());
899 script->set_source(*source);
901 CompileScriptForTracker(isolate, script);
903 script->set_source(*original_source)
    [all...]
factory.cc 356 Handle<Script> Factory::NewScript(Handle<String> source) {
357 // Generate id for this script.
361 // Script ids start from one.
373 // Create and initialize script object.
375 Handle<Script> script = Handle<Script>::cast(NewStruct(SCRIPT_TYPE)); local
376 script->set_source(*source);
377 script->set_name(heap->undefined_value());
378 script->set_id(heap->last_script_id())
    [all...]
api.cc 1772 i::Handle<i::JSValue> script = local
1789 i::Handle<i::JSValue> script = local
    [all...]
api.h 222 OpenHandle(const Script* data);
308 MAKE_OPEN_HANDLE(Script, Object)
parser.h 433 Parser(Handle<Script> script,
816 Handle<Script> script_;
  /frameworks/rs/cpp/
rsCppStructs.h 44 class Script;
215 sp<const Element> SCRIPT;
280 * specifying that it can be used from a script as well as input to a
348 * from the top level LOD and place them into the script memory space. If
747 * Utility function for returning an Element containing a single Script.
751 static sp<const Element> SCRIPT(sp<RS> rs);
    [all...]
  /external/chromium_org/v8/src/
frames.cc 207 Object* script = frame()->function()->shared()->script();
209 return (script->IsScript() &&
210 Script::TYPE_NATIVE != Script::cast(script)->type()->value());
817 Object* maybe_script = shared->script();
819 Handle<Script> script(Script::cast(maybe_script))
    [all...]
liveedit.cc 605 static void CompileScriptForTracker(Isolate* isolate, Handle<Script> script) {
610 CompilationInfoWithZone info(script);
855 // Saves only function code, because for a script function we
937 JSArray* LiveEdit::GatherCompileInfo(Handle<Script> script,
939 Isolate* isolate = script->GetIsolate();
943 Handle<Object>(script->source(), isolate);
944 script->set_source(*source);
954 CompileScriptForTracker(isolate, script);
    [all...]
log.cc 683 Handle<Script> script_handle;
684 if (shared && shared->script()->IsScript()) {
685 script_handle = Handle<Script>(Script::cast(shared->script()));
687 event.script = ToApiHandle<v8::Script>(script_handle);
    [all...]
  /external/v8/include/
v8.h 509 * Pre-compilation data that can be associated with a script. This
510 * data can be calculated for a script in advance of actually
511 * compiling it, and can be stored between compilations. When script
519 * Pre-compiles the specified script (context-independent).
521 * \param input Pointer to UTF-8 script source code.
522 * \param length Length of UTF-8 script source code.
527 * Pre-compiles the specified script (context-independent).
532 * \param source Script source code.
564 * The origin, within a file, of a script.
586 * A compiled JavaScript script
    [all...]
  /external/chromium/net/proxy/
proxy_resolver_v8.cc 80 // Pseudo-name for the PAC script.
81 const char kPacResourceName[] = "proxy-pac-script.js";
82 // Pseudo-name for the PAC utility script.
83 const char kPacUtilityResourceName[] = "proxy-pac-utility-script.js";
451 // (This script should never fail, as it is a string literal!)
469 // to be a legitimiate PAC script.
510 // Compiles and runs |script| in the current V8 context.
512 int RunScript(v8::Handle<v8::String> script, const char* script_name) {
515 // Compile the script.
518 v8::Local<v8::Script> code = v8::Script::Compile(script, &origin)
    [all...]
  /external/chromium-libpac/src/
proxy_resolver_v8.cc 91 // Pseudo-name for the PAC script.
92 const char kPacResourceName[] = "proxy-pac-script.js";
93 // Pseudo-name for the PAC utility script.
94 const char kPacUtilityResourceName[] = "proxy-pac-utility-script.js";
468 // (This script should never fail, as it is a string literal!)
486 // to be a legitimiate PAC script.
518 // Compiles and runs |script| in the current V8 context.
520 int RunScript(v8::Handle<v8::String> script, const char* script_name) {
523 // Compile the script.
526 v8::Local<v8::Script> code = v8::Script::Compile(script, &origin)
    [all...]
  /external/chromium_org/chrome/browser/resources/gaia_auth/
saml_injected.js 7 * Script to be injected into SAML provider pages that do not support the
108 * Returns true if the script is injected into auth main page.
  /external/chromium_org/content/renderer/pepper/
v8_var_converter_unittest.cc 416 v8::Handle<v8::Script> script(
417 v8::Script::New(v8::String::NewFromUtf8(isolate_, source)));
418 v8::Handle<v8::Object> object = script->Run().As<v8::Object>();
  /external/chromium_org/third_party/WebKit/Source/core/fetch/
Resource.cpp 404 if (type == Resource::Script)
891 case Resource::Script:
892 return "Script";
  /external/chromium_org/v8/samples/
process.cc 83 // Process function of the JavaScript script given as an argument.
84 JsHttpRequestProcessor(Isolate* isolate, Handle<String> script)
85 : isolate_(isolate), script_(script) { }
93 // Execute the script associated with this processor and extract the
95 bool ExecuteScript(Handle<String> script);
155 // Execute the script and fetch the Process method.
183 // Compile and run the script
187 // The script compiled and ran correctly. Now we fetch out the
208 bool JsHttpRequestProcessor::ExecuteScript(Handle<String> script) {
211 // We're just about to compile the script; set up an error handler t
    [all...]
  /external/chromium_org/v8/test/cctest/
test-compiler.cc 317 // Regression 236. Calling InitLineEnds on a Script with undefined
325 Handle<Script> script = factory->NewScript(factory->empty_string()); local
326 script->set_source(CcTest::heap()->undefined_value());
327 CHECK_EQ(-1, GetScriptLineNumber(script, 0));
328 CHECK_EQ(-1, GetScriptLineNumber(script, 100));
329 CHECK_EQ(-1, GetScriptLineNumber(script, -1));
351 v8::Script::Compile(script_body, &origin)->Run();
  /external/harfbuzz_ng/src/
hb-ot-layout.cc 289 const OT::Script &s = get_gsubgpos_table (face, table_tag).get_script (script_index);
302 const OT::Script &s = get_gsubgpos_table (face, table_tag).get_script (script_index);
  /external/libvpx/libvpx/examples/includes/geshi/contrib/
langcheck.php 3 * GeSHi example script
5 * Just point your browser at this script (with geshi.php in the parent directory,
67 <title>GeSHi Language File Validation Script</title>
119 <h2>GeSHi Language File Validation Script</h2>
120 <p>To use this script, make sure that <strong>geshi.php</strong> is in the
123 <p>Everything else will be done by this script automatically. After the script
154 report_error(TYPE_ERROR, 'The path "'.GESHI_LANG_ROOT.'" is not readable to this script!');
424 'REGEXPS', 'SCRIPT');
    [all...]
  /external/v8/samples/
process.cc 81 // Process function of the JavaScript script given as an argument.
82 explicit JsHttpRequestProcessor(Handle<String> script) : script_(script) { }
90 // Execute the script associated with this processor and extract the
92 bool ExecuteScript(Handle<String> script);
146 // Execute the script and fetch the Process method.
172 // Compile and run the script
176 // The script compiled and ran correctly. Now we fetch out the
197 bool JsHttpRequestProcessor::ExecuteScript(Handle<String> script) {
200 // We're just about to compile the script; set up an error handler t
    [all...]

Completed in 563 milliseconds

<<11121314151617