HomeSort by relevance Sort by last modified time
    Searched refs:Plugins (Results 1 - 22 of 22) sorted by null

  /external/llvm/lib/Support/
PluginLoader.cpp 23 static ManagedStatic<std::vector<std::string> > Plugins;
33 Plugins->push_back(Filename);
39 return Plugins.isConstructed() ? Plugins->size() : 0;
44 assert(Plugins.isConstructed() && num < Plugins->size() &&
46 return (*Plugins)[num];
  /external/chromium_org/tools/cr/cr/
autocomplete.py 27 print ' '.join(command.name for command in cr.Command.Plugins())
plugin.py 7 This holds the Plugin class and supporting code, that controls how plugins are
10 discover plugins as they are loaded.
33 # Holds detected values for active plugins.
35 # Holds overrides, used in custom setup plugins.
59 """Manages the list of active plugins for command line options.
61 Looks like a simple iterable, but it can change as the underlying plugins
66 # If this is True, all DynamicChoices only return active plugins.
67 # If false, all plugins are included.
77 return [p.name for p in self.cls.Plugins()].__iter__()
221 """Returns all enabled plugins of type cls, in undefined order.""
    [all...]
  /external/clang/lib/StaticAnalyzer/Frontend/
FrontendActions.cpp 21 CI.getFrontendOpts().Plugins);
AnalysisConsumer.cpp 144 ArrayRef<std::string> Plugins;
172 ArrayRef<std::string> plugins)
174 Ctx(0), PP(pp), OutDir(outdir), Opts(opts), Plugins(plugins) {
268 checkerMgr.reset(createCheckerManager(*Opts, PP.getLangOpts(), Plugins,
669 ArrayRef<std::string> plugins) {
673 return new AnalysisConsumer(pp, outDir, opts, plugins);
  /external/chromium_org/chrome/test/pyautolib/
plugins_info.py 5 """Python representation for Chromium Plugins info.
7 This is the info available at about:plugins.
13 info = self.GetPluginsInfo() # fetch plugins snapshot
14 print info.Plugins()
16 See more examples in chrome/test/functional/plugins.py.
25 """Represent info for Chromium plugins.
44 def Plugins(self):
45 """Get plugins.
48 a list of plugins info
73 return self.pluginsdict.get('plugins', [])
    [all...]
  /external/chromium_org/tools/cr/cr/commands/
prepare.py 34 for preparation in PrepareOut.Plugins():
39 """Base class for output directory preparation plugins.
45 """All PrepareOut plugins must override this method to do their work."""
init.py 69 print 'Must be one of', ','.join(p.name for p in cr.BuildType.Plugins())
148 for hook in InitHook.Plugins():
  /external/chromium_org/tools/cr/
main.py 24 plugins, creates the context and then activates and runs the specified
40 for command in cr.Command.Plugins():
45 # After plugins are loaded so pylint: disable=g-import-not-at-top
  /external/clang/lib/FrontendTool/
ExecuteCompilerInvocation.cpp 197 // Load any requested plugins.
199 e = Clang->getFrontendOpts().Plugins.size(); i != e; ++i) {
200 const std::string &Path = Clang->getFrontendOpts().Plugins[i];
210 // This should happen AFTER plugins have been loaded!
223 // This should happen AFTER plugins have been loaded!
225 ento::printCheckerHelp(llvm::outs(), Clang->getFrontendOpts().Plugins);
  /external/clang/tools/scan-build/
ccc-analyzer 430 # Get the plugins to load.
431 my $Plugins = $ENV{'CCC_ANALYZER_PLUGINS'};
667 if (defined $Plugins) {
668 push @AnalyzeArgs, split '\s+', $Plugins;
  /external/chromium_org/tools/cr/cr/base/
host.py 39 for host in cls.Plugins():
  /external/clang/include/clang/Frontend/
FrontendOptions.h 198 /// Args to pass to the additional plugins
201 /// The list of plugins to load.
202 std::vector<std::string> Plugins;
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLPlugInElement.cpp 43 #include "core/plugins/PluginView.h"
51 #include "platform/plugins/PluginData.h"
445 WTF_LOG(Plugins, "%p Plug-in URL: %s", this, m_url.utf8().data());
446 WTF_LOG(Plugins, " Loaded URL: %s", url.string().utf8().data());
  /external/chromium/chrome/browser/
content_setting_bubble_model_unittest.cc 82 TEST_F(ContentSettingBubbleModelTest, Plugins) {
  /external/chromium_org/chrome/test/functional/
netflix.py 37 return [x for x in self._pyauto.GetPluginsInfo().Plugins() \
youtube.py 33 return [x for x in self._pyauto.GetPluginsInfo().Plugins() \
stress.py 204 """Stress test using multiple plugins in multiple tabs."""
212 """Stress test using multiple plugins in multiple windows."""
249 plugins = self.GetPluginsInfo().Plugins()
250 for item in range(len(plugins)):
251 if re.search(plugin_name, plugins[item]['name']):
252 if plugins[item]['enabled']:
253 self.DisablePlugin(plugins[item]['path'])
255 self.EnablePlugin(plugins[item]['path'])
  /external/chromium_org/chrome/browser/metrics/
metrics_log_unittest.cc 262 std::vector<content::WebPluginInfo> plugins; local
269 log.RecordEnvironment(plugins, google_update_metrics, synthetic_trials);
379 TEST_F(MetricsLogTest, Plugins) {
382 std::vector<content::WebPluginInfo> plugins; local
383 plugins.push_back(CreateFakePluginInfo("p1", FILE_PATH_LITERAL("p1.plugin"),
385 plugins.push_back(CreateFakePluginInfo("p2", FILE_PATH_LITERAL("p2.plugin"),
387 log.RecordEnvironment(plugins, GoogleUpdateMetrics(),
576 std::vector<content::WebPluginInfo> plugins; local
579 log.RecordEnvironment(plugins, google_update_metrics, synthetic_trials);
  /external/chromium_org/chrome/browser/ui/content_settings/
content_setting_bubble_model_unittest.cc 447 TEST_F(ContentSettingBubbleModelTest, Plugins) {
  /external/clang/lib/Frontend/
CompilerInvocation.cpp 704 Opts.Plugins.push_back(A->getValue(0));
735 Opts.Plugins = Args.getAllArgValues(OPT_load);
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/parse-only/
mootools-1.2.2-core-nc.js 305 Plugins: {},
358 Browser.Plugins.Flash = (function(){
360 return navigator.plugins['Shockwave Flash'].description;
    [all...]

Completed in 1190 milliseconds