HomeSort by relevance Sort by last modified time
    Searched defs:scripts (Results 1 - 25 of 42) sorted by null

1 2

  /external/chromium_org/extensions/renderer/
user_script_set.h 40 const std::vector<UserScript*>& scripts) = 0;
50 // Appends the ids of the extensions that have user scripts to |ids|.
70 // Updates scripts given the shared memory region containing user scripts.
71 // Returns true if the scripts were successfully updated.
75 const std::vector<UserScript*>& scripts() const { return scripts_.get(); } function in class:extensions::UserScriptSet
user_script_set_manager.cc 102 NOTREACHED() << "Bad scripts handle";
115 UserScriptSet* scripts = NULL; local
123 scripts = new UserScriptSet(extensions_);
124 programmatic_scripts_[extension_id] = make_linked_ptr(scripts);
126 scripts = programmatic_scripts_[extension_id].get();
129 scripts = &static_scripts_;
131 DCHECK(scripts);
150 if (scripts->UpdateUserScripts(shared_memory, *effective_extensions)) {
154 OnUserScriptsUpdated(*effective_extensions, scripts->scripts()));
    [all...]
  /external/chromium_org/third_party/tlslite/
setup.py 15 scripts=["scripts/tls.py", "scripts/tlsdb.py"], variable
  /external/chromium_org/v8/test/mjsunit/
