Searched defs:scripts (Results 1 - 20 of 20) sorted by relevance

/external/v8/test/mjsunit/
H A Ddebug-script.js40 var scripts = Debug.scripts(); variable
41 for (i = 0; i < scripts.length; i++) {
42 if (scripts[i].type == Debug.ScriptType.Native) {
43 if (scripts[i].name) {
44 // TODO(1641): Remove check for equally named native scripts once the
46 if (!named_native_names[scripts[i].name]) {
47 named_native_names[scripts[i].name] = true;
51 } else if (scripts[i].type == Debug.ScriptType.Extension) {
53 } else if (scripts[
[all...]
/external/srec/srec/Semproc/include/
H A DSR_SemanticGraphImpl.h57 * The word map containing the actual scripts. The index of teh script in the wordmap
60 wordmap* scripts; member in struct:SR_SemanticGraphImpl_t
/external/webkit/Source/WebCore/dom/
H A DScriptRunner.cpp101 Vector<PendingScript> scripts; local
102 scripts.swap(m_scriptsToExecuteSoon);
106 scripts.append(m_scriptsToExecuteInOrder[numInOrderScriptsToExecute]);
110 size_t size = scripts.size();
112 CachedScript* cachedScript = scripts[i].cachedScript();
113 RefPtr<Element> element = scripts[i].releaseElementAndClear();
H A DDocument.cpp4219 PassRefPtr<HTMLCollection> Document::scripts() function in class:WebCore::Document
/external/webkit/Source/WebKit/chromium/public/
H A DWebCache.h63 ResourceTypeStat scripts; member in struct:WebKit::WebCache::ResourceTypeStats
/external/chromium/chrome/browser/extensions/
H A Duser_script_listener.cc42 // user scripts to see if we need to wait.
54 // One of the user scripts wants to inject into this request, but the
114 const UserScriptList& scripts = extension->content_scripts(); local
115 for (UserScriptList::const_iterator iter = scripts.begin();
116 iter != scripts.end(); ++iter) {
H A Duser_script_master.cc149 // The master went away, so these new scripts aren't useful anymore.
183 // Clear the list. We will populate it with the scripts found in script_dir.
186 // Find all the scripts in |script_dir|.
200 // We default standalone user scripts to document-end for better
234 // Pickle user scripts and return pointer to the shared memory.
235 static base::SharedMemory* Serialize(const UserScriptList& scripts) { argument
237 pickle.WriteSize(scripts.size());
238 for (size_t i = 0; i < scripts.size(); i++) {
239 const UserScript& script = scripts[i];
244 // Write scripts a
271 UserScriptList scripts; local
348 const UserScriptList& scripts = extension->content_scripts(); local
[all...]
H A Dextension_service_unittest.cc946 const UserScriptList& scripts = extension->content_scripts(); local
947 ASSERT_EQ(2u, scripts.size());
948 EXPECT_EQ(3u, scripts[0].url_patterns().size());
950 scripts[0].url_patterns()[0].GetAsString());
952 scripts[0].url_patterns()[1].GetAsString());
954 scripts[0].url_patterns()[2].GetAsString());
955 EXPECT_EQ(2u, scripts[0].js_scripts().size());
957 scripts[0].js_scripts()[0].extension_root(),
958 scripts[0].js_scripts()[0].relative_path());
963 scripts[
[all...]
/external/markdown/
H A Dsetup.py39 scripts = ['bin/markdown'], variable in class:md_install_scripts
/external/icu4c/test/cintltst/
H A Dcucdapi.c303 * Unicode 5 and later encode some of these scripts and give them long names.
436 UScriptCode scripts[20]; local
442 length=uscript_getScriptExtensions(0x0640, scripts, LENGTHOF(scripts), &errorCode);
448 length=uscript_getScriptExtensions(0x0640, NULL, LENGTHOF(scripts), &errorCode);
454 length=uscript_getScriptExtensions(0x0640, scripts, -1, &errorCode);
460 length=uscript_getScriptExtensions(0x0640, scripts, 0, &errorCode);
466 length=uscript_getScriptExtensions(0x0640, scripts, 1, &errorCode);
474 length=uscript_getScriptExtensions(0x063f, scripts, 0, &errorCode);
479 length=uscript_getScriptExtensions(0x0640, scripts, LENGTHO
[all...]
H A Dcldrtest.c780 USet *scripts[10]= {0}; local
793 scripts[i] = uset_openPattern(uPattern, patternLen, &status);
802 uset_add(scripts[0], 0x2bc);
807 * UChars in exemplarSet belong to the scripts returned
824 if(uset_containsRange(scripts[j], start, end) == TRUE){
832 int32_t len = uset_toPattern(scripts[j], toPattern, 500, TRUE, &status);
834 log_err("uset_indexOf(\\u%04X)=%i uset_indexOf(\\u%04X)=%i\n", start, uset_indexOf(scripts[0], start), end, uset_indexOf(scripts[0], end));
846 /* iterate over the scripts and figure out if the string contained is actually
850 if(uset_containsString(scripts[
878 UScriptCode scripts[USCRIPT_CODE_LIMIT]; local
[all...]
/external/webkit/Source/WebCore/loader/cache/
H A DMemoryCache.h46 // This cache holds subresources used by Web pages: images, scripts, stylesheets, etc.
102 TypeStatistic scripts; member in struct:WebCore::MemoryCache::Statistics
120 // since the decoded cost of resources like scripts and stylesheets is not known.
H A DCachedResourceLoader.cpp757 unsigned scripts = 0; local
774 scripts++;
794 if (scripts)
795 printf("SCRIPTS: %d (%d hits, hit rate %d%%)\n", scripts, scripts - scriptMisses, (scripts - scriptMisses) * 100 / scripts);
/external/webkit/Source/JavaScriptCore/
H A Djsc.cpp109 Vector<Script> scripts; member in struct:Options
374 static bool runWithScripts(GlobalObject* globalObject, const Vector<Script>& scripts, bool dump) argument
390 for (size_t i = 0; i < scripts.size(); i++) {
391 if (scripts[i].isFile) {
392 fileName = scripts[i].argument;
397 script = scripts[i].argument;
491 options.scripts.append(Script(true, argv[i]));
497 options.scripts.append(Script(false, argv[i]));
523 options.scripts.append(Script(true, argv[i]));
526 if (options.scripts
[all...]
/external/icu4c/common/
H A Duchar.c15 * 8/19/1999 srl Upgraded scripts to Unicode3.0
578 UScriptCode *scripts, int32_t capacity,
587 if(capacity<0 || (capacity>0 && scripts==NULL)) {
604 scripts[length]=sx&0x7fff;
577 uscript_getScriptExtensions(UChar32 c, UScriptCode *scripts, int32_t capacity, UErrorCode *pErrorCode) argument
/external/icu4c/i18n/
H A Duspoof.cpp208 // A count of the number of non-Common or inherited scripts.
218 // Note: scriptCount == 2 covers all cases of the number of scripts >= 2
292 // Compute the set of scripts that every input character has a confusable in.
295 // If the number of such scripts is two or more, and the input consisted of
297 // (The two scripts will be the original script and the one that is confusable)
298 // If the number of such scripts >= one, and the original input contained characters from
308 ScriptSet scripts; local
309 This->wholeScriptCheck(nfdText, nfdLength, &scripts, *status);
310 int32_t confusableScriptCount = scripts.countMembers();
H A Duspoof_impl.cpp226 // Return the set of scripts, each of which can represent something that is
350 // Given a locale (a language), add all the characters from all of the scripts used with that language
354 UScriptCode scripts[30]; local
356 int32_t numScripts = uscript_getCode(locale, scripts, sizeof(scripts)/sizeof(UScriptCode), &status);
367 tmpSet.applyIntPropertyValue(UCHAR_SCRIPT, scripts[i], status);
394 // Names are allowed to mix these scripts.
396 // used with multiple scripts.
/external/srec/srec/Semproc/src/
H A DSemanticProcessorImpl.c59 * A holder for accumulated scripts
69 * A list of accumulated scripts
99 * Recursively accumulate the scripts
101 static ESR_ReturnCode accumulate_scripts(SR_SemanticGraphImpl* semgraph, script_list* scripts, sem_partial_path* path_root);
103 static ESR_ReturnCode interpretScripts(SR_SemanticProcessorImpl* semproc, LCHAR* scripts, SR_SemanticResult** result);
544 * Go through the partial paths which were successful and accumulate the scripts
550 /*pfprintf(PSTDOUT,"Accumulated scripts\n");*/
553 * Prepare the scripts for processing, in other words, make them "nice".
781 LCHAR acc_scripts[MAX_SCRIPT_LEN]; /* the accumulated scripts */
863 * Go through the partial paths which were successful and accumulate the scripts
1063 interpretScripts(SR_SemanticProcessorImpl* semproc, LCHAR* scripts, SR_SemanticResult** result) argument
1235 accumulate_scripts(SR_SemanticGraphImpl* semgraph, script_list* scripts, sem_partial_path* path) argument
[all...]
/external/v8/src/
H A Ddebug-debugger.js58 // The different types of scripts matching enum ScriptType in objects.h.
527 var scripts = Debug.scripts();
530 for (var i in scripts) {
531 var script = scripts[i];
685 var scripts = this.scripts();
686 for (var i = 0; i < scripts.length; i++) {
687 if (script_id == scripts[i].id) {
688 break_point.actual_position = %SetScriptBreakPoint(scripts[
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 413 milliseconds