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

  /external/v8/test/mjsunit/
debug-script.js 40 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[i].type == Debug.ScriptType.Normal)
    [all...]
  /external/chromium/chrome/browser/extensions/
user_script_listener.cc 42 // 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) {
user_script_master.cc 149 // 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|.
188 // Create the "<Profile>/User Scripts" directory if it doesn't exist
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) {
237 pickle.WriteSize(scripts.size());
238 for (size_t i = 0; i < scripts.size(); i++) {
239 const UserScript& script = scripts[i]
271 UserScriptList scripts; local
348 const UserScriptList& scripts = extension->content_scripts(); local
    [all...]
extension_service_unittest.cc 946 const UserScriptList& scripts = extension->content_scripts(); local
    [all...]
  /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/Source/WebCore/dom/
ScriptRunner.cpp 101 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();
Document.cpp 4222 PassRefPtr<HTMLCollection> Document::scripts() function in class:WebCore::Document
    [all...]
  /external/webkit/Source/WebKit/chromium/public/
WebCache.h 63 ResourceTypeStat scripts; member in struct:WebKit::WebCache::ResourceTypeStats
  /external/markdown/
setup.py 16 script_dir = os.path.join(sys.prefix, 'Scripts')
39 scripts = ['bin/markdown'], variable in class:md_install_scripts
  /external/icu4c/test/cintltst/
cucdapi.c 303 * 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, LENGTHOF(scripts), &errorCode)
    [all...]
cldrtest.c 780 USet *scripts[10]= {0}; local
878 UScriptCode scripts[USCRIPT_CODE_LIMIT]; local
    [all...]
  /external/webkit/Source/JavaScriptCore/
jsc.cpp 109 Vector<Script> scripts; member in struct:Options
374 static bool runWithScripts(GlobalObject* globalObject, const Vector<Script>& scripts, bool dump)
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.isEmpty()
    [all...]
  /external/webkit/Source/WebCore/loader/cache/
MemoryCache.h 46 // 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.
CachedResourceLoader.cpp 216 // types of resources, like Images, Scripts, and CSS, can be loaded from
757 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/icu4c/i18n/
uspoof_impl.cpp 226 // 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.
uspoof.cpp 208 // 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();
  /external/v8/src/
debug-debugger.js 58 // 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[i], position
    [all...]
  /prebuilts/tools/windows/swt/
swt.jar 
  /prebuilts/tools/windows-x86_64/swt/
swt.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jar 

Completed in 438 milliseconds