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

  /external/v8/test/mjsunit/
debug-script.js 39 var scripts = Debug.scripts(); variable
40 for (i = 0; i < scripts.length; i++) {
41 if (scripts[i].type == Debug.ScriptType.Native) {
42 if (scripts[i].name) {
45 } else if (scripts[i].type == Debug.ScriptType.Extension) {
47 } else if (scripts[i].type == Debug.ScriptType.Normal) {
50 assertUnreachable('Unexpected type ' + scripts[i].type);
54 // This has to be updated if the number of native scripts change.
  /external/srec/srec/Semproc/include/
SR_SemanticGraphImpl.h 57 * 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/WebKit/chromium/public/
WebCache.h 63 ResourceTypeStat scripts; member in struct:WebKit::WebCache::ResourceTypeStats
  /external/webkit/JavaScriptCore/
jsc.cpp 109 Vector<Script> scripts; member in struct:Options
365 static bool runWithScripts(GlobalObject* globalObject, const Vector<Script>& scripts, bool dump)
381 for (size_t i = 0; i < scripts.size(); i++) {
382 if (scripts[i].isFile) {
383 fileName = scripts[i].argument;
388 script = scripts[i].argument;
479 options.scripts.append(Script(true, argv[i]));
485 options.scripts.append(Script(false, argv[i]));
511 options.scripts.append(Script(true, argv[i]));
514 if (options.scripts.isEmpty()
    [all...]
  /external/webkit/WebCore/loader/
Cache.h 45 // This cache holds subresources used by Web pages: images, scripts, stylesheets, etc.
84 TypeStatistic scripts; member in struct:WebCore::Cache::Statistics
108 // since the decoded cost of resources like scripts and stylesheets is not known.
DocLoader.cpp 182 // types of resources, like Images, Scripts, and CSS, can be loaded from
491 unsigned scripts = 0; local
508 scripts++;
528 if (scripts)
529 printf("SCRIPTS: %d (%d hits, hit rate %d%%)\n", scripts, scripts - scriptMisses, (scripts - scriptMisses) * 100 / scripts);
  /external/chromium/third_party/icu/source/i18n/
uspoof_impl.cpp 227 // Return the set of scripts, each of which can represent something that is
351 // Given a locale (a language), add all the characters from all of the scripts used with that language
355 UScriptCode scripts[30]; local
357 int32_t numScripts = uscript_getCode(locale, scripts, sizeof(scripts)/sizeof(UScriptCode), &status);
368 tmpSet.applyIntPropertyValue(UCHAR_SCRIPT, scripts[i], status);
uspoof.cpp 211 // A count of the number of non-Common or inherited scripts.
221 // Note: scriptCount == 2 covers all cases of the number of scripts >= 2
290 // Compute the set of scripts that every input character has a confusable in.
293 // If the number of such scripts is two or more, and the input consisted of
295 // (The two scripts will be the original script and the one that is confusable)
296 // If the number of such scripts >= one, and the original input contained characters from
306 ScriptSet scripts; local
307 This->wholeScriptCheck(nfkdText, nfkdLength, &scripts, *status);
308 int32_t confusableScriptCount = scripts.countMembers();
  /external/icu4c/i18n/
uspoof_impl.cpp 227 // Return the set of scripts, each of which can represent something that is
351 // Given a locale (a language), add all the characters from all of the scripts used with that language
355 UScriptCode scripts[30]; local
357 int32_t numScripts = uscript_getCode(locale, scripts, sizeof(scripts)/sizeof(UScriptCode), &status);
368 tmpSet.applyIntPropertyValue(UCHAR_SCRIPT, scripts[i], status);
uspoof.cpp 211 // A count of the number of non-Common or inherited scripts.
221 // Note: scriptCount == 2 covers all cases of the number of scripts >= 2
290 // Compute the set of scripts that every input character has a confusable in.
293 // If the number of such scripts is two or more, and the input consisted of
295 // (The two scripts will be the original script and the one that is confusable)
296 // If the number of such scripts >= one, and the original input contained characters from
306 ScriptSet scripts; local
307 This->wholeScriptCheck(nfkdText, nfkdLength, &scripts, *status);
308 int32_t confusableScriptCount = scripts.countMembers();
  /external/chromium/third_party/icu/source/test/cintltst/
cldrtest.c 851 USet *scripts[10]= {0}; local
948 UScriptCode scripts[USCRIPT_CODE_LIMIT]; local
    [all...]
  /external/icu4c/test/cintltst/
cldrtest.c 851 USet *scripts[10]= {0}; local
948 UScriptCode scripts[USCRIPT_CODE_LIMIT]; local
    [all...]
  /external/v8/src/
debug-debugger.js 58 // The different types of scripts matching enum ScriptType in objects.h.
429 var scripts = Debug.scripts();
432 for (var i in scripts) {
433 var script = scripts[i];
636 // Run through all scripts to see if this script break point matches any
637 // loaded scripts.
638 var scripts = this.scripts();
639 for (var i = 0; i < scripts.length; i++)
    [all...]
  /external/webkit/WebCore/dom/
Document.cpp 4230 PassRefPtr<HTMLCollection> Document::scripts() function in class:WebCore::Document
    [all...]
  /prebuilt/windows/swt/
swt.jar 
  /prebuilt/windows-x86_64/swt/
swt.jar 

Completed in 291 milliseconds