| /external/chromium_org/extensions/renderer/ | 
| script_injection.h | 36   // Map of extensions IDs to the executing script paths. 39   // A struct containing information about a script run.
 48     // A map of extension ids to executing script paths.
 58   // script injection.
 61   ScriptInjection(scoped_ptr<UserScript> script,
 65   // Inject the script into the given |frame| if the script should run on the
 66   // frame and has permission to do so. If the script requires user consent,
 68   // If the script is run immediately, |scripts_run_info| is updated with
 78   // If |frame_out| is non-NULL and a script was run, |frame_out| will b
 93  const UserScript* script() { return script_.get(); }  function in class:extensions::ScriptInjection
 [all...]
 | 
| /external/chromium_org/gin/ | 
| shell_runner.cc | 18 using v8::Script; 70   v8::Handle<Script> script = Script::Compile(  local
 77   Run(script);
 100 void ShellRunner::Run(v8::Handle<Script> script) {
 104   script->Run();
 
 | 
| /external/chromium_org/third_party/WebKit/Source/bindings/v8/ | 
| V8WorkerGlobalScopeEventListener.cpp | 59     WorkerScriptController* script = toWorkerGlobalScope(scriptState()->executionContext())->script();  local 60     if (!script)
 
 | 
| /external/chromium_org/third_party/WebKit/Source/core/css/ | 
| CSSFontSelector.cpp | 101     UScriptCode script = fontDescription.script();  local 105         return FontCache::getGenericFamilyNameForScript(FontFamilyNames::webkit_standard, script);
 108         return FontCache::getGenericFamilyNameForScript(genericFamilyName, script);
 111         return settings.standard(script);
 113         return settings.serif(script);
 115         return settings.sansSerif(script);
 117         return settings.cursive(script);
 119         return settings.fantasy(script);
 121         return settings.fixed(script);
 [all...]
 | 
| /external/chromium_org/third_party/WebKit/Source/core/workers/ | 
| WorkerScriptLoader.cpp | 181 String WorkerScriptLoader::script()  function in class:WebCore::WorkerScriptLoader 
 | 
| /external/chromium_org/third_party/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/chromium_org/third_party/icu/source/common/unicode/ | 
| locid.h | 83  * For example, use REVISED for a langauge's revised script orthography, and POSIX for POSIX. 385      * Returns the locale's ISO-15924 abbreviation script code.
 515      * Fills in "dispScript" with the name of this locale's script in a format suitable
 516      * for user display in the default locale.  For example, if the locale's script code
 528      * script code is "LATN" and displayLocale's language code is "en", this function would set
 531      *                      words, if the locale's script code is "LATN", passing
 717     char script[ULOC_SCRIPT_CAPACITY];  member in class:Locale
 758     return script;
 
 | 
| /external/chromium_org/v8/src/ | 
| messages.h | 46   MessageLocation(Handle<Script> script, 49       : script_(script),
 54   Handle<Script> script() const { return script_; }  function in class:v8::internal::MessageLocation
 59   Handle<Script> script_;
 
 | 
| /external/chromium_org/v8/test/mjsunit/ | 
| cross-realm-filtering.js | 15 var script = "                                                                 \  variable 35 Realm.eval(realms[1], script);
 43 Realm.eval(realms[0], script);
 59 script = "                                                                     \
 66 Realm.eval(realms[1], script);
 70 Realm.eval(realms[0], script);
 105 script = script_0 + script_0.replace(/_0/g, "_1");
 107 Realm.eval(realms[0], script);
 125 Realm.eval(realms[1], script);
 
 | 
| /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/harfbuzz_ng/test/api/ | 
| test-ot-tag.c | 37 test_simple_tags (const char *s, hb_script_t script) 42   g_test_message ("Testing script %c%c%c%c: tag %s", HB_UNTAG (hb_script_to_iso15924_tag (script)), s);
 45   hb_ot_tags_from_script (script, &t1, &t2);
 50   g_assert_cmphex (hb_ot_tag_to_script (tag), ==, script);  local
 54 test_indic_tags (const char *s1, const char *s2, hb_script_t script)
 59   g_test_message ("Testing script %c%c%c%c: new tag %s, old tag %s", HB_UNTAG (hb_script_to_iso15924_tag (script)), s1, s2);
 63   hb_ot_tags_from_script (script, &t1, &t2);
 68   g_assert_cmphex (hb_ot_tag_to_script (tag1), ==, script);  local
 69  g_assert_cmphex (hb_ot_tag_to_script (tag2), ==, script);  local
 [all...]
 | 
| /external/icu/icu4c/source/common/unicode/ | 
| locid.h | 88  * For example, use REVISED for a langauge's revised script orthography, and POSIX for POSIX. 391      * Returns the locale's ISO-15924 abbreviation script code.
 524      * Fills in "dispScript" with the name of this locale's script in a format suitable
 525      * for user display in the default locale.  For example, if the locale's script code
 537      * script code is "LATN" and displayLocale's language code is "en", this function would set
 540      *                      words, if the locale's script code is "LATN", passing
 729     char script[ULOC_SCRIPT_CAPACITY];  member in class:Locale
 775     return script;
 
 | 
| /external/icu/icu4c/source/samples/layout/ | 
| ScriptCompositeFontInstance.cpp | 39     le_int32 script = LE_GET_SUB_FONT(glyph);  local 40     const LEFontInstance *font = fFontMap->getScriptFont(script, status);
 53     le_int32 script = LE_GET_SUB_FONT(glyph);  local
 54     const LEFontInstance *font = fFontMap->getScriptFont(script, status);
 63 const LEFontInstance *ScriptCompositeFontInstance::getSubFont(const LEUnicode chars[], le_int32 *offset, le_int32 limit, le_int32 script, LEErrorCode &success) const
 69     if (chars == NULL || *offset < 0 || limit < 0 || *offset >= limit || script < 0 || script >= scriptCodeCount) {
 74     const LEFontInstance *result = fFontMap->getScriptFont(script, success);
 86 // look in all the fonts in some order, script code order being the most obvious...
 91     le_int32 script = uscript_getScript(ch, &error)  local
 [all...]
 | 
| /frameworks/compile/mclinker/lib/Script/ | 
| Assignment.cpp | 9 #include <mcld/Script/Assignment.h> 10 #include <mcld/Script/RpnExpr.h>
 11 #include <mcld/Script/Operand.h>
 12 #include <mcld/Script/Operator.h>
 13 #include <mcld/Script/RpnEvaluator.h>
 81   LinkerScript& script = pModule.getScript();  local
 85     script.assignments().push_back(std::make_pair((LDSymbol*)NULL, *this));
 90     SectionMap::reference out = script.sectionMap().back();
 94         SectionMap::iterator prev = script.sectionMap().begin() +
 95                                     script.sectionMap().size() - 2
 [all...]
 | 
| /frameworks/compile/mclinker/tools/mcld/ | 
| main.cpp | 52   mcld::ScriptOptions         script;  local 81   if (!script.parse(pScript))
 118   mcld::LinkerScript script;  local
 120   mcld::Module module(script);
 124   if (!ConfigLinker(argc, argv, "MCLinker\n", module, script, config, builder,
 132   if (!linker.emulate(script, config)) {
 
 | 
| /cts/tests/tests/hardware/src/android/hardware/camera2/cts/rs/ | 
| ScriptGraph.java | 27 import android.hardware.camera2.cts.rs.Script.ParameterMap; 40  * {@link android.renderscript.Script scripts} and managing their {@link Allocation allocations}.
 42  * <p>Create a new script graph by using {@link #create}, configure the input with
 47  * <p>Once a script graph has been built, all underlying scripts and allocations are instantiated.
 48  * Each script may be executed with {@link #execute}. Scripts are executed in the order that they
 49  * were configured, with each previous script's output used as the input for the next script.
 72     private final List<Script<?>> mScripts;
 135      * Execute each script in the graph, with each next script's input using th
 465  Script<?> script = instantiateScript(scriptClass, inputInfo, parameters);  local
 501  Script<?> script = mScripts.get(i);  local
 [all...]
 | 
| /bootable/recovery/edify/ | 
| expr.h | 37     // The source of the original script.  Must be NULL-terminated, 40     char* script;  member in struct:__anon1099
 
 | 
| /cts/tests/tests/rscpp/librscpptest/ | 
| rs_jni_allocation.cpp | 115     createTypedHelper(mRS, Element::SCRIPT(mRS)); 373     sp<ScriptC_setelementat> script = new ScriptC_setelementat(mRS);  local
 375     script->set_memset_toValue(1);
 376     script->forEach_memset(singleElement);
 378     script->set_dimX(48);
 379     script->set_array(largeArray);
 381     script->forEach_setLargeArray(singleElement);
 385     script->set_compare_value(10);
 386     script->forEach_compare(largeArray);
 387     script->forEach_getCompareResult(singleElement)
 [all...]
 | 
| /external/chromium_org/chrome/browser/extensions/ | 
| active_tab_unittest.cc | 111     bool script =  local 117         return script && !capture;
 119         return capture && !script;
 121         return script && capture;
 123         return !script && !capture;
 
 | 
| user_script_master_unittest.cc | 36 // Test bringing up a master on a specific directory, putting a script 48     // Register for all user script notifications.
 86   // Updated to the script shared memory when we get notified.
 103     "// This is my awesome script\n"
 106     "// @name foobar script\n"
 119   UserScript script;  local
 121       text, &script));
 122   ASSERT_EQ(3U, script.globs().size());
 123   EXPECT_EQ("*mail.google.com*", script.globs()[0]);
 124   EXPECT_EQ("*mail.yahoo.com*", script.globs()[1])
 131  UserScript script;  local
 144  UserScript script;  local
 161  UserScript script;  local
 175  UserScript script;  local
 188  UserScript script;  local
 202  UserScript script;  local
 220  UserScript script;  local
 [all...]
 | 
| /external/chromium_org/chrome/renderer/translate/ | 
| translate_script_browsertest.cc | 79     std::string script;  local 82     translate_js.CopyToString(&script);
 83     script += kElementJs;
 84     ExecuteScript(script);
 87   void ExecuteScript(const std::string& script) {
 88     WebScriptSource source = WebScriptSource(base::ASCIIToUTF16(script));
 113   double ExecuteScriptAndGetNumberResult(const std::string& script) {
 114     WebScriptSource source = WebScriptSource(base::ASCIIToUTF16(script));
 127   bool ExecuteScriptAndGetBoolResult(const std::string& script) {
 128     WebScriptSource source = WebScriptSource(base::ASCIIToUTF16(script));
 [all...]
 | 
| /external/chromium_org/chrome/test/nacl/ | 
| nacl_browsertest.cc | 262     // We call a python script that speaks to the debug stub, and 265     base::FilePath script;  local
 266     PathService::Get(base::DIR_SOURCE_ROOT, &script);
 267     script = script.AppendASCII(
 269     cmd.AppendArgPath(script);
 288     LOG(INFO) << "Waiting for script to exit (which waits for embed to die).";
 
 | 
| /external/chromium_org/content/test/plugin/ | 
| plugin_get_javascript_url_test.cc | 85   std::string script = "javascript:window.location";  local 87   script_string.UTF8Characters = script.c_str();
 88   script_string.UTF8Length = static_cast<unsigned int>(script.length());
 
 | 
| plugin_npobject_lifetime_test.cc | 58   NPString script;  local 59   script.UTF8Characters = "javascript:DeleteSecondPluginInstance()";
 60   script.UTF8Length = static_cast<uint32_t>(strlen(script.UTF8Characters));
 161   std::string script = "javascript:DeletePluginWithinScript()";  local
 163   script_string.UTF8Characters = script.c_str();
 165       static_cast<unsigned int>(script.length());
 
 | 
| plugin_windowed_test.cc | 89     std::string script = "javascript:GetMagicNumber()";  local 91     script_string.UTF8Characters = script.c_str();
 93         static_cast<unsigned int>(script.length());
 101       SetError("Failed to script during NPP_Destroy");
 
 |