debug-script.js 41 var scripts = Debug.scripts(); variable
42 for (i = 0; i < scripts.length; i++) {
43 if (scripts[i].type == Debug.ScriptType.Native) {
44 if (scripts[i].name) {
45 // TODO(1641): Remove check for equally named native scripts once the
47 if (!named_native_names[scripts[i].name]) {
48 named_native_names[scripts[i].name] = true;
52 } else if (scripts[i].type == Debug.ScriptType.Extension) {
54 } else if (scripts[i].type == Debug.ScriptType.Normal)
    [all...]
  /external/icu/icu4c/source/i18n/
collationbasedatabuilder.h 89 UnicodeString scripts; member in class:CollationBaseDataBuilder
collationdata.h 46 scripts(NULL), scriptsLength(0),
134 * Writes the permutation table for the given reordering of scripts and groups,
189 * Data for scripts and reordering groups.
206 const uint16_t *scripts; member in struct:CollationData
collationfastlatin.cpp 53 const uint16_t *scripts = data->scripts; local
58 uint32_t lastByte = reorderTable[scripts[i] & 0xff];
63 if(scripts[i + 2] == USCRIPT_LATIN) { break; }
64 i = i + 2 + scripts[i + 1];
    [all...]
  /external/chromium_org/chrome/test/base/
extension_js_browser_test.cc 38 std::vector<base::string16> scripts; local
40 BuildJavascriptLibraries(&scripts);
43 scripts.push_back(BuildRunTestJSCall(is_async, "RUN_TEST_F", args));
45 base::string16 script_16 = JoinString(scripts, '\n');
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ScriptRunner.cpp 131 Vector<PendingScript> scripts; local
132 scripts.swap(m_scriptsToExecuteSoon);
136 scripts.append(m_scriptsToExecuteInOrder[numInOrderScriptsToExecute]);
140 size_t size = scripts.size();
142 ScriptResource* resource = scripts[i].resource();
143 RefPtrWillBeRawPtr<Element> element = scripts[i].releaseElementAndClear();
  /external/chromium_org/third_party/WebKit/public/web/
WebCache.h 63 ResourceTypeStat scripts; member in struct:blink::WebCache::ResourceTypeStats
  /external/chromium_org/v8/tools/profviz/
worker.js 29 "load scripts" : load_scripts,
68 function load_scripts(scripts) {
69 time("Loading scripts",
70 function() { for (var i in scripts) importScripts(scripts[i]); });
  /external/chromium_org/third_party/skia/src/sfnt/
SkIBMFamilyClass.h 28 ((Scripts, 10))
137 struct Scripts {
152 } scripts; member in union:SkIBMFamilyClass::SubClass
  /external/markdown/
setup.py 16 script_dir = os.path.join(sys.prefix, 'Scripts')
39 scripts = ['bin/markdown'], variable in class:md_install_scripts
  /external/chromium_org/chrome/browser/extensions/
user_script_listener.cc 60 // True if the user scripts contained in |url_patterns| are ready for
64 // A list of URL patterns that have will have user scripts applied to them.
106 // user scripts to see if we need to wait.
123 // One of the user scripts wants to inject into this request, but the
197 const UserScriptList& scripts = local
199 for (UserScriptList::const_iterator iter = scripts.begin();
200 iter != scripts.end(); ++iter) {
active_script_controller_browsertest.cc 30 "\"background\": {\"scripts\": [\"script.js\"]}";
117 std::string scripts; local
120 scripts = base::StringPrintf(
130 scripts = kBackgroundScript;
143 scripts.c_str());
197 // scripts or through chrome.tabs.executeScript()) that sends a message with
314 // - An extension that injects scripts into all hosts,
315 // - An extension that injects scripts into explicit hosts,
363 // Load up two extensions, each with content scripts.
  /external/chromium_org/extensions/common/
file_util_unittest.cc 251 base::ListValue* scripts = new base::ListValue(); local
252 scripts->Append(new base::StringValue("foo.js"));
253 value->Set("background.scripts", scripts);
269 scripts->Clear();
270 scripts->Append(new base::StringValue("http://google.com/foo.js"));
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/bindings/
main.py 43 import bindings.scripts.compute_interfaces_info_individual namespace
44 from bindings.scripts.compute_interfaces_info_individual import compute_info_individual, info_individual
45 import bindings.scripts.compute_interfaces_info_overall namespace
46 from bindings.scripts.compute_interfaces_info_overall import compute_interfaces_info_overall, interfaces_info
47 from bindings.scripts.idl_compiler import IdlCompilerDictionaryImpl, IdlCompilerV8
  /external/chromium_org/third_party/icu/source/test/cintltst/
cucdapi.c 303 * Unicode 5 and later encode some of these scripts and give them long names.
448 UScriptCode scripts[20]; local
454 length=uscript_getScriptExtensions(0x0640, scripts, LENGTHOF(scripts), &errorCode);
460 length=uscript_getScriptExtensions(0x0640, NULL, LENGTHOF(scripts), &errorCode);
466 length=uscript_getScriptExtensions(0x0640, scripts, -1, &errorCode);
472 length=uscript_getScriptExtensions(0x0640, scripts, 0, &errorCode);
478 length=uscript_getScriptExtensions(0x0640, scripts, 1, &errorCode);
485 length=uscript_getScriptExtensions(0x063f, scripts, 0, &errorCode);
493 length=uscript_getScriptExtensions(-1, scripts, LENGTHOF(scripts), &errorCode)
    [all...]
  /external/freetype/src/autofit/
hbshim.c 92 static const hb_script_t scripts[] = variable
134 script = scripts[style_class->script];
137 /* tag or tags -- some Indic scripts like Devanagari have an old */
333 * Complex scripts like Devanagari have mandatory GPOS features to
461 hb_buffer_set_script( buf, scripts[style_class->script] );
  /external/icu/icu4c/source/test/cintltst/
cucdapi.c 303 * Unicode 5 and later encode some of these scripts and give them long names.
448 UScriptCode scripts[20]; local
454 length=uscript_getScriptExtensions(0x0640, scripts, LENGTHOF(scripts), &errorCode);
460 length=uscript_getScriptExtensions(0x0640, NULL, LENGTHOF(scripts), &errorCode);
466 length=uscript_getScriptExtensions(0x0640, scripts, -1, &errorCode);
472 length=uscript_getScriptExtensions(0x0640, scripts, 0, &errorCode);
478 length=uscript_getScriptExtensions(0x0640, scripts, 1, &errorCode);
485 length=uscript_getScriptExtensions(0x063f, scripts, 0, &errorCode);
493 length=uscript_getScriptExtensions(-1, scripts, LENGTHOF(scripts), &errorCode)
    [all...]
  /external/chromium_org/chrome/browser/sync/test/integration/
sync_extension_helper.cc 314 base::ListValue* scripts = new base::ListValue(); local
315 scripts->AppendString("main.js");
317 scripts);
  /external/chromium_org/chrome/common/extensions/api/
extension_api_unittest.cc 302 .Set("scripts", ListBuilder().Append("background.js"))))
522 base::ListValue* scripts = new base::ListValue(); local
523 scripts->Append(new base::StringValue("test.js"));
524 background->Set("scripts", scripts);
671 // "app" API is available to all URLs that content scripts can be injected.
    [all...]
  /external/chromium_org/chrome/renderer/spellchecker/
spellcheck_worditerator.cc 135 // given language consists of two or more scripts, we just use the first
141 int scripts = uscript_getCode(language.c_str(), script_code, local
143 if (U_SUCCESS(error) && scripts >= 1)
  /external/chromium_org/third_party/cython/src/
setup.py 79 scripts = [] variable
82 scripts = ["bin/cython"]
84 scripts = ["cython.py"]
92 scripts.append('bin/cygdb')
94 scripts.append('cygdb.py')
331 scripts = scripts, variable
  /external/chromium_org/third_party/WebKit/Source/core/fetch/
MemoryCache.h 47 // This cache holds subresources used by Web pages: images, scripts, stylesheets, etc.
164 TypeStatistic scripts; member in struct:blink::FINAL::Statistics
180 // since the decoded cost of resources like scripts and stylesheets is not known.

Completed in 907 milliseconds

1 2