HomeSort by relevance Sort by last modified time
    Searched defs:Plugins (Results 1 - 4 of 4) 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/
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__()
227 """Returns all enabled plugins of type cls, in undefined order.""
    [all...]
  /external/clang/include/clang/Frontend/
FrontendOptions.h 225 /// Args to pass to the additional plugins
228 /// The list of plugins to load.
229 std::vector<std::string> Plugins;
  /external/clang/lib/StaticAnalyzer/Frontend/
AnalysisConsumer.cpp 159 ArrayRef<std::string> Plugins;
187 ArrayRef<std::string> plugins)
189 Ctx(nullptr), PP(pp), OutDir(outdir), Opts(opts), Plugins(plugins) {
287 checkerMgr.reset(createCheckerManager(*Opts, PP.getLangOpts(), Plugins,
693 ArrayRef<std::string> plugins) {
697 return new AnalysisConsumer(pp, outDir, opts, plugins);

Completed in 110 milliseconds